2025-08-26T19:31:39.3340690Z Current runner version: '2.328.0' 2025-08-26T19:31:39.3343810Z Runner name: 'i-0f9cbdd490cee7b28' 2025-08-26T19:31:39.3344230Z Runner group name: 'default' 2025-08-26T19:31:39.3344760Z Machine name: 'ip-10-0-0-115' 2025-08-26T19:31:39.3346230Z ##[group]GITHUB_TOKEN Permissions 2025-08-26T19:31:39.3347370Z Contents: read 2025-08-26T19:31:39.3347680Z Metadata: read 2025-08-26T19:31:39.3348000Z ##[endgroup] 2025-08-26T19:31:39.3349150Z Secret source: Actions 2025-08-26T19:31:39.3349540Z Prepare workflow directory 2025-08-26T19:31:39.4574170Z Prepare all required actions 2025-08-26T19:31:39.4599530Z Getting action download info 2025-08-26T19:31:39.7222770Z Download action repository 'pytorch/test-infra@main' (SHA:0192d56cb596bb73b125bd368553908cc5c513f0) 2025-08-26T19:31:40.3587150Z Download action repository 'pytorch/pytorch@main' (SHA:262640fd220236042fbf4443cc163c8838c84c3d) 2025-08-26T19:31:50.1850390Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-26T19:31:50.4218300Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-08-26T19:31:50.6852280Z Getting action download info 2025-08-26T19:31:50.7815720Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-26T19:31:51.0327760Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/heads/main (262640fd220236042fbf4443cc163c8838c84c3d) 2025-08-26T19:31:51.0330140Z ##[group] Inputs 2025-08-26T19:31:51.0330300Z build-environment: macos-py3-arm64 2025-08-26T19:31:51.0330490Z runner-type: macos-m1-stable 2025-08-26T19:31:51.0330820Z build-generates-artifacts: true 2025-08-26T19:31:51.0330980Z xcode-version: 2025-08-26T19:31:51.0331120Z sync-tag: macos-py3-arm64-build 2025-08-26T19:31:51.0331290Z python-version: 3.12.7 2025-08-26T19:31:51.0332100Z 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-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-08-26T19:31:51.0332910Z sccache-use-gha: false 2025-08-26T19:31:51.0333060Z ##[endgroup] 2025-08-26T19:31:51.0333200Z Complete job name: macos-py3-arm64 / build 2025-08-26T19:31:51.0642030Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-08-26T19:31:51.0642410Z with: 2025-08-26T19:31:51.0642550Z minimum-available-space-in-gb: 6 2025-08-26T19:31:51.0642790Z env: 2025-08-26T19:31:51.0642930Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:31:51.0643090Z SCCACHE_USE_GHA: false 2025-08-26T19:31:51.0643230Z ##[endgroup] 2025-08-26T19:31:51.0699860Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-08-26T19:31:51.0700250Z echo "Print the available disk space for manual inspection" 2025-08-26T19:31:51.0700530Z df -h 2025-08-26T19:31:51.0700640Z  2025-08-26T19:31:51.0700770Z function check_disk_space() { 2025-08-26T19:31:51.0700940Z  set +e 2025-08-26T19:31:51.0701070Z  2025-08-26T19:31:51.0701220Z  # Set the minimum requirement space to 6GB 2025-08-26T19:31:51.0701550Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-08-26T19:31:51.0701800Z  2025-08-26T19:31:51.0701960Z  # Use KB to avoid floating point warning like 3.1GB 2025-08-26T19:31:51.0702210Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-08-26T19:31:51.0702420Z  do 2025-08-26T19:31:51.0702560Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-08-26T19:31:51.0702850Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-08-26T19:31:51.0703050Z  2025-08-26T19:31:51.0703680Z  if [ "${MOUNT}" = "/" ]; then 2025-08-26T19:31:51.0713860Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-08-26T19:31:51.0714370Z  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-08-26T19:31:51.0714800Z  else 2025-08-26T19:31:51.0715060Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-08-26T19:31:51.0715330Z  fi 2025-08-26T19:31:51.0715450Z  fi 2025-08-26T19:31:51.0715560Z  done 2025-08-26T19:31:51.0715680Z  2025-08-26T19:31:51.0715790Z  set -e 2025-08-26T19:31:51.0715900Z } 2025-08-26T19:31:51.0716000Z  2025-08-26T19:31:51.0716120Z RESULT=$(check_disk_space) 2025-08-26T19:31:51.0716290Z echo "${RESULT}" 2025-08-26T19:31:51.0716430Z  2025-08-26T19:31:51.0716600Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-08-26T19:31:51.0717070Z  # 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-08-26T19:31:51.0717530Z  # https://github.com/pytorch/pytorch/issues/85440 2025-08-26T19:31:51.0717850Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-08-26T19:31:51.0718310Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-08-26T19:31:51.0718730Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-08-26T19:31:51.0718950Z  2025-08-26T19:31:51.0719080Z  # Clean up crash reports on the runner 2025-08-26T19:31:51.0719360Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-08-26T19:31:51.0719600Z  2025-08-26T19:31:51.0719770Z  # Also try to clean up torch.hub caching directory 2025-08-26T19:31:51.0720000Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-08-26T19:31:51.0720180Z  2025-08-26T19:31:51.0720290Z  # Purge conda 2025-08-26T19:31:51.0720450Z  conda clean -p -t -y || true 2025-08-26T19:31:51.0720630Z  # and pip cache 2025-08-26T19:31:51.0721120Z  pip cache purge || true 2025-08-26T19:31:51.0721280Z  2025-08-26T19:31:51.0721470Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-08-26T19:31:51.0721710Z  # Re-run the check 2025-08-26T19:31:51.0721870Z  RESULT=$(check_disk_space) 2025-08-26T19:31:51.0722040Z  echo "${RESULT}" 2025-08-26T19:31:51.0722180Z fi 2025-08-26T19:31:51.0722280Z  2025-08-26T19:31:51.0722410Z if [[ "${RESULT}" == *Failure* ]]; then 2025-08-26T19:31:51.0722590Z  df -h 2025-08-26T19:31:51.0722710Z  2025-08-26T19:31:51.0723110Z  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-08-26T19:31:51.0723550Z  exit 1 2025-08-26T19:31:51.0723670Z fi 2025-08-26T19:31:51.0772890Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:31:51.0773100Z env: 2025-08-26T19:31:51.0773230Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:31:51.0773410Z SCCACHE_USE_GHA: false 2025-08-26T19:31:51.0773560Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-08-26T19:31:51.0773710Z ##[endgroup] 2025-08-26T19:31:51.0972660Z Print the available disk space for manual inspection 2025-08-26T19:31:51.0977200Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-08-26T19:31:51.0977660Z /dev/disk5s2s1 256Gi 9.5Gi 189Gi 5% 404k 2.0G 0% / 2025-08-26T19:31:51.0978000Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-08-26T19:31:51.0978790Z /dev/disk5s5 256Gi 1.0Gi 189Gi 1% 1 2.0G 0% /System/Volumes/VM 2025-08-26T19:31:51.0979210Z /dev/disk5s3 256Gi 5.7Gi 189Gi 3% 1.0k 2.0G 0% /System/Volumes/Preboot 2025-08-26T19:31:51.0979630Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-08-26T19:31:51.0980050Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-08-26T19:31:51.0980470Z /dev/disk1s3 500Mi 904Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-08-26T19:31:51.0980850Z /dev/disk5s1 256Gi 50Gi 189Gi 21% 1.3M 2.0G 0% /System/Volumes/Data 2025-08-26T19:31:51.0981230Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-08-26T19:31:51.0981710Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-6AYRoo 2025-08-26T19:31:51.1362160Z Success: There is 198307272KB free space left in / for macOS, continue 2025-08-26T19:31:51.1465770Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-26T19:31:51.1466040Z with: 2025-08-26T19:31:51.1466180Z submodules: recursive 2025-08-26T19:31:51.1466330Z fetch-depth: 0 2025-08-26T19:31:51.1466470Z env: 2025-08-26T19:31:51.1466600Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:31:51.1466800Z SCCACHE_USE_GHA: false 2025-08-26T19:31:51.1466960Z ##[endgroup] 2025-08-26T19:31:51.1481710Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T19:31:51.1482270Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-26T19:31:51.1504550Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:31:51.1504780Z env: 2025-08-26T19:31:51.1504920Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:31:51.1505110Z SCCACHE_USE_GHA: false 2025-08-26T19:31:51.1505280Z ##[endgroup] 2025-08-26T19:31:51.1715810Z ##[group]Run # Use all available CPUs for fetching 2025-08-26T19:31:51.1716160Z # Use all available CPUs for fetching 2025-08-26T19:31:51.1716370Z cd "${GITHUB_WORKSPACE}" 2025-08-26T19:31:51.1716580Z git config --global fetch.parallel 0 2025-08-26T19:31:51.1728890Z git config --global submodule.fetchJobs 0 2025-08-26T19:31:51.1729110Z  2025-08-26T19:31:51.1729350Z # Clean workspace. The default checkout action should also do this, but 2025-08-26T19:31:51.1729630Z # do it here as well just in case 2025-08-26T19:31:51.1729810Z if [[ -d .git ]]; then 2025-08-26T19:31:51.1729980Z  if [ -z "${NO_SUDO}" ]; then 2025-08-26T19:31:51.1730170Z  sudo git clean -ffdx 2025-08-26T19:31:51.1730320Z  else 2025-08-26T19:31:51.1730470Z  git clean -ffdx 2025-08-26T19:31:51.1730630Z  fi 2025-08-26T19:31:51.1730740Z fi 2025-08-26T19:31:51.1752700Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:31:51.1752910Z env: 2025-08-26T19:31:51.1753040Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:31:51.1753210Z SCCACHE_USE_GHA: false 2025-08-26T19:31:51.1753350Z NO_SUDO: 2025-08-26T19:31:51.1753460Z ##[endgroup] 2025-08-26T19:31:52.5407960Z Removing .additional_ci_files/ 2025-08-26T19:31:52.5408320Z Removing .pytest_cache/ 2025-08-26T19:31:52.5408510Z Removing build/ 2025-08-26T19:31:52.5408790Z Removing dist/ 2025-08-26T19:31:52.5408960Z Removing test-reports/ 2025-08-26T19:31:52.5409170Z Removing test/.pytorch-disabled-tests.json 2025-08-26T19:31:52.5409400Z Removing test/__pycache__/ 2025-08-26T19:31:52.5409620Z Removing test/inductor/__pycache__/ 2025-08-26T19:31:52.5409820Z Removing test/test-reports/ 2025-08-26T19:31:52.5410050Z Removing test/torch_compile_debug/ 2025-08-26T19:31:52.5410680Z Removing tools/__pycache__/ 2025-08-26T19:31:52.5410880Z Removing tools/stats/__pycache__/ 2025-08-26T19:31:52.5411190Z Removing tools/stats/upload_utilization_stats/__pycache__/ 2025-08-26T19:31:52.5411480Z Removing tools/testing/__pycache__/ 2025-08-26T19:31:52.5411760Z Removing tools/testing/target_determination/__pycache__/ 2025-08-26T19:31:52.5412120Z Removing tools/testing/target_determination/heuristics/__pycache__/ 2025-08-26T19:31:52.5412400Z Removing usage_log.txt 2025-08-26T19:31:52.5479920Z ##[group]Run actions/checkout@v4 2025-08-26T19:31:52.5480100Z with: 2025-08-26T19:31:52.5480250Z ref: 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:31:52.5480460Z fetch-depth: 0 2025-08-26T19:31:52.5480600Z submodules: recursive 2025-08-26T19:31:52.5480750Z show-progress: false 2025-08-26T19:31:52.5480920Z repository: pytorch/pytorch 2025-08-26T19:31:52.5481160Z token: *** 2025-08-26T19:31:52.5481290Z ssh-strict: true 2025-08-26T19:31:52.5481420Z ssh-user: git 2025-08-26T19:31:52.5481580Z persist-credentials: true 2025-08-26T19:31:52.5481740Z clean: true 2025-08-26T19:31:52.5482170Z sparse-checkout-cone-mode: true 2025-08-26T19:31:52.5482410Z fetch-tags: false 2025-08-26T19:31:52.5482550Z lfs: false 2025-08-26T19:31:52.5482680Z set-safe-directory: true 2025-08-26T19:31:52.5482830Z env: 2025-08-26T19:31:52.5482990Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:31:52.5483170Z SCCACHE_USE_GHA: false 2025-08-26T19:31:52.5483310Z ##[endgroup] 2025-08-26T19:31:52.6339650Z Syncing repository: pytorch/pytorch 2025-08-26T19:31:52.6340600Z ##[group]Getting Git version info 2025-08-26T19:31:52.6340880Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-08-26T19:31:52.6341310Z [command]/usr/bin/git version 2025-08-26T19:31:52.6387120Z git version 2.39.3 (Apple Git-146) 2025-08-26T19:31:52.6399920Z ##[endgroup] 2025-08-26T19:31:52.6405560Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/828fd8b9-d5dc-4a26-9c45-5b33e5789d5a/.gitconfig' 2025-08-26T19:31:52.6411390Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/828fd8b9-d5dc-4a26-9c45-5b33e5789d5a' before making global git config changes 2025-08-26T19:31:52.6412020Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T19:31:52.6418230Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-08-26T19:31:52.6488290Z [command]/usr/bin/git config --local --get remote.origin.url 2025-08-26T19:31:52.6539990Z https://github.com/pytorch/pytorch 2025-08-26T19:31:52.6548610Z ##[group]Removing previously created refs, to avoid conflicts 2025-08-26T19:31:52.6550800Z [command]/usr/bin/git rev-parse --symbolic-full-name --verify --quiet HEAD 2025-08-26T19:31:52.6657840Z HEAD 2025-08-26T19:31:52.6733050Z ##[endgroup] 2025-08-26T19:31:52.6734770Z [command]/usr/bin/git submodule status 2025-08-26T19:31:52.7580800Z 7e1e1fe3858c63c251c637ae41a20de425dde96f android/libs/fbjni (v0.1.0-12-g7e1e1fe) 2025-08-26T19:31:52.7900540Z 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 third_party/FP16 (4dfe081) 2025-08-26T19:31:52.8141120Z b408327ac2a15ec3e43352421954f5b1967701d1 third_party/FXdiv (b408327) 2025-08-26T19:31:52.8462720Z c07e3a0400713d546e0dea2d5466dd22ea389c73 third_party/NNPACK (c07e3a0) 2025-08-26T19:31:52.8867010Z 2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07 third_party/NVTX (v3.1.0-263-g2942f16) 2025-08-26T19:31:52.9143980Z 1d8f600fd424278486eade7ed3e877c99f0846b1 third_party/VulkanMemoryAllocator (v2.1.0-982-g1d8f600) 2025-08-26T19:31:53.1251610Z 51a0103656eff6fc9bfd39a4597923c4b542c883 third_party/XNNPACK (remotes/origin/ds/ndk-1243-g51a0103656) 2025-08-26T19:31:53.1744770Z 01aae101b9e5e94d6c16a9514c9fb8df99c93150 third_party/aiter (v0.1.1-92-g01aae101) 2025-08-26T19:31:53.1968630Z 299e5928955cc62af9968370293b916f5130916f third_party/benchmark (v1.9.3) 2025-08-26T19:31:53.2660160Z 7fe50dc3da2069d6645d9deb8c017a876472a977 third_party/composable_kernel (rocm-6.4.3-459-g7fe50dc3d) 2025-08-26T19:31:53.3167240Z 3af7f2c16147f3fbc6e4d717032daf505dc1652c third_party/cpp-httplib (v0.20.1) 2025-08-26T19:31:53.3653320Z 5e3d2445e6a84d9599bee2bf78edbb4d80865e1d third_party/cpuinfo (5e3d244) 2025-08-26T19:31:53.4060420Z f937055efc6d414d11f4c6577e3977fe74f35fb6 third_party/cudnn_frontend (v0.5-52-gf937055) 2025-08-26T19:31:53.4459260Z e51efbfe18fe4f4cbb66ab814c55bf4aa0185491 third_party/cutlass (v4.1.0) 2025-08-26T19:31:53.5177980Z 21c7d30c526c0f1ad873ecc632dca6cfa8a69067 third_party/fbgemm (v1.3.0-rc1-165-g21c7d30c) 2025-08-26T19:31:53.5485530Z 979702c87a8713a8e0a5e9fee122b90d2ef13be5 third_party/flash-attention (v2.7.4) 2025-08-26T19:31:53.5680730Z a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757 third_party/flatbuffers (v24.12.23) 2025-08-26T19:31:53.6815800Z 40626af88bd7df9a5fb80be7b25ac85b122d6c21 third_party/fmt (11.2.0) 2025-08-26T19:31:53.7183220Z 3fb5c176c17c765a3492cd2f0321b0dab712f350 third_party/gemmlowp/gemmlowp (remotes/origin/revert-87-master-135-g3fb5c17) 2025-08-26T19:31:53.7680550Z c7b7b022c124d9643957d9bd55f57ac59fce8fa2 third_party/gloo (remotes/origin/gh/c-p-i-o/1/base-33-gc7b7b02) 2025-08-26T19:31:53.8458700Z 52eb8108c5bdec04579160ae17225d66034bd723 third_party/googletest (release-1.8.0-3544-g52eb8108) 2025-08-26T19:31:53.8908930Z 719d8e6cd7f7a0e01b155657526d693acf97c2b3 third_party/ideep (pytorch-rls-v3.7.1) 2025-08-26T19:31:53.9267250Z dec1d23ca65ab069d225dfe40dea14f455170959 third_party/ittapi (v3.25.5) 2025-08-26T19:31:53.9883670Z 5e7501833f1021ce6f618572d3baf657b6319658 third_party/kineto (remotes/origin/sraikund/test-98-g5e75018) 2025-08-26T19:31:54.0163400Z cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7 third_party/kleidiai (v1.8.0) 2025-08-26T19:31:54.0349950Z fbd8b99c2b828428947d70fdc046bb55609be93e third_party/mimalloc (v2.2.4) 2025-08-26T19:31:54.0535040Z 55f93686c01528224f448c19128836e7df245f72 third_party/nlohmann (v3.12.0) 2025-08-26T19:31:54.1708230Z e709452ef2bbc1d113faf678c24e6d3467696e83 third_party/onnx (v1.18.0) 2025-08-26T19:31:54.1897990Z a799f4aed9c94b765dcdaabaeab7d5e7e2310878 third_party/opentelemetry-cpp (v1.14.2) 2025-08-26T19:31:54.2114640Z 0fa0ef591e38c2758e3184c6c23e497b9f732ffa third_party/pocketfft (release_for_eigen-40-g0fa0ef5) 2025-08-26T19:31:54.4499990Z d1eca4e4b421cd2997495c4b4e65cea6be4e9b8a third_party/protobuf (v3.7.0-rc.2-1279-gd1eca4e4b) 2025-08-26T19:31:54.4719430Z 072586a71b55b7f8c584153d223e95687148a900 third_party/psimd (heads/master) 2025-08-26T19:31:54.4961650Z 4fe0e1e183925bf8cfa6aae24237e724a96479b8 third_party/pthreadpool (0.1-144-g4fe0e1e) 2025-08-26T19:31:54.5119510Z f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8 third_party/pybind11 (v3.0.1) 2025-08-26T19:31:54.5383620Z f45429b087dd7d5bc78bb40dc7cf06425c252d67 third_party/python-peachpy (remotes/origin/pre-generated) 2025-08-26T19:31:54.5824180Z 5a1d179df9cf652951b59010a2d2075372d67f68 third_party/sleef (3.8) 2025-08-26T19:31:54.6119140Z af0118d13e52f5a08841464a768e01a0bf3e3075 third_party/tensorpipe (heads/main) 2025-08-26T19:31:54.6126630Z ##[group]Cleaning the repository 2025-08-26T19:31:54.6128880Z [command]/usr/bin/git clean -ffdx 2025-08-26T19:31:54.6514300Z [command]/usr/bin/git reset --hard HEAD 2025-08-26T19:31:56.0106140Z HEAD is now at f0e0a6897ee type misc init and tools for dynamo (#161293) 2025-08-26T19:31:56.0112090Z ##[endgroup] 2025-08-26T19:31:56.0113400Z ##[group]Disabling automatic garbage collection 2025-08-26T19:31:56.0117780Z [command]/usr/bin/git config --local gc.auto 0 2025-08-26T19:31:56.0188680Z ##[endgroup] 2025-08-26T19:31:56.0188960Z ##[group]Setting up auth 2025-08-26T19:31:56.0196210Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-08-26T19:31:56.0257090Z [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-08-26T19:31:56.0737810Z Entering 'android/libs/fbjni' 2025-08-26T19:31:56.0844660Z Entering 'third_party/FP16' 2025-08-26T19:31:56.0951500Z Entering 'third_party/FXdiv' 2025-08-26T19:31:56.1056640Z Entering 'third_party/NNPACK' 2025-08-26T19:31:56.1165160Z Entering 'third_party/NVTX' 2025-08-26T19:31:56.1298740Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:31:56.1407790Z Entering 'third_party/XNNPACK' 2025-08-26T19:31:56.1619570Z Entering 'third_party/aiter' 2025-08-26T19:31:56.1841310Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:31:56.2037270Z Entering 'third_party/benchmark' 2025-08-26T19:31:56.2148920Z Entering 'third_party/composable_kernel' 2025-08-26T19:31:56.2351440Z Entering 'third_party/cpp-httplib' 2025-08-26T19:31:56.2454890Z Entering 'third_party/cpuinfo' 2025-08-26T19:31:56.2576600Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:31:56.2686370Z Entering 'third_party/cutlass' 2025-08-26T19:31:56.2894520Z Entering 'third_party/fbgemm' 2025-08-26T19:31:56.3062850Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:31:56.3213490Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:31:56.3419990Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:31:56.3601330Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:31:56.3818490Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:31:56.3952860Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:31:56.4098060Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:31:56.4225540Z Entering 'third_party/flash-attention' 2025-08-26T19:31:56.4449180Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:31:56.4689940Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:31:56.4899760Z Entering 'third_party/flatbuffers' 2025-08-26T19:31:56.5051560Z Entering 'third_party/fmt' 2025-08-26T19:31:56.5153770Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:31:56.5258750Z Entering 'third_party/gloo' 2025-08-26T19:31:56.5367280Z Entering 'third_party/googletest' 2025-08-26T19:31:56.5476120Z Entering 'third_party/ideep' 2025-08-26T19:31:56.5600870Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:31:56.5760970Z Entering 'third_party/ittapi' 2025-08-26T19:31:56.5871040Z Entering 'third_party/kineto' 2025-08-26T19:31:56.6021870Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:31:56.6194470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:31:56.6378610Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:31:56.6525140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:31:56.6683930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:31:56.6827910Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:31:56.6981430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:31:56.7139290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:31:56.7320750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:31:56.7494970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:31:56.7633180Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:31:56.7796770Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:31:56.7919580Z Entering 'third_party/kleidiai' 2025-08-26T19:31:56.8044920Z Entering 'third_party/mimalloc' 2025-08-26T19:31:56.8154130Z Entering 'third_party/nlohmann' 2025-08-26T19:31:56.8299820Z Entering 'third_party/onnx' 2025-08-26T19:31:56.8559430Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:31:56.8679620Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:31:56.8884220Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:31:56.9056610Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:31:56.9215540Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:31:56.9372390Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:31:56.9575110Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:31:56.9723270Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:31:56.9873650Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:31:57.0035220Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:31:57.0216970Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:31:57.0364500Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:31:57.0617790Z Entering 'third_party/pocketfft' 2025-08-26T19:31:57.0733490Z Entering 'third_party/protobuf' 2025-08-26T19:31:57.0900040Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:31:57.1031240Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:31:57.1158230Z Entering 'third_party/psimd' 2025-08-26T19:31:57.1263590Z Entering 'third_party/pthreadpool' 2025-08-26T19:31:57.1376750Z Entering 'third_party/pybind11' 2025-08-26T19:31:57.1496890Z Entering 'third_party/python-peachpy' 2025-08-26T19:31:57.1608400Z Entering 'third_party/sleef' 2025-08-26T19:31:57.1721230Z Entering 'third_party/tensorpipe' 2025-08-26T19:31:57.1876450Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:31:57.2015840Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:31:57.2161740Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:31:57.2329370Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:31:57.2491920Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:31:57.2625030Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T19:31:57.2687120Z [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-08-26T19:31:57.3176920Z Entering 'android/libs/fbjni' 2025-08-26T19:31:57.3280090Z Entering 'third_party/FP16' 2025-08-26T19:31:57.3378310Z Entering 'third_party/FXdiv' 2025-08-26T19:31:57.3477100Z Entering 'third_party/NNPACK' 2025-08-26T19:31:57.3575460Z Entering 'third_party/NVTX' 2025-08-26T19:31:57.3673970Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:31:57.3772440Z Entering 'third_party/XNNPACK' 2025-08-26T19:31:57.3873060Z Entering 'third_party/aiter' 2025-08-26T19:31:57.3970350Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:31:57.4070020Z Entering 'third_party/benchmark' 2025-08-26T19:31:57.4168410Z Entering 'third_party/composable_kernel' 2025-08-26T19:31:57.4267570Z Entering 'third_party/cpp-httplib' 2025-08-26T19:31:57.4365220Z Entering 'third_party/cpuinfo' 2025-08-26T19:31:57.4460960Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:31:57.4557800Z Entering 'third_party/cutlass' 2025-08-26T19:31:57.4660530Z Entering 'third_party/fbgemm' 2025-08-26T19:31:57.4761070Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:31:57.4860920Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:31:57.4962120Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:31:57.5060580Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:31:57.5162420Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:31:57.5261390Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:31:57.5359510Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:31:57.5460170Z Entering 'third_party/flash-attention' 2025-08-26T19:31:57.5558200Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:31:57.5658300Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:31:57.5762550Z Entering 'third_party/flatbuffers' 2025-08-26T19:31:57.5864400Z Entering 'third_party/fmt' 2025-08-26T19:31:57.5963090Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:31:57.6061240Z Entering 'third_party/gloo' 2025-08-26T19:31:57.6159250Z Entering 'third_party/googletest' 2025-08-26T19:31:57.6258060Z Entering 'third_party/ideep' 2025-08-26T19:31:57.6354490Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:31:57.6456940Z Entering 'third_party/ittapi' 2025-08-26T19:31:57.6556530Z Entering 'third_party/kineto' 2025-08-26T19:31:57.6653950Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:31:57.6751190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:31:57.6850110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:31:57.6948840Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:31:57.7046380Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:31:57.7143720Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:31:57.7245280Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:31:57.7345120Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:31:57.7442470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:31:57.7540580Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:31:57.7641160Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:31:57.7739370Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:31:57.7838620Z Entering 'third_party/kleidiai' 2025-08-26T19:31:57.7935960Z Entering 'third_party/mimalloc' 2025-08-26T19:31:57.8033950Z Entering 'third_party/nlohmann' 2025-08-26T19:31:57.8133640Z Entering 'third_party/onnx' 2025-08-26T19:31:57.8236560Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:31:57.8339190Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:31:57.8438760Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:31:57.8535670Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:31:57.8631180Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:31:57.8726010Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:31:57.8822570Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:31:57.8917630Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:31:57.9012140Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:31:57.9106300Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:31:57.9202090Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:31:57.9300640Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:31:57.9407200Z Entering 'third_party/pocketfft' 2025-08-26T19:31:57.9504780Z Entering 'third_party/protobuf' 2025-08-26T19:31:57.9602810Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:31:57.9702510Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:31:57.9801760Z Entering 'third_party/psimd' 2025-08-26T19:31:57.9900940Z Entering 'third_party/pthreadpool' 2025-08-26T19:31:57.9999190Z Entering 'third_party/pybind11' 2025-08-26T19:31:58.0096490Z Entering 'third_party/python-peachpy' 2025-08-26T19:31:58.0194760Z Entering 'third_party/sleef' 2025-08-26T19:31:58.0292720Z Entering 'third_party/tensorpipe' 2025-08-26T19:31:58.0389820Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:31:58.0487150Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:31:58.0585640Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:31:58.0684170Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:31:58.0779970Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:31:58.0895610Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-08-26T19:31:58.0966170Z ##[endgroup] 2025-08-26T19:31:58.0966450Z ##[group]Fetching the repository 2025-08-26T19:31:58.0970800Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-08-26T19:32:02.8259560Z From https://github.com/pytorch/pytorch 2025-08-26T19:32:02.8259850Z - [deleted] (none) -> ciflow/inductor/161334 2025-08-26T19:32:02.9307220Z - [deleted] (none) -> ciflow/inductor/161514 2025-08-26T19:32:02.9307580Z - [deleted] (none) -> ciflow/rocm/161519 2025-08-26T19:32:02.9308040Z - [deleted] (none) -> ciflow/trunk/161002 2025-08-26T19:32:02.9308330Z - [deleted] (none) -> ciflow/trunk/161220 2025-08-26T19:32:02.9309080Z - [deleted] (none) -> ciflow/trunk/161334 2025-08-26T19:32:02.9309840Z - [deleted] (none) -> ciflow/trunk/161424 2025-08-26T19:32:02.9311060Z - [deleted] (none) -> ciflow/trunk/161514 2025-08-26T19:32:04.5568080Z + 25e9a8e6af7...1d552384c86 ISSUE-154849 -> origin/ISSUE-154849 (forced update) 2025-08-26T19:32:04.5584730Z * [new branch] export-D81054193 -> origin/export-D81054193 2025-08-26T19:32:04.6526790Z * [new branch] export-D81060182 -> origin/export-D81060182 2025-08-26T19:32:04.6552690Z d611fcb360c..f4991f8a178 gh/c00w/55/head -> origin/gh/c00w/55/head 2025-08-26T19:32:04.6560440Z + f484f3b94b1...fe6b98c942c gh/c00w/55/orig -> origin/gh/c00w/55/orig (forced update) 2025-08-26T19:32:04.6589330Z bc0571b2128..3c6d2da2f9c gh/drisspg/186/base -> origin/gh/drisspg/186/base 2025-08-26T19:32:04.6631920Z 5095754ff46..2656ef43c5a gh/drisspg/186/head -> origin/gh/drisspg/186/head 2025-08-26T19:32:04.6640360Z + 3d032653403...3f2dbecbf24 gh/drisspg/186/orig -> origin/gh/drisspg/186/orig (forced update) 2025-08-26T19:32:04.6648570Z ad7ddb6c55a..f180efd284e gh/drisspg/187/base -> origin/gh/drisspg/187/base 2025-08-26T19:32:04.6656610Z c17f8697ae6..fba172bd85c gh/drisspg/187/head -> origin/gh/drisspg/187/head 2025-08-26T19:32:04.6665000Z + 7a81ba5e9be...8d9858e4cca gh/drisspg/187/orig -> origin/gh/drisspg/187/orig (forced update) 2025-08-26T19:32:04.6713550Z 69ee93bcdb0..e20b54c43b2 gh/justinchuby/113/head -> origin/gh/justinchuby/113/head 2025-08-26T19:32:04.6721880Z + e5ac984ffec...5a7e0c1a2f3 gh/justinchuby/113/orig -> origin/gh/justinchuby/113/orig (forced update) 2025-08-26T19:32:04.6730560Z 56aa4ed3278..39ac03a509f gh/justinchuby/114/base -> origin/gh/justinchuby/114/base 2025-08-26T19:32:04.6739680Z 9c8fd446c67..1e0682b5070 gh/justinchuby/114/head -> origin/gh/justinchuby/114/head 2025-08-26T19:32:04.6748270Z + dad45ce2dab...103c13f3be3 gh/justinchuby/114/orig -> origin/gh/justinchuby/114/orig (forced update) 2025-08-26T19:32:04.6766820Z 4953337a314..d25b6f1fb8b gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-08-26T19:32:04.6775980Z + 140c99c3ba2...0b318b21a83 gh/skarjala/19/orig -> origin/gh/skarjala/19/orig (forced update) 2025-08-26T19:32:04.6780800Z * [new branch] gh/swolchok/809/base -> origin/gh/swolchok/809/base 2025-08-26T19:32:04.6782920Z * [new branch] gh/swolchok/809/head -> origin/gh/swolchok/809/head 2025-08-26T19:32:04.6784880Z * [new branch] gh/swolchok/809/orig -> origin/gh/swolchok/809/orig 2025-08-26T19:32:04.6794370Z * [new branch] issue-154849 -> origin/issue-154849 2025-08-26T19:32:04.6803780Z f0e0a6897ee..262640fd220 main -> origin/main 2025-08-26T19:32:04.6823800Z + 78d49a063e4...0b2fd693ed1 update_submodule_FBGEMM -> origin/update_submodule_FBGEMM (forced update) 2025-08-26T19:32:04.6833040Z + 37bc0ff54f0...43d6f8b7ad7 update_submodule_kineto -> origin/update_submodule_kineto (forced update) 2025-08-26T19:32:04.6841530Z ae8d319fd4a..10e67f5ec38 viable/strict -> origin/viable/strict 2025-08-26T19:32:04.6844980Z * [new tag] ciflow/inductor/156875 -> ciflow/inductor/156875 2025-08-26T19:32:04.6847430Z t [tag update] ciflow/inductor/160448 -> ciflow/inductor/160448 2025-08-26T19:32:04.6863360Z t [tag update] ciflow/inductor/161117 -> ciflow/inductor/161117 2025-08-26T19:32:04.6865070Z t [tag update] ciflow/inductor/161118 -> ciflow/inductor/161118 2025-08-26T19:32:04.6867400Z t [tag update] ciflow/inductor/161452 -> ciflow/inductor/161452 2025-08-26T19:32:04.6869340Z t [tag update] ciflow/inductor/161453 -> ciflow/inductor/161453 2025-08-26T19:32:04.6870470Z * [new tag] ciflow/inductor/161526 -> ciflow/inductor/161526 2025-08-26T19:32:04.6872050Z * [new tag] ciflow/inductor/161530 -> ciflow/inductor/161530 2025-08-26T19:32:04.6873810Z * [new tag] ciflow/periodic/156491 -> ciflow/periodic/156491 2025-08-26T19:32:04.6875260Z * [new tag] ciflow/rocm-mi300/161429 -> ciflow/rocm-mi300/161429 2025-08-26T19:32:04.6876990Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-08-26T19:32:04.6878430Z * [new tag] ciflow/rocm/161429 -> ciflow/rocm/161429 2025-08-26T19:32:04.6919900Z t [tag update] ciflow/slow/161182 -> ciflow/slow/161182 2025-08-26T19:32:04.6921940Z t [tag update] ciflow/trunk/160448 -> ciflow/trunk/160448 2025-08-26T19:32:04.6923070Z * [new tag] ciflow/trunk/160781 -> ciflow/trunk/160781 2025-08-26T19:32:04.6924470Z * [new tag] ciflow/trunk/160992 -> ciflow/trunk/160992 2025-08-26T19:32:04.6925910Z * [new tag] ciflow/trunk/161023 -> ciflow/trunk/161023 2025-08-26T19:32:04.6927920Z t [tag update] ciflow/trunk/161117 -> ciflow/trunk/161117 2025-08-26T19:32:04.6929440Z * [new tag] ciflow/trunk/161451 -> ciflow/trunk/161451 2025-08-26T19:32:04.6930950Z t [tag update] ciflow/trunk/161453 -> ciflow/trunk/161453 2025-08-26T19:32:04.6933130Z * [new tag] trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 -> trunk/00efeabc295e072fb9d6e68b008a31fb04201fd1 2025-08-26T19:32:04.6935660Z * [new tag] trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 -> trunk/74124d1b46774f2a73aa1aadc2b0874cb523b1c1 2025-08-26T19:32:04.6937320Z * [new tag] trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b -> trunk/a03cc53e6f6e2fe67316cb8c74c25f5b953f445b 2025-08-26T19:32:04.6939330Z * [new tag] trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 -> trunk/cd87f3029582cedb3b88747a3bd7d200b05c1138 2025-08-26T19:32:04.6940640Z * [new tag] trunk/d4703fb91c3510460d71f648da113177edf593c8 -> trunk/d4703fb91c3510460d71f648da113177edf593c8 2025-08-26T19:32:04.8083380Z [command]/usr/bin/git rev-parse --verify --quiet 262640fd220236042fbf4443cc163c8838c84c3d^{object} 2025-08-26T19:32:04.8142510Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:32:04.8145940Z ##[endgroup] 2025-08-26T19:32:04.8155110Z ##[group]Determining the checkout info 2025-08-26T19:32:04.8155480Z ##[endgroup] 2025-08-26T19:32:04.8155650Z [command]/usr/bin/git sparse-checkout disable 2025-08-26T19:32:04.8345750Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-08-26T19:32:04.8408620Z ##[group]Checking out the ref 2025-08-26T19:32:04.8410660Z [command]/usr/bin/git checkout --progress --force 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:32:05.0690290Z Previous HEAD position was f0e0a6897ee type misc init and tools for dynamo (#161293) 2025-08-26T19:32:05.0714860Z HEAD is now at 262640fd220 [ROCm][CI] restore test_flex_attention tests (#161519) 2025-08-26T19:32:05.0722910Z ##[endgroup] 2025-08-26T19:32:05.0723470Z ##[group]Setting up auth for fetching submodules 2025-08-26T19:32:05.0727300Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-08-26T19:32:05.0810720Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-08-26T19:32:05.0871230Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-26T19:32:05.0929120Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-26T19:32:05.0991930Z ##[endgroup] 2025-08-26T19:32:05.0992160Z ##[group]Fetching submodules 2025-08-26T19:32:05.0994150Z [command]/usr/bin/git submodule sync --recursive 2025-08-26T19:32:05.1492260Z Synchronizing submodule url for 'android/libs/fbjni' 2025-08-26T19:32:05.1531900Z Synchronizing submodule url for 'third_party/FP16' 2025-08-26T19:32:05.1569640Z Synchronizing submodule url for 'third_party/FXdiv' 2025-08-26T19:32:05.1606480Z Synchronizing submodule url for 'third_party/NNPACK' 2025-08-26T19:32:05.1643850Z Synchronizing submodule url for 'third_party/NVTX' 2025-08-26T19:32:05.1680330Z Synchronizing submodule url for 'third_party/VulkanMemoryAllocator' 2025-08-26T19:32:05.1716670Z Synchronizing submodule url for 'third_party/XNNPACK' 2025-08-26T19:32:05.1757760Z Synchronizing submodule url for 'third_party/aiter' 2025-08-26T19:32:05.1794320Z Synchronizing submodule url for 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:32:05.1835600Z Synchronizing submodule url for 'third_party/benchmark' 2025-08-26T19:32:05.1873110Z Synchronizing submodule url for 'third_party/composable_kernel' 2025-08-26T19:32:05.1911790Z Synchronizing submodule url for 'third_party/cpp-httplib' 2025-08-26T19:32:05.1948600Z Synchronizing submodule url for 'third_party/cpuinfo' 2025-08-26T19:32:05.1985980Z Synchronizing submodule url for 'third_party/cudnn_frontend' 2025-08-26T19:32:05.2022940Z Synchronizing submodule url for 'third_party/cutlass' 2025-08-26T19:32:05.2062890Z Synchronizing submodule url for 'third_party/fbgemm' 2025-08-26T19:32:05.2098600Z Synchronizing submodule url for 'third_party/fbgemm/external/asmjit' 2025-08-26T19:32:05.2135150Z Synchronizing submodule url for 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:32:05.2173490Z Synchronizing submodule url for 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:32:05.2210750Z Synchronizing submodule url for 'third_party/fbgemm/external/cutlass' 2025-08-26T19:32:05.2250200Z Synchronizing submodule url for 'third_party/fbgemm/external/googletest' 2025-08-26T19:32:05.2287250Z Synchronizing submodule url for 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:32:05.2323580Z Synchronizing submodule url for 'third_party/fbgemm/external/json' 2025-08-26T19:32:05.2363140Z Synchronizing submodule url for 'third_party/flash-attention' 2025-08-26T19:32:05.2399180Z Synchronizing submodule url for 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:32:05.2437410Z Synchronizing submodule url for 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:32:05.2480260Z Synchronizing submodule url for 'third_party/flatbuffers' 2025-08-26T19:32:05.2520110Z Synchronizing submodule url for 'third_party/fmt' 2025-08-26T19:32:05.2558740Z Synchronizing submodule url for 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:32:05.2595240Z Synchronizing submodule url for 'third_party/gloo' 2025-08-26T19:32:05.2632000Z Synchronizing submodule url for 'third_party/googletest' 2025-08-26T19:32:05.2668800Z Synchronizing submodule url for 'third_party/ideep' 2025-08-26T19:32:05.2702780Z Synchronizing submodule url for 'third_party/ideep/mkl-dnn' 2025-08-26T19:32:05.2742830Z Synchronizing submodule url for 'third_party/ittapi' 2025-08-26T19:32:05.2780780Z Synchronizing submodule url for 'third_party/kineto' 2025-08-26T19:32:05.2815860Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:32:05.2856050Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:32:05.2893350Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:32:05.2929570Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:32:05.2966310Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:32:05.3001350Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:32:05.3040430Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:32:05.3078370Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:32:05.3115580Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:32:05.3152600Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:32:05.3191990Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:32:05.3229290Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:32:05.3266450Z Synchronizing submodule url for 'third_party/kleidiai' 2025-08-26T19:32:05.3303300Z Synchronizing submodule url for 'third_party/mimalloc' 2025-08-26T19:32:05.3340660Z Synchronizing submodule url for 'third_party/nlohmann' 2025-08-26T19:32:05.3377710Z Synchronizing submodule url for 'third_party/onnx' 2025-08-26T19:32:05.3418260Z Synchronizing submodule url for 'third_party/onnx/third_party/pybind11' 2025-08-26T19:32:05.3456990Z Synchronizing submodule url for 'third_party/opentelemetry-cpp' 2025-08-26T19:32:05.3492030Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:32:05.3534190Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:32:05.3570620Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:32:05.3612770Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:32:05.3650010Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:32:05.3685960Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:32:05.3722210Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:32:05.3755590Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:32:05.3791160Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:32:05.3830470Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:32:05.3876710Z Synchronizing submodule url for 'third_party/pocketfft' 2025-08-26T19:32:05.3915020Z Synchronizing submodule url for 'third_party/protobuf' 2025-08-26T19:32:05.3950650Z Synchronizing submodule url for 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:32:05.3986530Z Synchronizing submodule url for 'third_party/protobuf/third_party/googletest' 2025-08-26T19:32:05.4025440Z Synchronizing submodule url for 'third_party/psimd' 2025-08-26T19:32:05.4062080Z Synchronizing submodule url for 'third_party/pthreadpool' 2025-08-26T19:32:05.4097190Z Synchronizing submodule url for 'third_party/pybind11' 2025-08-26T19:32:05.4133160Z Synchronizing submodule url for 'third_party/python-peachpy' 2025-08-26T19:32:05.4170090Z Synchronizing submodule url for 'third_party/sleef' 2025-08-26T19:32:05.4207480Z Synchronizing submodule url for 'third_party/tensorpipe' 2025-08-26T19:32:05.4241290Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:32:05.4275880Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:32:05.4310380Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:32:05.4346370Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:32:05.4380880Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:32:05.4423110Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-08-26T19:32:05.5209500Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-26T19:32:05.5401740Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-26T19:32:05.5587830Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-26T19:32:05.5918890Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-26T19:32:05.6499270Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-26T19:32:05.6853710Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-26T19:32:05.7822330Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-26T19:32:05.8760950Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-26T19:32:06.0771150Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-26T19:32:06.1293730Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-26T19:32:06.2463440Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-26T19:32:06.2777580Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-26T19:32:06.3295030Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-26T19:32:06.3644030Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-26T19:32:06.4364860Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-26T19:32:06.5202260Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-26T19:32:06.5681740Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-26T19:32:06.6671060Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-26T19:32:06.7343630Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-26T19:32:06.8391020Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-26T19:32:06.9113680Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T19:32:06.9395930Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-26T19:32:07.0669520Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-26T19:32:07.1447660Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-26T19:32:07.3421210Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-26T19:32:07.4604120Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-26T19:32:07.5507150Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-26T19:32:07.5760650Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-26T19:32:07.6032040Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-26T19:32:07.6376120Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-26T19:32:07.6742790Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-26T19:32:07.6939710Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-26T19:32:08.0084880Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-26T19:32:08.0347030Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-26T19:32:08.0737180Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-26T19:32:08.1342070Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-26T19:32:08.2359930Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-26T19:32:08.2931410Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-26T19:32:08.3758970Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-26T19:32:08.4077670Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-26T19:32:08.4371890Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-26T19:32:08.4811100Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-26T19:32:08.5534430Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-26T19:32:08.6999820Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-26T19:32:08.7330150Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-26T19:32:08.8066340Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-26T19:32:08.8776950Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-26T19:32:08.9295980Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-26T19:32:08.9961330Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-26T19:32:09.1064450Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-26T19:32:09.1794160Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-26T19:32:09.2738590Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-26T19:32:09.4060590Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-26T19:32:09.4700260Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-26T19:32:09.5392660Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-26T19:32:09.5818130Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-26T19:32:09.7114420Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-26T19:32:09.7526590Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-26T19:32:09.7820590Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-26T19:32:09.8345390Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-26T19:32:09.9364450Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-26T19:32:10.0073150Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-26T19:32:10.3475180Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-26T19:32:10.3707010Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-26T19:32:10.5092790Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-26T19:32:10.5932730Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-26T19:32:10.6698780Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-26T19:32:10.6874780Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-26T19:32:10.7042640Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-26T19:32:10.7950280Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-08-26T19:32:10.8201030Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-26T19:32:10.8535290Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-26T19:32:10.8920960Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-08-26T19:32:10.9692310Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-26T19:32:10.9973370Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-26T19:32:11.1265470Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-26T19:32:11.2107870Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-26T19:32:11.2352120Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-26T19:32:11.2399140Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-08-26T19:32:11.2917440Z Entering 'android/libs/fbjni' 2025-08-26T19:32:11.3005320Z Entering 'third_party/FP16' 2025-08-26T19:32:11.3086930Z Entering 'third_party/FXdiv' 2025-08-26T19:32:11.3166800Z Entering 'third_party/NNPACK' 2025-08-26T19:32:11.3246890Z Entering 'third_party/NVTX' 2025-08-26T19:32:11.3326860Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:32:11.3422310Z Entering 'third_party/XNNPACK' 2025-08-26T19:32:11.3509470Z Entering 'third_party/aiter' 2025-08-26T19:32:11.3591910Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:32:11.3676910Z Entering 'third_party/benchmark' 2025-08-26T19:32:11.3759060Z Entering 'third_party/composable_kernel' 2025-08-26T19:32:11.3894470Z Entering 'third_party/cpp-httplib' 2025-08-26T19:32:11.3930280Z Entering 'third_party/cpuinfo' 2025-08-26T19:32:11.4030630Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:32:11.4094380Z Entering 'third_party/cutlass' 2025-08-26T19:32:11.4178290Z Entering 'third_party/fbgemm' 2025-08-26T19:32:11.4258950Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:32:11.4339600Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:32:11.4423280Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:32:11.4504800Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:32:11.4587740Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:32:11.4668410Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:32:11.4747760Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:32:11.4830790Z Entering 'third_party/flash-attention' 2025-08-26T19:32:11.4912310Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:32:11.4994580Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:32:11.5077880Z Entering 'third_party/flatbuffers' 2025-08-26T19:32:11.5161690Z Entering 'third_party/fmt' 2025-08-26T19:32:11.5243010Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:32:11.5323450Z Entering 'third_party/gloo' 2025-08-26T19:32:11.5403080Z Entering 'third_party/googletest' 2025-08-26T19:32:11.5482560Z Entering 'third_party/ideep' 2025-08-26T19:32:11.5561900Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:32:11.5656630Z Entering 'third_party/ittapi' 2025-08-26T19:32:11.5737980Z Entering 'third_party/kineto' 2025-08-26T19:32:11.5817140Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:32:11.5895090Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:32:11.5975920Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:32:11.6057000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:32:11.6137530Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:32:11.6216640Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:32:11.6299680Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:32:11.6380250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:32:11.6462900Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:32:11.6544100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:32:11.6625870Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:32:11.6706910Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:32:11.6789370Z Entering 'third_party/kleidiai' 2025-08-26T19:32:11.6872400Z Entering 'third_party/mimalloc' 2025-08-26T19:32:11.6954040Z Entering 'third_party/nlohmann' 2025-08-26T19:32:11.7035170Z Entering 'third_party/onnx' 2025-08-26T19:32:11.7121180Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:32:11.7207070Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:32:11.7288850Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:32:11.7368500Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:32:11.7448880Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:32:11.7529380Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:32:11.7610250Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:32:11.7690270Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:32:11.7771690Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:32:11.7850420Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:32:11.7931050Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:32:11.8015440Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:32:11.8106250Z Entering 'third_party/pocketfft' 2025-08-26T19:32:11.8190010Z Entering 'third_party/protobuf' 2025-08-26T19:32:11.8271070Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:32:11.8351630Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:32:11.8432460Z Entering 'third_party/psimd' 2025-08-26T19:32:11.8514490Z Entering 'third_party/pthreadpool' 2025-08-26T19:32:11.8599850Z Entering 'third_party/pybind11' 2025-08-26T19:32:11.8676050Z Entering 'third_party/python-peachpy' 2025-08-26T19:32:11.8756620Z Entering 'third_party/sleef' 2025-08-26T19:32:11.8836890Z Entering 'third_party/tensorpipe' 2025-08-26T19:32:11.8916000Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:32:11.8996010Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:32:11.9076110Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:32:11.9155100Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:32:11.9233520Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:32:11.9324550Z ##[endgroup] 2025-08-26T19:32:11.9324840Z ##[group]Persisting credentials for submodules 2025-08-26T19:32:11.9328230Z [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-08-26T19:32:11.9816780Z Entering 'android/libs/fbjni' 2025-08-26T19:32:11.9884230Z url.https://github.com/.insteadof 2025-08-26T19:32:11.9884460Z url.https://github.com/.insteadof 2025-08-26T19:32:11.9949070Z Entering 'third_party/FP16' 2025-08-26T19:32:12.0014910Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0015130Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0080710Z Entering 'third_party/FXdiv' 2025-08-26T19:32:12.0145920Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0146140Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0210620Z Entering 'third_party/NNPACK' 2025-08-26T19:32:12.0275410Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0275640Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0340900Z Entering 'third_party/NVTX' 2025-08-26T19:32:12.0406810Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0407030Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0472030Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:32:12.0538160Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0538390Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0604390Z Entering 'third_party/XNNPACK' 2025-08-26T19:32:12.0670470Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0670700Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0739540Z Entering 'third_party/aiter' 2025-08-26T19:32:12.0805390Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0805610Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0870270Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:32:12.0936050Z url.https://github.com/.insteadof 2025-08-26T19:32:12.0936290Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1005650Z Entering 'third_party/benchmark' 2025-08-26T19:32:12.1071190Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1071420Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1136170Z Entering 'third_party/composable_kernel' 2025-08-26T19:32:12.1201850Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1202070Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1269410Z Entering 'third_party/cpp-httplib' 2025-08-26T19:32:12.1335650Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1335880Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1400420Z Entering 'third_party/cpuinfo' 2025-08-26T19:32:12.1465740Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1465970Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1531090Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:32:12.1596390Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1596970Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1660660Z Entering 'third_party/cutlass' 2025-08-26T19:32:12.1726280Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1726500Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1794930Z Entering 'third_party/fbgemm' 2025-08-26T19:32:12.1861740Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1861970Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1926130Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:32:12.1990920Z url.https://github.com/.insteadof 2025-08-26T19:32:12.1991140Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2055880Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:32:12.2120830Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2121050Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2187580Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:32:12.2252530Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2252750Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2317910Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:32:12.2383190Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2383420Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2450190Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:32:12.2515630Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2515860Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2580520Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:32:12.2644730Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2644960Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2708980Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:32:12.2773950Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2774180Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2841010Z Entering 'third_party/flash-attention' 2025-08-26T19:32:12.2907560Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2907770Z url.https://github.com/.insteadof 2025-08-26T19:32:12.2971290Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:32:12.3035470Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3035700Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3103640Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:32:12.3169870Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3238810Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3239030Z Entering 'third_party/flatbuffers' 2025-08-26T19:32:12.3304310Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3304530Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3368960Z Entering 'third_party/fmt' 2025-08-26T19:32:12.3434150Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3434360Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3499270Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:32:12.3563920Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3564140Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3628810Z Entering 'third_party/gloo' 2025-08-26T19:32:12.3693020Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3693270Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3758040Z Entering 'third_party/googletest' 2025-08-26T19:32:12.3822940Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3823160Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3888070Z Entering 'third_party/ideep' 2025-08-26T19:32:12.3951880Z url.https://github.com/.insteadof 2025-08-26T19:32:12.3952110Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4014950Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:32:12.4079780Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4080000Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4148620Z Entering 'third_party/ittapi' 2025-08-26T19:32:12.4215050Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4215270Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4279340Z Entering 'third_party/kineto' 2025-08-26T19:32:12.4344860Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4345280Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4408610Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:32:12.4473490Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4473710Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4537700Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:32:12.4601680Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4601900Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4668040Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:32:12.4733830Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4734050Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4799300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:32:12.4864130Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4864360Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4929960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:32:12.4995330Z url.https://github.com/.insteadof 2025-08-26T19:32:12.4995560Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5058540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:32:12.5122500Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5122720Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5191000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:32:12.5256940Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5257160Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5322300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:32:12.5386430Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5386660Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5452320Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:32:12.5517790Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5518020Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5584100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:32:12.5649240Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5649460Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5716850Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:32:12.5782170Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5782400Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5847140Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:32:12.5911440Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5911660Z url.https://github.com/.insteadof 2025-08-26T19:32:12.5977770Z Entering 'third_party/kleidiai' 2025-08-26T19:32:12.6043490Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6043710Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6108370Z Entering 'third_party/mimalloc' 2025-08-26T19:32:12.6174110Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6174340Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6239130Z Entering 'third_party/nlohmann' 2025-08-26T19:32:12.6305470Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6305700Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6371290Z Entering 'third_party/onnx' 2025-08-26T19:32:12.6438730Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6438960Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6508270Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:32:12.6575610Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6575830Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6643510Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:32:12.6710190Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6710420Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6774260Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:32:12.6838810Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6839230Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6904030Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:32:12.6968940Z url.https://github.com/.insteadof 2025-08-26T19:32:12.6969170Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7033740Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:32:12.7098120Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7098340Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7161620Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:32:12.7225830Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7226050Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7291520Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:32:12.7356470Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7356690Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7420490Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:32:12.7485460Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7486020Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7551130Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:32:12.7616470Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7616700Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7680490Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:32:12.7745690Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7745910Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7811620Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:32:12.7877260Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7877490Z url.https://github.com/.insteadof 2025-08-26T19:32:12.7944410Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:32:12.8008620Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8008860Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8082660Z Entering 'third_party/pocketfft' 2025-08-26T19:32:12.8151450Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8151690Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8217090Z Entering 'third_party/protobuf' 2025-08-26T19:32:12.8281740Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8281970Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8345900Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:32:12.8412290Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8412510Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8477550Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:32:12.8542470Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8542700Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8609550Z Entering 'third_party/psimd' 2025-08-26T19:32:12.8675810Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8676040Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8741360Z Entering 'third_party/pthreadpool' 2025-08-26T19:32:12.8806230Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8806450Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8870380Z Entering 'third_party/pybind11' 2025-08-26T19:32:12.8935710Z url.https://github.com/.insteadof 2025-08-26T19:32:12.8935940Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9001370Z Entering 'third_party/python-peachpy' 2025-08-26T19:32:12.9066840Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9067070Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9131190Z Entering 'third_party/sleef' 2025-08-26T19:32:12.9195730Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9195960Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9261230Z Entering 'third_party/tensorpipe' 2025-08-26T19:32:12.9326370Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9326590Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9389620Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:32:12.9453790Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9454040Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9518810Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:32:12.9583720Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9583940Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9648850Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:32:12.9713830Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9714050Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9778520Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:32:12.9843780Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9844010Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9908020Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:32:12.9973050Z url.https://github.com/.insteadof 2025-08-26T19:32:12.9973280Z url.https://github.com/.insteadof 2025-08-26T19:32:13.0053130Z [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-08-26T19:32:13.0542040Z Entering 'android/libs/fbjni' 2025-08-26T19:32:13.0641740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-26T19:32:13.0676260Z Entering 'third_party/FP16' 2025-08-26T19:32:13.0773710Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-26T19:32:13.0807060Z Entering 'third_party/FXdiv' 2025-08-26T19:32:13.0903690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-26T19:32:13.0937700Z Entering 'third_party/NNPACK' 2025-08-26T19:32:13.1035010Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-26T19:32:13.1069090Z Entering 'third_party/NVTX' 2025-08-26T19:32:13.1165740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-26T19:32:13.1199700Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:32:13.1297610Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-26T19:32:13.1331270Z Entering 'third_party/XNNPACK' 2025-08-26T19:32:13.1428020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-26T19:32:13.1466860Z Entering 'third_party/aiter' 2025-08-26T19:32:13.1565430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-26T19:32:13.1598500Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:32:13.1695490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-26T19:32:13.1732520Z Entering 'third_party/benchmark' 2025-08-26T19:32:13.1830500Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-26T19:32:13.1864980Z Entering 'third_party/composable_kernel' 2025-08-26T19:32:13.1960670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-26T19:32:13.1997420Z Entering 'third_party/cpp-httplib' 2025-08-26T19:32:13.2095130Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-26T19:32:13.2129160Z Entering 'third_party/cpuinfo' 2025-08-26T19:32:13.2225910Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-26T19:32:13.2262650Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:32:13.2360110Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-26T19:32:13.2394150Z Entering 'third_party/cutlass' 2025-08-26T19:32:13.2490930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-26T19:32:13.2527940Z Entering 'third_party/fbgemm' 2025-08-26T19:32:13.2626440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-26T19:32:13.2660400Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:32:13.2759020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-26T19:32:13.2792670Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:32:13.2888060Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-26T19:32:13.2924100Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:32:13.3023190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-26T19:32:13.3056720Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:32:13.3153260Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-26T19:32:13.3190080Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:32:13.3288340Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-26T19:32:13.3322030Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:32:13.3418340Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-26T19:32:13.3451720Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:32:13.3548550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-26T19:32:13.3585320Z Entering 'third_party/flash-attention' 2025-08-26T19:32:13.3682970Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-26T19:32:13.3716150Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:32:13.3813240Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-26T19:32:13.3848530Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:32:13.3946840Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-26T19:32:13.3985180Z Entering 'third_party/flatbuffers' 2025-08-26T19:32:13.4083210Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-26T19:32:13.4118190Z Entering 'third_party/fmt' 2025-08-26T19:32:13.4215200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-26T19:32:13.4249250Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:32:13.4345660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-26T19:32:13.4380090Z Entering 'third_party/gloo' 2025-08-26T19:32:13.4477410Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-26T19:32:13.4511510Z Entering 'third_party/googletest' 2025-08-26T19:32:13.4607540Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:32:13.4641830Z Entering 'third_party/ideep' 2025-08-26T19:32:13.4739660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-26T19:32:13.4771910Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:32:13.4867840Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-26T19:32:13.4905200Z Entering 'third_party/ittapi' 2025-08-26T19:32:13.5003870Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-26T19:32:13.5037760Z Entering 'third_party/kineto' 2025-08-26T19:32:13.5133850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-26T19:32:13.5166760Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:32:13.5264290Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-26T19:32:13.5296620Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:32:13.5393770Z 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-08-26T19:32:13.5428020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:32:13.5525920Z 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-08-26T19:32:13.5559200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:32:13.5655690Z 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-08-26T19:32:13.5690110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:32:13.5788610Z 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-08-26T19:32:13.5821280Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:32:13.5918450Z 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-08-26T19:32:13.5954110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:32:13.6051630Z 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-08-26T19:32:13.6085810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:32:13.6183080Z 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-08-26T19:32:13.6216770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:32:13.6313120Z 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-08-26T19:32:13.6347390Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:32:13.6445420Z 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-08-26T19:32:13.6480920Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:32:13.6577550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-26T19:32:13.6611220Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:32:13.6707500Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-26T19:32:13.6743150Z Entering 'third_party/kleidiai' 2025-08-26T19:32:13.6839620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-26T19:32:13.6874150Z Entering 'third_party/mimalloc' 2025-08-26T19:32:13.6972060Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-26T19:32:13.7006200Z Entering 'third_party/nlohmann' 2025-08-26T19:32:13.7101520Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-26T19:32:13.7135630Z Entering 'third_party/onnx' 2025-08-26T19:32:13.7232790Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-26T19:32:13.7271920Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:32:13.7369940Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-26T19:32:13.7405420Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:32:13.7504240Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-26T19:32:13.7538070Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:32:13.7634430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-26T19:32:13.7667860Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:32:13.7764210Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:32:13.7798760Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:32:13.7895020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-26T19:32:13.7928430Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:32:13.8024350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-26T19:32:13.8058660Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:32:13.8154940Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-08-26T19:32:13.8188270Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:32:13.8284240Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-08-26T19:32:13.8318240Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:32:13.8415880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-08-26T19:32:13.8447490Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:32:13.8543690Z 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-08-26T19:32:13.8577820Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:32:13.8675760Z 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-08-26T19:32:13.8711380Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:32:13.8807670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-26T19:32:13.8849900Z Entering 'third_party/pocketfft' 2025-08-26T19:32:13.8948920Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-26T19:32:13.8983320Z Entering 'third_party/protobuf' 2025-08-26T19:32:13.9079550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-26T19:32:13.9113510Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:32:13.9209650Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-26T19:32:13.9243910Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:32:13.9341590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:32:13.9376720Z Entering 'third_party/psimd' 2025-08-26T19:32:13.9473300Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-26T19:32:13.9507340Z Entering 'third_party/pthreadpool' 2025-08-26T19:32:13.9604300Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-26T19:32:13.9638340Z Entering 'third_party/pybind11' 2025-08-26T19:32:13.9733740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-26T19:32:13.9767920Z Entering 'third_party/python-peachpy' 2025-08-26T19:32:13.9864990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-26T19:32:13.9899470Z Entering 'third_party/sleef' 2025-08-26T19:32:13.9995930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-26T19:32:14.0029790Z Entering 'third_party/tensorpipe' 2025-08-26T19:32:14.0126710Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-26T19:32:14.0159800Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:32:14.0255900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-26T19:32:14.0289140Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:32:14.0385190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-26T19:32:14.0419870Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:32:14.0517230Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-26T19:32:14.0550960Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:32:14.0647350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-26T19:32:14.0679290Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:32:14.0778720Z 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-08-26T19:32:14.0973910Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-08-26T19:32:14.1470560Z Entering 'android/libs/fbjni' 2025-08-26T19:32:14.1555600Z Entering 'third_party/FP16' 2025-08-26T19:32:14.1635660Z Entering 'third_party/FXdiv' 2025-08-26T19:32:14.1717510Z Entering 'third_party/NNPACK' 2025-08-26T19:32:14.1799980Z Entering 'third_party/NVTX' 2025-08-26T19:32:14.1881040Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:32:14.1962020Z Entering 'third_party/XNNPACK' 2025-08-26T19:32:14.2047990Z Entering 'third_party/aiter' 2025-08-26T19:32:14.2129420Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:32:14.2214260Z Entering 'third_party/benchmark' 2025-08-26T19:32:14.2297610Z Entering 'third_party/composable_kernel' 2025-08-26T19:32:14.2382070Z Entering 'third_party/cpp-httplib' 2025-08-26T19:32:14.2464590Z Entering 'third_party/cpuinfo' 2025-08-26T19:32:14.2544730Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:32:14.2625890Z Entering 'third_party/cutlass' 2025-08-26T19:32:14.2710870Z Entering 'third_party/fbgemm' 2025-08-26T19:32:14.2792640Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:32:14.2873760Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:32:14.2955850Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:32:14.3036170Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:32:14.3120230Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:32:14.3203150Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:32:14.3284080Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:32:14.3368030Z Entering 'third_party/flash-attention' 2025-08-26T19:32:14.3449660Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:32:14.3533060Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:32:14.3618000Z Entering 'third_party/flatbuffers' 2025-08-26T19:32:14.3701930Z Entering 'third_party/fmt' 2025-08-26T19:32:14.3782430Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:32:14.3863820Z Entering 'third_party/gloo' 2025-08-26T19:32:14.3944830Z Entering 'third_party/googletest' 2025-08-26T19:32:14.4027360Z Entering 'third_party/ideep' 2025-08-26T19:32:14.4105020Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:32:14.4188660Z Entering 'third_party/ittapi' 2025-08-26T19:32:14.4271670Z Entering 'third_party/kineto' 2025-08-26T19:32:14.4351440Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:32:14.4430600Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:32:14.4512320Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:32:14.4593690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:32:14.4674690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:32:14.4753380Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:32:14.4837430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:32:14.4918890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:32:14.5001750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:32:14.5084330Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:32:14.5168530Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:32:14.5251900Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:32:14.5334810Z Entering 'third_party/kleidiai' 2025-08-26T19:32:14.5417510Z Entering 'third_party/mimalloc' 2025-08-26T19:32:14.5498400Z Entering 'third_party/nlohmann' 2025-08-26T19:32:14.5580460Z Entering 'third_party/onnx' 2025-08-26T19:32:14.5666600Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:32:14.5751780Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:32:14.5834200Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:32:14.5915730Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:32:14.5995770Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:32:14.6075930Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:32:14.6156660Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:32:14.6237260Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:32:14.6316140Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:32:14.6394180Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:32:14.6475740Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:32:14.6557730Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:32:14.6646950Z Entering 'third_party/pocketfft' 2025-08-26T19:32:14.6730640Z Entering 'third_party/protobuf' 2025-08-26T19:32:14.6810770Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:32:14.6890740Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:32:14.6970650Z Entering 'third_party/psimd' 2025-08-26T19:32:14.7052940Z Entering 'third_party/pthreadpool' 2025-08-26T19:32:14.7134020Z Entering 'third_party/pybind11' 2025-08-26T19:32:14.7213340Z Entering 'third_party/python-peachpy' 2025-08-26T19:32:14.7293970Z Entering 'third_party/sleef' 2025-08-26T19:32:14.7375260Z Entering 'third_party/tensorpipe' 2025-08-26T19:32:14.7455440Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:32:14.7537410Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:32:14.7616270Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:32:14.7694940Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:32:14.7771510Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:32:14.7863890Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-08-26T19:32:14.8345450Z Entering 'android/libs/fbjni' 2025-08-26T19:32:14.8428670Z Entering 'third_party/FP16' 2025-08-26T19:32:14.8508430Z Entering 'third_party/FXdiv' 2025-08-26T19:32:14.8588730Z Entering 'third_party/NNPACK' 2025-08-26T19:32:14.8669550Z Entering 'third_party/NVTX' 2025-08-26T19:32:14.8748410Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:32:14.8827070Z Entering 'third_party/XNNPACK' 2025-08-26T19:32:14.8912610Z Entering 'third_party/aiter' 2025-08-26T19:32:14.8992540Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:32:14.9077760Z Entering 'third_party/benchmark' 2025-08-26T19:32:14.9159180Z Entering 'third_party/composable_kernel' 2025-08-26T19:32:14.9243010Z Entering 'third_party/cpp-httplib' 2025-08-26T19:32:14.9323080Z Entering 'third_party/cpuinfo' 2025-08-26T19:32:14.9403220Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:32:14.9482640Z Entering 'third_party/cutlass' 2025-08-26T19:32:14.9565570Z Entering 'third_party/fbgemm' 2025-08-26T19:32:14.9647620Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:32:14.9728460Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:32:14.9809570Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:32:14.9889170Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:32:14.9970190Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:32:15.0050350Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:32:15.0141430Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:32:15.0214580Z Entering 'third_party/flash-attention' 2025-08-26T19:32:15.0294810Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:32:15.0375100Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:32:15.0458270Z Entering 'third_party/flatbuffers' 2025-08-26T19:32:15.0540680Z Entering 'third_party/fmt' 2025-08-26T19:32:15.0620960Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:32:15.0700320Z Entering 'third_party/gloo' 2025-08-26T19:32:15.0780320Z Entering 'third_party/googletest' 2025-08-26T19:32:15.0862170Z Entering 'third_party/ideep' 2025-08-26T19:32:15.0939940Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:32:15.1026210Z Entering 'third_party/ittapi' 2025-08-26T19:32:15.1110560Z Entering 'third_party/kineto' 2025-08-26T19:32:15.1189430Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:32:15.1267820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:32:15.1350800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:32:15.1430730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:32:15.1510580Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:32:15.1588680Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:32:15.1670690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:32:15.1751460Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:32:15.1830790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:32:15.1911640Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:32:15.1992290Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:32:15.2071150Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:32:15.2151760Z Entering 'third_party/kleidiai' 2025-08-26T19:32:15.2231600Z Entering 'third_party/mimalloc' 2025-08-26T19:32:15.2310510Z Entering 'third_party/nlohmann' 2025-08-26T19:32:15.2389640Z Entering 'third_party/onnx' 2025-08-26T19:32:15.2474700Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:32:15.2557290Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:32:15.2637470Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:32:15.2716350Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:32:15.2795260Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:32:15.2892400Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:32:15.2971720Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:32:15.3052250Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:32:15.3132120Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:32:15.3211000Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:32:15.3290480Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:32:15.3373340Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:32:15.3463070Z Entering 'third_party/pocketfft' 2025-08-26T19:32:15.3545000Z Entering 'third_party/protobuf' 2025-08-26T19:32:15.3625160Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:32:15.3707160Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:32:15.3788400Z Entering 'third_party/psimd' 2025-08-26T19:32:15.3868450Z Entering 'third_party/pthreadpool' 2025-08-26T19:32:15.3947790Z Entering 'third_party/pybind11' 2025-08-26T19:32:15.4027810Z Entering 'third_party/python-peachpy' 2025-08-26T19:32:15.4107900Z Entering 'third_party/sleef' 2025-08-26T19:32:15.4188680Z Entering 'third_party/tensorpipe' 2025-08-26T19:32:15.4267830Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:32:15.4346570Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:32:15.4426100Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:32:15.4508800Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:32:15.4591520Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:32:15.4682480Z ##[endgroup] 2025-08-26T19:32:15.4760260Z [command]/usr/bin/git log -1 --format=%H 2025-08-26T19:32:15.4819900Z 262640fd220236042fbf4443cc163c8838c84c3d 2025-08-26T19:32:15.4890610Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2025-08-26T19:32:15.4890850Z if [ -n "${XCODE_VERSION}" ]; then 2025-08-26T19:32:15.4891190Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2025-08-26T19:32:15.4891520Z fi 2025-08-26T19:32:15.5162730Z shell: /bin/bash -e {0} 2025-08-26T19:32:15.5162960Z env: 2025-08-26T19:32:15.5163090Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:15.5163270Z SCCACHE_USE_GHA: false 2025-08-26T19:32:15.5163400Z XCODE_VERSION: 2025-08-26T19:32:15.5163530Z ##[endgroup] 2025-08-26T19:32:15.5356590Z ##[group]Run pytorch/test-infra/.github/actions/setup-python@main 2025-08-26T19:32:15.5356860Z with: 2025-08-26T19:32:15.5356990Z python-version: 3.12.7 2025-08-26T19:32:15.5357240Z pip-requirements-file: .github/requirements/pip-requirements-macOS.txt 2025-08-26T19:32:15.5357500Z env: 2025-08-26T19:32:15.5357640Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:15.5357810Z SCCACHE_USE_GHA: false 2025-08-26T19:32:15.5357960Z ##[endgroup] 2025-08-26T19:32:15.5695650Z Warning: HomeBrew only supports version specified by major and minor, but got 3.12.7 2025-08-26T19:32:16.4938940Z ==> Updating Homebrew... 2025-08-26T19:32:18.5999230Z ==> Homebrew's analytics have entirely moved to our InfluxDB instance in the EU. 2025-08-26T19:32:18.5999740Z We gather less data than before and have destroyed all Google Analytics data: 2025-08-26T19:32:18.6000150Z https://docs.brew.sh/Analytics 2025-08-26T19:32:18.6000520Z Please reconsider re-enabling analytics to help our volunteer maintainers with: 2025-08-26T19:32:18.6000850Z brew analytics on 2025-08-26T19:32:18.6200560Z ==> Homebrew is run entirely by unpaid volunteers. Please consider donating: 2025-08-26T19:32:18.6200980Z https://github.com/Homebrew/brew#donations 2025-08-26T19:32:18.6201180Z 2025-08-26T19:32:19.3136230Z Already up-to-date. 2025-08-26T19:32:20.3851630Z ##[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-08-26T19:32:20.4148980Z Using python at /opt/homebrew/bin/python3.12 to create venv /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:22.3000930Z Installing requirements from .github/requirements/pip-requirements-macOS.txt 2025-08-26T19:32:22.6558560Z Collecting boto3==1.35.42 (from -r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-26T19:32:22.6580120Z Using cached boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-26T19:32:22.7246730Z Collecting cmake==3.27.* (from -r .github/requirements/pip-requirements-macOS.txt (line 2)) 2025-08-26T19:32:22.7262590Z 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-08-26T19:32:22.7417000Z Collecting expecttest==0.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 3)) 2025-08-26T19:32:22.7437190Z Using cached expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-08-26T19:32:22.7588050Z Collecting fbscribelogger==0.1.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-08-26T19:32:22.7602230Z Using cached fbscribelogger-0.1.7-py3-none-any.whl.metadata (684 bytes) 2025-08-26T19:32:22.7763000Z Collecting filelock==3.18.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 5)) 2025-08-26T19:32:22.7783480Z Using cached filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) 2025-08-26T19:32:22.8866530Z Collecting hypothesis==6.56.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-08-26T19:32:22.8881530Z Using cached hypothesis-6.56.4-py3-none-any.whl.metadata (6.1 kB) 2025-08-26T19:32:22.9030410Z Collecting librosa>=0.6.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:22.9045000Z Using cached librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-08-26T19:32:22.9197680Z Collecting mpmath==1.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 8)) 2025-08-26T19:32:22.9229850Z Using cached mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) 2025-08-26T19:32:22.9407710Z Collecting networkx==2.8.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 9)) 2025-08-26T19:32:22.9427990Z Using cached networkx-2.8.7-py3-none-any.whl.metadata (5.1 kB) 2025-08-26T19:32:22.9642920Z Collecting ninja==1.10.2.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 10)) 2025-08-26T19:32:22.9658360Z 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-08-26T19:32:23.0264240Z Collecting numba==0.59.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-08-26T19:32:23.0280170Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.7 kB) 2025-08-26T19:32:23.1106370Z Collecting numpy==1.26.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 12)) 2025-08-26T19:32:23.1130790Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (61 kB) 2025-08-26T19:32:23.1305380Z Collecting opt-einsum>=3.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 13)) 2025-08-26T19:32:23.1324840Z Using cached opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) 2025-08-26T19:32:23.1749380Z Collecting optree==0.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 14)) 2025-08-26T19:32:23.1766130Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (47 kB) 2025-08-26T19:32:23.1934900Z Collecting packaging==23.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 15)) 2025-08-26T19:32:23.1949690Z Using cached packaging-23.1-py3-none-any.whl.metadata (3.1 kB) 2025-08-26T19:32:23.2056440Z Collecting parameterized==0.8.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 16)) 2025-08-26T19:32:23.2076830Z Using cached parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-08-26T19:32:23.2896430Z Collecting pillow==10.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 17)) 2025-08-26T19:32:23.2919950Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (9.2 kB) 2025-08-26T19:32:23.3733070Z Collecting protobuf==5.29.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 18)) 2025-08-26T19:32:23.3749870Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl.metadata (592 bytes) 2025-08-26T19:32:23.4364240Z Collecting psutil==5.9.8 (from -r .github/requirements/pip-requirements-macOS.txt (line 19)) 2025-08-26T19:32:23.4387430Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl.metadata (21 kB) 2025-08-26T19:32:23.4558300Z Collecting pygments==2.15.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 20)) 2025-08-26T19:32:23.4584630Z Using cached Pygments-2.15.0-py3-none-any.whl.metadata (2.5 kB) 2025-08-26T19:32:23.4706310Z Collecting pytest-cpp==2.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-08-26T19:32:23.4726120Z Using cached pytest_cpp-2.3.0-py3-none-any.whl.metadata (5.4 kB) 2025-08-26T19:32:23.4823530Z Collecting pytest-flakefinder==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 22)) 2025-08-26T19:32:23.4837100Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl.metadata (3.3 kB) 2025-08-26T19:32:23.4964990Z Collecting pytest-rerunfailures==10.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 23)) 2025-08-26T19:32:23.4978760Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-08-26T19:32:23.5104540Z Collecting pytest-subtests==0.13.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 24)) 2025-08-26T19:32:23.5118800Z Using cached pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-08-26T19:32:23.5255160Z Collecting pytest-xdist==3.3.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-08-26T19:32:23.5275730Z Using cached pytest_xdist-3.3.1-py3-none-any.whl.metadata (3.1 kB) 2025-08-26T19:32:23.5500250Z Collecting pytest==7.3.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-08-26T19:32:23.5526530Z Using cached pytest-7.3.2-py3-none-any.whl.metadata (8.0 kB) 2025-08-26T19:32:23.5763050Z Collecting pyyaml==6.0.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 27)) 2025-08-26T19:32:23.5778000Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-08-26T19:32:23.6358500Z Collecting scipy==1.12.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 28)) 2025-08-26T19:32:23.6374220Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl.metadata (217 kB) 2025-08-26T19:32:23.7285680Z Collecting setuptools==72.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 29)) 2025-08-26T19:32:23.7306990Z Using cached setuptools-72.1.0-py3-none-any.whl.metadata (6.6 kB) 2025-08-26T19:32:23.7529230Z Collecting sympy==1.13.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 30)) 2025-08-26T19:32:23.7543730Z Using cached sympy-1.13.3-py3-none-any.whl.metadata (12 kB) 2025-08-26T19:32:23.7827690Z Collecting tlparse==0.3.30 (from -r .github/requirements/pip-requirements-macOS.txt (line 31)) 2025-08-26T19:32:23.7842660Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl.metadata (1.9 kB) 2025-08-26T19:32:23.7979340Z Collecting tensorboard==2.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:23.7992810Z Using cached tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-08-26T19:32:23.8131570Z Collecting typing-extensions==4.12.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 33)) 2025-08-26T19:32:23.8158090Z Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) 2025-08-26T19:32:23.8296850Z Collecting unittest-xml-reporting<=3.2.0,>=2.0.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-08-26T19:32:23.8311300Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-26T19:32:23.8470890Z Collecting xdoctest==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-08-26T19:32:23.8485070Z Using cached xdoctest-1.1.0-py3-none-any.whl.metadata (37 kB) 2025-08-26T19:32:23.8965460Z Collecting z3-solver==4.15.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 36)) 2025-08-26T19:32:23.8979830Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl.metadata (778 bytes) 2025-08-26T19:32:24.0999350Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-26T19:32:24.1015090Z Using cached botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-26T19:32:24.1144260Z Collecting jmespath<2.0.0,>=0.7.1 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-26T19:32:24.1158010Z Using cached jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB) 2025-08-26T19:32:24.1303330Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-08-26T19:32:24.1317300Z Using cached s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-26T19:32:24.3923440Z Collecting aiohttp<4.0.0,>=3.10.4 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-08-26T19:32:24.3946230Z Using cached aiohttp-3.12.15-cp312-cp312-macosx_11_0_arm64.whl.metadata (7.7 kB) 2025-08-26T19:32:24.4137590Z Collecting thriftpy2<0.6.0,>=0.5.2 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-08-26T19:32:24.4152270Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.2 kB) 2025-08-26T19:32:24.4326970Z Collecting attrs>=19.2.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-08-26T19:32:24.4340570Z Using cached attrs-25.3.0-py3-none-any.whl.metadata (10 kB) 2025-08-26T19:32:24.4495830Z Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-08-26T19:32:24.4510450Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) 2025-08-26T19:32:24.4864140Z Collecting llvmlite<0.43,>=0.42.0dev0 (from numba==0.59.0->-r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-08-26T19:32:24.4879970Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.8 kB) 2025-08-26T19:32:24.5118250Z Collecting colorama (from pytest-cpp==2.3.0->-r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-08-26T19:32:24.5131840Z Using cached colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) 2025-08-26T19:32:24.5445820Z Collecting execnet>=1.1 (from pytest-xdist==3.3.1->-r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-08-26T19:32:24.5459710Z Using cached execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-08-26T19:32:24.5612640Z Collecting iniconfig (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-08-26T19:32:24.5625960Z Using cached iniconfig-2.1.0-py3-none-any.whl.metadata (2.7 kB) 2025-08-26T19:32:24.5743610Z Collecting pluggy<2.0,>=0.12 (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-08-26T19:32:24.5756550Z Using cached pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB) 2025-08-26T19:32:24.5950930Z Collecting absl-py>=0.4 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:24.5964980Z Using cached absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-08-26T19:32:24.8137530Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:24.8153340Z Using cached grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl.metadata (3.8 kB) 2025-08-26T19:32:24.8834940Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:24.8850470Z Using cached google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-08-26T19:32:24.9004990Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:24.9018650Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-08-26T19:32:24.9160780Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:24.9173800Z Using cached markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-08-26T19:32:24.9482090Z Collecting requests<3,>=2.21.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:24.9495590Z Using cached requests-2.32.5-py3-none-any.whl.metadata (4.9 kB) 2025-08-26T19:32:24.9769020Z 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-08-26T19:32:24.9782690Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-08-26T19:32:24.9944080Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:24.9958060Z Using cached werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-08-26T19:32:25.0120220Z Collecting wheel>=0.26 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:25.0134930Z Using cached wheel-0.45.1-py3-none-any.whl.metadata (2.3 kB) 2025-08-26T19:32:25.0263020Z Collecting six (from xdoctest==1.1.0->-r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-08-26T19:32:25.0277230Z Using cached six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) 2025-08-26T19:32:25.1209970Z Collecting lxml (from unittest-xml-reporting<=3.2.0,>=2.0.0->-r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-08-26T19:32:25.1232270Z Using cached lxml-6.0.1-cp312-cp312-macosx_10_13_universal2.whl.metadata (3.8 kB) 2025-08-26T19:32:25.1371720Z 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-08-26T19:32:25.1385850Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-08-26T19:32:25.1514820Z 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-08-26T19:32:25.1535230Z Using cached aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB) 2025-08-26T19:32:25.1932540Z 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-08-26T19:32:25.1948040Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (18 kB) 2025-08-26T19:32:25.3068340Z 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-08-26T19:32:25.3098870Z Using cached multidict-6.6.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (5.3 kB) 2025-08-26T19:32:25.3387760Z 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-08-26T19:32:25.3402070Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (12 kB) 2025-08-26T19:32:25.5076860Z 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-08-26T19:32:25.5092970Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (73 kB) 2025-08-26T19:32:25.5342070Z 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-08-26T19:32:25.5355720Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) 2025-08-26T19:32:25.5572490Z 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-08-26T19:32:25.5593190Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB) 2025-08-26T19:32:25.5750660Z 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-08-26T19:32:25.5770230Z Using cached cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-08-26T19:32:25.5909600Z 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-08-26T19:32:25.5923190Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-08-26T19:32:25.6050750Z 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-08-26T19:32:25.6064420Z Using cached rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-26T19:32:25.6268450Z 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-08-26T19:32:25.6282220Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-26T19:32:25.6799520Z 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-08-26T19:32:25.6820940Z Using cached charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl.metadata (36 kB) 2025-08-26T19:32:25.6963580Z 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-08-26T19:32:25.6977480Z Using cached idna-3.10-py3-none-any.whl.metadata (10 kB) 2025-08-26T19:32:25.7196400Z 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-08-26T19:32:25.7217210Z Using cached certifi-2025.8.3-py3-none-any.whl.metadata (2.4 kB) 2025-08-26T19:32:25.7402390Z 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-08-26T19:32:25.7416330Z Using cached pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-26T19:32:25.8170990Z 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-08-26T19:32:25.8184720Z Using cached ply-3.11-py2.py3-none-any.whl.metadata (844 bytes) 2025-08-26T19:32:25.8408060Z Collecting audioread>=2.1.9 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:25.8422620Z Using cached audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-26T19:32:25.8943020Z Collecting scikit-learn>=1.1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:25.8959530Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl.metadata (11 kB) 2025-08-26T19:32:25.9154910Z Collecting joblib>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:25.9175970Z Using cached joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-26T19:32:25.9299040Z Collecting decorator>=4.3.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:25.9325840Z Using cached decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-08-26T19:32:25.9439860Z Collecting soundfile>=0.12.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:25.9453070Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl.metadata (16 kB) 2025-08-26T19:32:25.9576300Z Collecting pooch>=1.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:25.9595560Z Using cached pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-08-26T19:32:25.9933300Z Collecting soxr>=0.3.2 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:25.9954400Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl.metadata (5.6 kB) 2025-08-26T19:32:26.0075870Z Collecting lazy_loader>=0.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:26.0095830Z Using cached lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-08-26T19:32:26.0467060Z Collecting msgpack>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:26.0494590Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.4 kB) 2025-08-26T19:32:26.0820850Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:26.0834270Z Using cached platformdirs-4.4.0-py3-none-any.whl.metadata (12 kB) 2025-08-26T19:32:26.1084860Z 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-08-26T19:32:26.1098200Z Using cached oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-08-26T19:32:26.1323290Z 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-08-26T19:32:26.1343360Z Using cached threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-08-26T19:32:26.1903230Z Collecting cffi>=1.0 (from soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:26.1933490Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (1.5 kB) 2025-08-26T19:32:26.2048830Z Collecting pycparser (from cffi>=1.0->soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-08-26T19:32:26.2062470Z Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-08-26T19:32:26.2405700Z Collecting MarkupSafe>=2.1.1 (from werkzeug>=1.0.1->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-08-26T19:32:26.2420360Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.0 kB) 2025-08-26T19:32:26.2543940Z Using cached boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-26T19:32:26.2573890Z Using cached expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-08-26T19:32:26.2604560Z Using cached fbscribelogger-0.1.7-py3-none-any.whl (6.9 kB) 2025-08-26T19:32:26.2624430Z Using cached typing_extensions-4.12.2-py3-none-any.whl (37 kB) 2025-08-26T19:32:26.2644600Z Using cached filelock-3.18.0-py3-none-any.whl (16 kB) 2025-08-26T19:32:26.2666790Z Using cached hypothesis-6.56.4-py3-none-any.whl (395 kB) 2025-08-26T19:32:26.2710230Z Using cached mpmath-1.3.0-py3-none-any.whl (536 kB) 2025-08-26T19:32:26.2782200Z Using cached networkx-2.8.7-py3-none-any.whl (2.0 MB) 2025-08-26T19:32:26.2882970Z 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-08-26T19:32:26.2909460Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB) 2025-08-26T19:32:26.3036680Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl (13.7 MB) 2025-08-26T19:32:26.3398120Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (305 kB) 2025-08-26T19:32:26.3427450Z Using cached packaging-23.1-py3-none-any.whl (48 kB) 2025-08-26T19:32:26.3449300Z Using cached parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-08-26T19:32:26.3465170Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB) 2025-08-26T19:32:26.3592140Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl (417 kB) 2025-08-26T19:32:26.3639890Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl (249 kB) 2025-08-26T19:32:26.3663950Z Using cached Pygments-2.15.0-py3-none-any.whl (1.1 MB) 2025-08-26T19:32:26.3721210Z Using cached pytest_cpp-2.3.0-py3-none-any.whl (14 kB) 2025-08-26T19:32:26.3737490Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl (4.6 kB) 2025-08-26T19:32:26.3755700Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-08-26T19:32:26.3770370Z Using cached pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-08-26T19:32:26.3784700Z Using cached pytest_xdist-3.3.1-py3-none-any.whl (41 kB) 2025-08-26T19:32:26.3805880Z Using cached pytest-7.3.2-py3-none-any.whl (320 kB) 2025-08-26T19:32:26.3839390Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl (173 kB) 2025-08-26T19:32:26.3868130Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl (31.4 MB) 2025-08-26T19:32:26.4494880Z Using cached setuptools-72.1.0-py3-none-any.whl (2.3 MB) 2025-08-26T19:32:26.4618140Z Using cached sympy-1.13.3-py3-none-any.whl (6.2 MB) 2025-08-26T19:32:26.4803270Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl (2.0 MB) 2025-08-26T19:32:26.4907130Z Using cached tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-08-26T19:32:26.5074790Z Using cached xdoctest-1.1.0-py3-none-any.whl (135 kB) 2025-08-26T19:32:26.5093980Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl (37.5 MB) 2025-08-26T19:32:26.5890520Z 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-08-26T19:32:27.0036750Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl (20 kB) 2025-08-26T19:32:27.0053270Z Using cached aiohttp-3.12.15-cp312-cp312-macosx_11_0_arm64.whl (469 kB) 2025-08-26T19:32:27.0092980Z Using cached botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-26T19:32:27.1491320Z Using cached google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-08-26T19:32:27.1556250Z Using cached cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-08-26T19:32:27.1575210Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-08-26T19:32:27.1596440Z Using cached jmespath-1.0.1-py3-none-any.whl (20 kB) 2025-08-26T19:32:27.1619980Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl (28.8 MB) 2025-08-26T19:32:27.4694690Z Using cached multidict-6.6.4-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-08-26T19:32:27.4732130Z Using cached pluggy-1.6.0-py3-none-any.whl (20 kB) 2025-08-26T19:32:27.4767010Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) 2025-08-26T19:32:27.4792350Z Using cached requests-2.32.5-py3-none-any.whl (64 kB) 2025-08-26T19:32:27.4810740Z Using cached charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl (205 kB) 2025-08-26T19:32:27.4839260Z Using cached idna-3.10-py3-none-any.whl (70 kB) 2025-08-26T19:32:27.4856280Z Using cached rsa-4.9.1-py3-none-any.whl (34 kB) 2025-08-26T19:32:27.4877150Z Using cached s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-26T19:32:27.4900780Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) 2025-08-26T19:32:27.4917450Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-08-26T19:32:27.4931520Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (833 kB) 2025-08-26T19:32:27.4981640Z Using cached ply-3.11-py2.py3-none-any.whl (49 kB) 2025-08-26T19:32:27.5002840Z Using cached six-1.17.0-py2.py3-none-any.whl (11 kB) 2025-08-26T19:32:27.5020970Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB) 2025-08-26T19:32:27.5044850Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl (89 kB) 2025-08-26T19:32:27.5062220Z Using cached librosa-0.11.0-py3-none-any.whl (260 kB) 2025-08-26T19:32:27.5091850Z Using cached opt_einsum-3.4.0-py3-none-any.whl (71 kB) 2025-08-26T19:32:27.5110000Z Using cached absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-08-26T19:32:27.5135600Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-08-26T19:32:27.5153970Z Using cached aiosignal-1.4.0-py3-none-any.whl (7.5 kB) 2025-08-26T19:32:27.5172320Z Using cached attrs-25.3.0-py3-none-any.whl (63 kB) 2025-08-26T19:32:27.5191380Z Using cached audioread-3.0.1-py3-none-any.whl (23 kB) 2025-08-26T19:32:27.5206740Z Using cached certifi-2025.8.3-py3-none-any.whl (161 kB) 2025-08-26T19:32:27.5230930Z Using cached decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-08-26T19:32:27.5250000Z Using cached execnet-2.1.1-py3-none-any.whl (40 kB) 2025-08-26T19:32:27.5271310Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (46 kB) 2025-08-26T19:32:27.5288420Z Using cached grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl (11.0 MB) 2025-08-26T19:32:27.6246280Z Using cached joblib-1.5.1-py3-none-any.whl (307 kB) 2025-08-26T19:32:27.6307490Z Using cached lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-08-26T19:32:27.6323450Z Using cached markdown-3.8.2-py3-none-any.whl (106 kB) 2025-08-26T19:32:27.6345960Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (79 kB) 2025-08-26T19:32:27.6363010Z Using cached pooch-1.8.2-py3-none-any.whl (64 kB) 2025-08-26T19:32:27.6392530Z Using cached platformdirs-4.4.0-py3-none-any.whl (18 kB) 2025-08-26T19:32:27.6411400Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-08-26T19:32:27.6433480Z Using cached pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-08-26T19:32:27.6456280Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-08-26T19:32:27.6479430Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-08-26T19:32:27.6495250Z Using cached oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-08-26T19:32:27.6519880Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl (8.6 MB) 2025-08-26T19:32:27.7314360Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl (1.1 MB) 2025-08-26T19:32:27.7444050Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl (178 kB) 2025-08-26T19:32:27.7466190Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl (156 kB) 2025-08-26T19:32:27.7490470Z Using cached threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-08-26T19:32:27.7517220Z Using cached werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-08-26T19:32:27.7540000Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl (12 kB) 2025-08-26T19:32:27.7558890Z Using cached wheel-0.45.1-py3-none-any.whl (72 kB) 2025-08-26T19:32:27.7576300Z Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2025-08-26T19:32:27.7596830Z Using cached iniconfig-2.1.0-py3-none-any.whl (6.0 kB) 2025-08-26T19:32:27.7612670Z Using cached lxml-6.0.1-cp312-cp312-macosx_10_13_universal2.whl (8.4 MB) 2025-08-26T19:32:27.8456960Z Using cached pycparser-2.22-py3-none-any.whl (117 kB) 2025-08-26T19:32:28.1327310Z 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-08-26T19:32:43.9570520Z 2025-08-26T19:32:43.9610000Z Successfully installed MarkupSafe-3.0.2 absl-py-2.3.1 aiohappyeyeballs-2.6.1 aiohttp-3.12.15 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.8.3 cffi-1.17.1 charset_normalizer-3.4.3 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.18.0 frozenlist-1.7.0 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.74.0 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.1 markdown-3.8.2 mpmath-1.3.0 msgpack-1.1.1 multidict-6.6.4 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.4.0 pluggy-1.6.0 ply-3.11 pooch-1.8.2 propcache-0.3.2 protobuf-5.29.4 psutil-5.9.8 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.5 requests-oauthlib-2.0.0 rsa-4.9.1 s3transfer-0.10.4 scikit-learn-1.7.1 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.15.1.0 2025-08-26T19:32:43.9947390Z 2025-08-26T19:32:43.9948750Z [notice] A new release of pip is available: 25.1.1 -> 25.2 2025-08-26T19:32:43.9949220Z [notice] To update, run: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/python -m pip install --upgrade pip 2025-08-26T19:32:44.6222500Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-08-26T19:32:44.6222760Z with: 2025-08-26T19:32:44.6222860Z timeout_minutes: 5 2025-08-26T19:32:44.6222990Z max_attempts: 3 2025-08-26T19:32:44.6223110Z retry_wait_seconds: 90 2025-08-26T19:32:44.6225410Z 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-08-26T19:32:44.6227900Z polling_interval_seconds: 1 2025-08-26T19:32:44.6228050Z warning_on_retry: true 2025-08-26T19:32:44.6228200Z continue_on_error: false 2025-08-26T19:32:44.6228330Z env: 2025-08-26T19:32:44.6228450Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:44.6228610Z SCCACHE_USE_GHA: false 2025-08-26T19:32:44.6228810Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:44.6229030Z ##[endgroup] 2025-08-26T19:32:44.6899770Z + DOWNLOAD_SCCACHE=0 2025-08-26T19:32:44.6900480Z + SCCACHE_VERSION=0.4.1 2025-08-26T19:32:44.6900730Z + LOCAL_PATH=/usr/local/bin 2025-08-26T19:32:44.6900950Z + '[' '!' -f /usr/local/bin/sccache ']' 2025-08-26T19:32:44.6902830Z ++ /usr/local/bin/sccache --version 2025-08-26T19:32:44.6905850Z ++ cut '-d ' -f2 2025-08-26T19:32:44.6933640Z + LOCAL_VERSION=0.4.1 2025-08-26T19:32:44.6933810Z + '[' 0.4.1 '!=' 0.4.1 ']' 2025-08-26T19:32:44.6933970Z + '[' 0 == 1 ']' 2025-08-26T19:32:44.6934160Z + [[ false == \t\r\u\e ]] 2025-08-26T19:32:44.6934400Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2025-08-26T19:32:44.6935020Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2025-08-26T19:32:44.6947400Z + echo /usr/local/bin 2025-08-26T19:32:45.6926450Z Command completed after 1 attempt(s). 2025-08-26T19:32:45.7097880Z Prepare all required actions 2025-08-26T19:32:45.7162710Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-26T19:32:45.7162940Z with: 2025-08-26T19:32:45.7163280Z github-token: *** 2025-08-26T19:32:45.7163440Z env: 2025-08-26T19:32:45.7163580Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:45.7163770Z SCCACHE_USE_GHA: false 2025-08-26T19:32:45.7164030Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:45.7164340Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:45.7164570Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:45.7164740Z ##[endgroup] 2025-08-26T19:32:45.7186480Z ##[group]Run set -eux 2025-08-26T19:32:45.7186660Z set -eux 2025-08-26T19:32:45.7186940Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-26T19:32:45.7204400Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:32:45.7204640Z env: 2025-08-26T19:32:45.7204860Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:45.7205110Z SCCACHE_USE_GHA: false 2025-08-26T19:32:45.7205820Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:45.7206720Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:45.7207540Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:45.7208300Z GITHUB_TOKEN: *** 2025-08-26T19:32:45.7208720Z ##[endgroup] 2025-08-26T19:32:45.7425130Z + python3 .github/scripts/get_workflow_job_id.py 17248463647 i-0f9cbdd490cee7b28 2025-08-26T19:32:46.2073930Z Setting output job-id=48944189734 2025-08-26T19:32:46.2174200Z Setting output job-name=macos-py3-arm64 / build 2025-08-26T19:32:46.2510240Z Prepare all required actions 2025-08-26T19:32:46.2510860Z Getting action download info 2025-08-26T19:32:46.3476490Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-26T19:32:46.6672030Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-26T19:32:46.6672250Z with: 2025-08-26T19:32:46.6672670Z github-token: *** 2025-08-26T19:32:46.6673440Z 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-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-08-26T19:32:46.6674420Z job-name: macos-py3-arm64 / build 2025-08-26T19:32:46.6674600Z env: 2025-08-26T19:32:46.6674750Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:46.6674970Z SCCACHE_USE_GHA: false 2025-08-26T19:32:46.6675190Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:46.6675490Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:46.6675720Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:46.6675890Z ##[endgroup] 2025-08-26T19:32:46.6700130Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-26T19:32:46.6700310Z with: 2025-08-26T19:32:46.6700430Z shell: bash 2025-08-26T19:32:46.6700580Z timeout_minutes: 10 2025-08-26T19:32:46.6700720Z max_attempts: 5 2025-08-26T19:32:46.6700850Z retry_wait_seconds: 30 2025-08-26T19:32:46.6701330Z 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.2 2025-08-26T19:32:46.6701840Z polling_interval_seconds: 1 2025-08-26T19:32:46.6702010Z warning_on_retry: true 2025-08-26T19:32:46.6702160Z continue_on_error: false 2025-08-26T19:32:46.6702340Z env: 2025-08-26T19:32:46.6702470Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:46.6702660Z SCCACHE_USE_GHA: false 2025-08-26T19:32:46.6702860Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:46.6703130Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:46.6703340Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:46.6703600Z GITHUB_TOKEN: *** 2025-08-26T19:32:46.6703730Z ##[endgroup] 2025-08-26T19:32:46.7367250Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-26T19:32:46.9336880Z Collecting requests==2.27.1 2025-08-26T19:32:46.9368150Z Using cached requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-26T19:32:46.9412790Z Requirement already satisfied: pyyaml==6.0.2 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages (6.0.2) 2025-08-26T19:32:46.9546170Z Collecting urllib3<1.27,>=1.21.1 (from requests==2.27.1) 2025-08-26T19:32:46.9574110Z Using cached urllib3-1.26.20-py2.py3-none-any.whl.metadata (50 kB) 2025-08-26T19:32:46.9648230Z Requirement already satisfied: certifi>=2017.4.17 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages (from requests==2.27.1) (2025.8.3) 2025-08-26T19:32:47.0004560Z Collecting charset-normalizer~=2.0.0 (from requests==2.27.1) 2025-08-26T19:32:47.0020130Z Using cached charset_normalizer-2.0.12-py3-none-any.whl.metadata (11 kB) 2025-08-26T19:32:47.0063210Z Requirement already satisfied: idna<4,>=2.5 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages (from requests==2.27.1) (3.10) 2025-08-26T19:32:47.0095690Z Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-26T19:32:47.0122680Z Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) 2025-08-26T19:32:47.0142410Z Using cached urllib3-1.26.20-py2.py3-none-any.whl (144 kB) 2025-08-26T19:32:47.0901040Z Installing collected packages: urllib3, charset-normalizer, requests 2025-08-26T19:32:47.0903460Z Attempting uninstall: urllib3 2025-08-26T19:32:47.0915410Z Found existing installation: urllib3 2.5.0 2025-08-26T19:32:47.0939510Z Uninstalling urllib3-2.5.0: 2025-08-26T19:32:47.0948560Z Successfully uninstalled urllib3-2.5.0 2025-08-26T19:32:47.1402640Z Attempting uninstall: charset-normalizer 2025-08-26T19:32:47.1423390Z Found existing installation: charset-normalizer 3.4.3 2025-08-26T19:32:47.1441940Z Uninstalling charset-normalizer-3.4.3: 2025-08-26T19:32:47.1451050Z Successfully uninstalled charset-normalizer-3.4.3 2025-08-26T19:32:47.1639250Z Attempting uninstall: requests 2025-08-26T19:32:47.1653050Z Found existing installation: requests 2.32.5 2025-08-26T19:32:47.1668040Z Uninstalling requests-2.32.5: 2025-08-26T19:32:47.1673650Z Successfully uninstalled requests-2.32.5 2025-08-26T19:32:47.1913820Z 2025-08-26T19:32:47.1948160Z Successfully installed charset-normalizer-2.0.12 requests-2.27.1 urllib3-1.26.20 2025-08-26T19:32:47.1969840Z 2025-08-26T19:32:47.1970100Z [notice] A new release of pip is available: 25.1.1 -> 25.2 2025-08-26T19:32:47.1970420Z [notice] To update, run: pip install --upgrade pip 2025-08-26T19:32:47.7391150Z Command completed after 1 attempt(s). 2025-08-26T19:32:47.7526670Z ##[group]Run set -x 2025-08-26T19:32:47.7527430Z set -x 2025-08-26T19:32:47.7528020Z  2025-08-26T19:32:47.7529020Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T19:32:47.7530300Z # in runner workspace 2025-08-26T19:32:47.7531250Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-26T19:32:47.7597720Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:32:47.7598550Z env: 2025-08-26T19:32:47.7599060Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:47.7599700Z SCCACHE_USE_GHA: false 2025-08-26T19:32:47.7600430Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:47.7601420Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:47.7602180Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:47.7602720Z ##[endgroup] 2025-08-26T19:32:47.7938730Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2025-08-26T19:32:47.8168360Z Setting output branch=main 2025-08-26T19:32:47.8245400Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T19:32:47.8245710Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-26T19:32:47.8245950Z echo "Job name: ${JOB_NAME}" 2025-08-26T19:32:47.8246170Z  2025-08-26T19:32:47.8246450Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-26T19:32:47.8246810Z # in runner workspace 2025-08-26T19:32:47.8247140Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-26T19:32:47.8247490Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-26T19:32:47.8247730Z  --job-name "${JOB_NAME}" \ 2025-08-26T19:32:47.8247960Z  --test-matrix "{ include: [ 2025-08-26T19:32:47.8248290Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2025-08-26T19:32:47.8248730Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2025-08-26T19:32:47.8249150Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2025-08-26T19:32:47.8249540Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, 2025-08-26T19:32:47.8249910Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, 2025-08-26T19:32:47.8250170Z ]} 2025-08-26T19:32:47.8250330Z " \ 2025-08-26T19:32:47.8250490Z  --selected-test-configs "" \ 2025-08-26T19:32:47.8250720Z  --pr-number "${PR_NUMBER}" \ 2025-08-26T19:32:47.8250930Z  --tag "${TAG}" \ 2025-08-26T19:32:47.8251130Z  --event-name "${EVENT_NAME}" \ 2025-08-26T19:32:47.8251570Z  --schedule "${SCHEDULE}" \ 2025-08-26T19:32:47.8251790Z  --branch "${HEAD_BRANCH}" 2025-08-26T19:32:47.8269630Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:32:47.8269850Z env: 2025-08-26T19:32:47.8270020Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:47.8270210Z SCCACHE_USE_GHA: false 2025-08-26T19:32:47.8270450Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:47.8270750Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:47.8271020Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:47.8271490Z GITHUB_TOKEN: *** 2025-08-26T19:32:47.8271660Z JOB_NAME: macos-py3-arm64 / build 2025-08-26T19:32:47.8272000Z PR_NUMBER: 2025-08-26T19:32:47.8272140Z TAG: 2025-08-26T19:32:47.8272270Z EVENT_NAME: push 2025-08-26T19:32:47.8272420Z SCHEDULE: 2025-08-26T19:32:47.8272560Z HEAD_BRANCH: main 2025-08-26T19:32:47.8272710Z ##[endgroup] 2025-08-26T19:32:47.8436790Z Workflow: trunk 2025-08-26T19:32:47.8437060Z Job name: macos-py3-arm64 / build 2025-08-26T19:32:48.1074660Z Setting output keep-going=True 2025-08-26T19:32:48.1075000Z Setting output ci-verbose-test-logs=False 2025-08-26T19:32:48.1075340Z Setting output ci-test-showlocals=False 2025-08-26T19:32:48.1075640Z Setting output ci-no-test-timeout=False 2025-08-26T19:32:48.1075930Z Setting output ci-no-td=False 2025-08-26T19:32:48.1076210Z Setting output ci-td-distributed=False 2025-08-26T19:32:48.1076520Z Setting output is-unstable=False 2025-08-26T19:32:48.1076810Z Setting output reenabled-issues= 2025-08-26T19:32:48.1078080Z 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-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]} 2025-08-26T19:32:48.1079460Z Setting output is-test-matrix-empty=False 2025-08-26T19:32:48.1197030Z ##[group]Run echo "Filtered matrix:" 2025-08-26T19:32:48.1197290Z echo "Filtered matrix:" 2025-08-26T19:32:48.1198260Z 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-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]}" 2025-08-26T19:32:48.1199190Z  2025-08-26T19:32:48.1199370Z echo 2025-08-26T19:32:48.1199570Z echo "Is the current job unstable? False" 2025-08-26T19:32:48.1199810Z  2025-08-26T19:32:48.1199940Z echo 2025-08-26T19:32:48.1200140Z echo "Is keep-going label set? True" 2025-08-26T19:32:48.1200370Z  2025-08-26T19:32:48.1200520Z echo 2025-08-26T19:32:48.1200680Z echo "Reenabled issues? " 2025-08-26T19:32:48.1219390Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:32:48.1219660Z env: 2025-08-26T19:32:48.1219820Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:48.1220080Z SCCACHE_USE_GHA: false 2025-08-26T19:32:48.1220340Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:48.1220690Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:48.1220950Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:48.1221150Z ##[endgroup] 2025-08-26T19:32:48.1396590Z Filtered matrix: 2025-08-26T19:32:48.1397880Z {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-14}, {config: mps, shard: 1, num_shards: 1, runner: macos-m2-15}]} 2025-08-26T19:32:48.1398690Z 2025-08-26T19:32:48.1398780Z Is the current job unstable? False 2025-08-26T19:32:48.1398910Z 2025-08-26T19:32:48.1399010Z Is keep-going label set? True 2025-08-26T19:32:48.1399130Z 2025-08-26T19:32:48.1399190Z Reenabled issues? 2025-08-26T19:32:48.1425690Z ##[group]Run # TODO: Remove me later, and properly activate venv 2025-08-26T19:32:48.1426000Z # TODO: Remove me later, and properly activate venv 2025-08-26T19:32:48.1426250Z PATH="$VENV_PATH/bin:$PATH" 2025-08-26T19:32:48.1426430Z export PATH 2025-08-26T19:32:48.1426570Z  2025-08-26T19:32:48.1426830Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2025-08-26T19:32:48.1427400Z # it hangs or timeout at initialization. The cache will be started automatically 2025-08-26T19:32:48.1427720Z export SKIP_SCCACHE_INITIALIZATION=1 2025-08-26T19:32:48.1427950Z .ci/pytorch/macos-build.sh 2025-08-26T19:32:48.1443920Z shell: /bin/bash -e {0} 2025-08-26T19:32:48.1444070Z env: 2025-08-26T19:32:48.1444260Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:32:48.1444460Z SCCACHE_USE_GHA: false 2025-08-26T19:32:48.1444740Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:32:48.1445060Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:32:48.1445290Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:32:48.1445460Z OUR_GITHUB_JOB_ID: 48944189734 2025-08-26T19:32:48.1445640Z ##[endgroup] 2025-08-26T19:32:48.1918580Z +++ [[ macos-py3-arm64 == *rocm* ]] 2025-08-26T19:32:48.1918880Z +++ BUILD_TEST_LIBTORCH=0 2025-08-26T19:32:48.1921430Z ++ sysctl -a 2025-08-26T19:32:48.1921750Z ++ grep machdep.cpu 2025-08-26T19:32:48.2037270Z machdep.cpu.cores_per_package: 8 2025-08-26T19:32:48.2037490Z machdep.cpu.core_count: 8 2025-08-26T19:32:48.2037710Z machdep.cpu.logical_per_package: 8 2025-08-26T19:32:48.2037920Z machdep.cpu.thread_count: 8 2025-08-26T19:32:48.2038110Z machdep.cpu.brand_string: Apple M1 2025-08-26T19:32:48.2038520Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2025-08-26T19:32:48.2038740Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2025-08-26T19:32:48.2038950Z ++ export CXX=clang++ 2025-08-26T19:32:48.2039100Z ++ CXX=clang++ 2025-08-26T19:32:48.2039280Z ++ export CC=clang 2025-08-26T19:32:48.2039440Z ++ CC=clang 2025-08-26T19:32:48.2042270Z ++ dirname .ci/pytorch/macos-build.sh 2025-08-26T19:32:48.2051310Z + source .ci/pytorch/common-build.sh 2025-08-26T19:32:48.2062190Z ++ [[ macos-py3-arm64 != *win-* ]] 2025-08-26T19:32:48.2067310Z ++++ dirname .ci/pytorch/common-build.sh 2025-08-26T19:32:48.2079830Z +++ cd .ci/pytorch 2025-08-26T19:32:48.2080080Z +++ pwd -P 2025-08-26T19:32:48.2081310Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2025-08-26T19:32:48.2081610Z ++ [[ macos-py3-arm64 == *-pch* ]] 2025-08-26T19:32:48.2081800Z ++ which sccache 2025-08-26T19:32:48.2102940Z ++ [[ -z ossci-compiler-cache-circleci-v2 ]] 2025-08-26T19:32:48.2103180Z ++ sccache --stop-server 2025-08-26T19:32:48.2150400Z ++ true 2025-08-26T19:32:48.2150560Z ++ rm -f /Users/ec2-user/sccache_error.log 2025-08-26T19:32:48.2174620Z ++ trap_add sccache_epilogue EXIT 2025-08-26T19:32:48.2174820Z ++ trap_add_cmd=sccache_epilogue 2025-08-26T19:32:48.2175690Z ++ shift 2025-08-26T19:32:48.2175850Z ++ for trap_add_name in '"$@"' 2025-08-26T19:32:48.2180160Z ++++ trap -p EXIT 2025-08-26T19:32:48.2181180Z +++ eval 'extract_trap_cmd ' 2025-08-26T19:32:48.2181370Z ++++ extract_trap_cmd 2025-08-26T19:32:48.2181520Z ++++ printf '%s\n' '' 2025-08-26T19:32:48.2181720Z +++ printf '%s\n' sccache_epilogue 2025-08-26T19:32:48.2183140Z ++ trap -- ' 2025-08-26T19:32:48.2183410Z sccache_epilogue' EXIT 2025-08-26T19:32:48.2183590Z ++ [[ -n 1 ]] 2025-08-26T19:32:48.2183830Z Skipping sccache server initialization, setting environment variables 2025-08-26T19:32:48.2184230Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2025-08-26T19:32:48.2184560Z ++ export SCCACHE_IDLE_TIMEOUT=0 2025-08-26T19:32:48.2184760Z ++ SCCACHE_IDLE_TIMEOUT=0 2025-08-26T19:32:48.2184990Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-08-26T19:32:48.2185280Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-08-26T19:32:48.2189720Z ++ export RUST_LOG=sccache::server=error 2025-08-26T19:32:48.2189930Z ++ RUST_LOG=sccache::server=error 2025-08-26T19:32:48.2190110Z ++ sccache --zero-stats 2025-08-26T19:32:48.5057980Z Compile requests 0 2025-08-26T19:32:48.5058370Z Compile requests executed 0 2025-08-26T19:32:48.5058660Z Cache hits 0 2025-08-26T19:32:48.5058960Z Cache misses 0 2025-08-26T19:32:48.5159380Z Cache timeouts 0 2025-08-26T19:32:48.5159660Z Cache read errors 0 2025-08-26T19:32:48.5159920Z Forced recaches 0 2025-08-26T19:32:48.5160200Z Cache write errors 0 2025-08-26T19:32:48.5160460Z Compilation failures 0 2025-08-26T19:32:48.5160710Z Cache errors 0 2025-08-26T19:32:48.5160990Z Non-cacheable compilations 0 2025-08-26T19:32:48.5161250Z Non-cacheable calls 0 2025-08-26T19:32:48.5161520Z Non-compilation calls 0 2025-08-26T19:32:48.5161770Z Unsupported compiler calls 0 2025-08-26T19:32:48.5162060Z Average cache write 0.000 s 2025-08-26T19:32:48.5162340Z Average compiler 0.000 s 2025-08-26T19:32:48.5162610Z Average cache read hit 0.000 s 2025-08-26T19:32:48.5162890Z Failed distributed compilations 0 2025-08-26T19:32:48.5163310Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-08-26T19:32:48.5163740Z Version (client) 0.4.1 2025-08-26T19:32:48.5163990Z ++ which ccache 2025-08-26T19:32:48.5164190Z + '[' -z true ']' 2025-08-26T19:32:48.5164370Z + which sccache 2025-08-26T19:32:48.5164530Z ++ mktemp -d 2025-08-26T19:32:48.5164850Z + tmp_dir=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK 2025-08-26T19:32:48.5165230Z + trap 'rm -rfv ${tmp_dir}' EXIT 2025-08-26T19:32:48.5165710Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:32:48.5166410Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:32:48.5167010Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:32:48.5180990Z + binary=clang++ 2025-08-26T19:32:48.5184870Z ++ which clang++ 2025-08-26T19:32:48.5199900Z ++ which clang++ 2025-08-26T19:32:48.5211900Z + 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-08-26T19:32:48.5281340Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:32:48.5311950Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:32:48.5312590Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:32:48.5315670Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:32:48.5328710Z + binary=clang 2025-08-26T19:32:48.5332260Z ++ which clang 2025-08-26T19:32:48.5346600Z ++ which clang 2025-08-26T19:32:48.5358010Z + 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-08-26T19:32:48.5359310Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:32:48.5374440Z + export PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK:/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/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-08-26T19:32:48.5377440Z + PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK:/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/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-08-26T19:32:48.5378900Z + print_cmake_info 2025-08-26T19:32:48.5379270Z ++ which cmake 2025-08-26T19:32:48.5389020Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/cmake 2025-08-26T19:32:48.5389530Z + echo /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/cmake 2025-08-26T19:32:48.5390000Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/cmake 2025-08-26T19:32:48.5392430Z ++ dirname /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/cmake 2025-08-26T19:32:48.5403970Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin 2025-08-26T19:32:48.5404480Z + ls -la /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/../lib 2025-08-26T19:32:48.5437710Z total 0 2025-08-26T19:32:48.5437930Z drwxr-xr-x 3 ec2-user staff 96 Aug 26 19:32 . 2025-08-26T19:32:48.5438230Z drwxr-xr-x 8 ec2-user staff 256 Aug 26 19:32 .. 2025-08-26T19:32:48.5438550Z drwxr-xr-x 3 ec2-user staff 96 Aug 26 19:32 python3.12 2025-08-26T19:32:48.5439540Z + [[ macos-py3-arm64 == *\d\i\s\t\r\i\b\u\t\e\d* ]] 2025-08-26T19:32:48.5439830Z + USE_DISTRIBUTED=0 2025-08-26T19:32:48.5440000Z + USE_OPENMP=1 2025-08-26T19:32:48.5440180Z + MACOSX_DEPLOYMENT_TARGET=11.0 2025-08-26T19:32:48.5440390Z + WERROR=1 2025-08-26T19:32:48.5440540Z + BUILD_TEST=OFF 2025-08-26T19:32:48.5440700Z + USE_PYTORCH_METAL=1 2025-08-26T19:32:48.5440970Z + python setup.py bdist_wheel --plat-name macosx_11_0_arm64 2025-08-26T19:32:48.6618050Z Building wheel torch-2.9.0a0+git262640f 2025-08-26T19:32:49.1103270Z Found cmake (/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/cmake) version: 3.27.9 (>=3.27) 2025-08-26T19:32:49.2020170Z -- Building version 2.9.0a0+git262640f 2025-08-26T19:32:50.1484640Z 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-1756236735/lib/python3.12/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/python -DPython_NumPy_INCLUDE_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages/numpy/core/include -DTORCH_BUILD_VERSION=2.9.0a0+git262640f -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2025-08-26T19:32:50.4515160Z -- The CXX compiler identification is AppleClang 15.0.0.15000309 2025-08-26T19:32:50.5626240Z -- The C compiler identification is AppleClang 15.0.0.15000309 2025-08-26T19:32:50.6229080Z -- Detecting CXX compiler ABI info 2025-08-26T19:32:50.8869550Z -- Detecting CXX compiler ABI info - done 2025-08-26T19:32:50.8908620Z -- Check for working CXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ - skipped 2025-08-26T19:32:50.8910270Z -- Detecting CXX compile features 2025-08-26T19:32:50.8913970Z -- Detecting CXX compile features - done 2025-08-26T19:32:50.9493090Z -- Detecting C compiler ABI info 2025-08-26T19:32:51.2265170Z -- Detecting C compiler ABI info - done 2025-08-26T19:32:51.2302410Z -- Check for working C compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang - skipped 2025-08-26T19:32:51.2303960Z -- Detecting C compile features 2025-08-26T19:32:51.2307100Z -- Detecting C compile features - done 2025-08-26T19:32:51.2353920Z -- Not forcing any particular BLAS to be found 2025-08-26T19:32:51.2581250Z -- CLANG_VERSION_STRING: 15.0 2025-08-26T19:32:51.2651870Z -- sdk version: 14.4, mps supported: ON 2025-08-26T19:32:51.2811040Z -- MPSGraph framework found 2025-08-26T19:32:51.2834210Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2025-08-26T19:32:51.2868650Z -- Performing Test C_HAS_AVX_1 2025-08-26T19:32:51.5757250Z -- Performing Test C_HAS_AVX_1 - Failed 2025-08-26T19:32:51.5757560Z -- Performing Test C_HAS_AVX_2 2025-08-26T19:32:51.7487160Z -- Performing Test C_HAS_AVX_2 - Failed 2025-08-26T19:32:51.7487400Z -- Performing Test C_HAS_AVX_3 2025-08-26T19:32:51.8930800Z -- Performing Test C_HAS_AVX_3 - Failed 2025-08-26T19:32:51.8931280Z -- Performing Test C_HAS_AVX2_1 2025-08-26T19:32:52.0660700Z -- Performing Test C_HAS_AVX2_1 - Failed 2025-08-26T19:32:52.0660950Z -- Performing Test C_HAS_AVX2_2 2025-08-26T19:32:52.2381440Z -- Performing Test C_HAS_AVX2_2 - Failed 2025-08-26T19:32:52.2381780Z -- Performing Test C_HAS_AVX2_3 2025-08-26T19:32:52.3826380Z -- Performing Test C_HAS_AVX2_3 - Failed 2025-08-26T19:32:52.3826940Z -- Performing Test C_HAS_AVX512_1 2025-08-26T19:32:52.5546010Z -- Performing Test C_HAS_AVX512_1 - Failed 2025-08-26T19:32:52.5546260Z -- Performing Test C_HAS_AVX512_2 2025-08-26T19:32:52.7257870Z -- Performing Test C_HAS_AVX512_2 - Failed 2025-08-26T19:32:52.7258280Z -- Performing Test C_HAS_AVX512_3 2025-08-26T19:32:52.8712010Z -- Performing Test C_HAS_AVX512_3 - Failed 2025-08-26T19:32:52.8712590Z -- Performing Test CXX_HAS_AVX_1 2025-08-26T19:32:53.0449780Z -- Performing Test CXX_HAS_AVX_1 - Failed 2025-08-26T19:32:53.0450060Z -- Performing Test CXX_HAS_AVX_2 2025-08-26T19:32:53.2184300Z -- Performing Test CXX_HAS_AVX_2 - Failed 2025-08-26T19:32:53.2184610Z -- Performing Test CXX_HAS_AVX_3 2025-08-26T19:32:53.3628390Z -- Performing Test CXX_HAS_AVX_3 - Failed 2025-08-26T19:32:53.3628980Z -- Performing Test CXX_HAS_AVX2_1 2025-08-26T19:32:53.5362850Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2025-08-26T19:32:53.5363300Z -- Performing Test CXX_HAS_AVX2_2 2025-08-26T19:32:53.7102240Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2025-08-26T19:32:53.7102520Z -- Performing Test CXX_HAS_AVX2_3 2025-08-26T19:32:53.8556150Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2025-08-26T19:32:53.8556790Z -- Performing Test CXX_HAS_AVX512_1 2025-08-26T19:32:54.0296570Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2025-08-26T19:32:54.0296930Z -- Performing Test CXX_HAS_AVX512_2 2025-08-26T19:32:54.2033070Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2025-08-26T19:32:54.2033450Z -- Performing Test CXX_HAS_AVX512_3 2025-08-26T19:32:54.3477690Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2025-08-26T19:32:54.3482340Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-08-26T19:32:54.5602110Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2025-08-26T19:32:54.5606200Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-08-26T19:32:54.7736820Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2025-08-26T19:32:54.7740730Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2025-08-26T19:32:54.9894050Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2025-08-26T19:32:54.9918210Z -- No OMAP3 processor on this machine. 2025-08-26T19:32:54.9918450Z -- No OMAP4 processor on this machine. 2025-08-26T19:32:54.9918740Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-08-26T19:32:54.9948900Z CMake Warning at CMakeLists.txt:841 (message): 2025-08-26T19:32:54.9949200Z x64 operating system is required for FBGEMM. Not compiling with FBGEMM. 2025-08-26T19:32:54.9949490Z Turn this warning off by USE_FBGEMM=OFF. 2025-08-26T19:32:54.9949630Z 2025-08-26T19:32:54.9949640Z 2025-08-26T19:32:55.0048850Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2025-08-26T19:32:56.2723920Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2025-08-26T19:32:56.2734790Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2025-08-26T19:32:56.2735190Z PyTorch: CUDA cannot be found. Depending on whether you are building 2025-08-26T19:32:56.2735850Z PyTorch or a PyTorch dependent library, the next warning / error will give 2025-08-26T19:32:56.2736150Z you more info. 2025-08-26T19:32:56.2736310Z Call Stack (most recent call first): 2025-08-26T19:32:56.2736510Z cmake/Dependencies.cmake:44 (include) 2025-08-26T19:32:56.2736730Z CMakeLists.txt:869 (include) 2025-08-26T19:32:56.2736840Z 2025-08-26T19:32:56.2736850Z 2025-08-26T19:32:56.2736960Z CMake Warning at cmake/Dependencies.cmake:76 (message): 2025-08-26T19:32:56.2737480Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2025-08-26T19:32:56.2737770Z Call Stack (most recent call first): 2025-08-26T19:32:56.2737950Z CMakeLists.txt:869 (include) 2025-08-26T19:32:56.2738060Z 2025-08-26T19:32:56.2738060Z 2025-08-26T19:32:56.2755360Z CMake Warning at cmake/Dependencies.cmake:95 (message): 2025-08-26T19:32:56.2755730Z Not compiling with XPU. Could NOT find SYCL. Suppress this warning with 2025-08-26T19:32:56.2756000Z -DUSE_XPU=OFF. 2025-08-26T19:32:56.2756160Z Call Stack (most recent call first): 2025-08-26T19:32:56.2756350Z CMakeLists.txt:869 (include) 2025-08-26T19:32:56.2756470Z 2025-08-26T19:32:56.2756480Z 2025-08-26T19:32:56.2763970Z -- Building using own protobuf under third_party per request. 2025-08-26T19:32:56.2764230Z -- Use custom protobuf build. 2025-08-26T19:32:56.2777060Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-08-26T19:32:56.2777500Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-26T19:32:56.2777770Z CMake. 2025-08-26T19:32:56.2777840Z 2025-08-26T19:32:56.2777990Z Update the VERSION argument value or use a ... suffix to tell 2025-08-26T19:32:56.2778330Z CMake that the project does not need compatibility with older versions. 2025-08-26T19:32:56.2778550Z 2025-08-26T19:32:56.2778550Z 2025-08-26T19:32:56.2795180Z -- 2025-08-26T19:32:56.2795420Z -- 3.13.0.0 2025-08-26T19:32:56.2800620Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-08-26T19:32:56.5211370Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-08-26T19:32:56.5217690Z -- Found Threads: TRUE 2025-08-26T19:32:56.5220050Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2025-08-26T19:32:56.8314950Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2025-08-26T19:32:56.8571630Z -- Caffe2 protobuf include directory: $$ 2025-08-26T19:32:56.8582560Z -- Trying to find preferred BLAS backend of choice: MKL 2025-08-26T19:32:56.8608570Z CMake Warning at cmake/Dependencies.cmake:213 (message): 2025-08-26T19:32:56.8608850Z MKL could not be found. Defaulting to Eigen 2025-08-26T19:32:56.8609530Z Call Stack (most recent call first): 2025-08-26T19:32:56.8609740Z CMakeLists.txt:869 (include) 2025-08-26T19:32:56.8609870Z 2025-08-26T19:32:56.8609870Z 2025-08-26T19:32:56.8609990Z CMake Warning at cmake/Dependencies.cmake:279 (message): 2025-08-26T19:32:56.8610310Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2025-08-26T19:32:56.8610550Z library 2025-08-26T19:32:56.8610720Z Call Stack (most recent call first): 2025-08-26T19:32:56.8610900Z CMakeLists.txt:869 (include) 2025-08-26T19:32:56.8611010Z 2025-08-26T19:32:56.8611010Z 2025-08-26T19:32:56.8623010Z -- Checking for [blis] 2025-08-26T19:32:56.8630260Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2025-08-26T19:32:56.8630530Z -- Checking for [Accelerate] 2025-08-26T19:32:56.8636770Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2025-08-26T19:32:56.8637180Z -- Looking for sgemm_ 2025-08-26T19:32:57.1004900Z -- Looking for sgemm_ - found 2025-08-26T19:32:57.1015720Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2025-08-26T19:32:57.4057570Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2025-08-26T19:32:57.4058120Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2025-08-26T19:32:57.9490860Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2025-08-26T19:32:57.9493590Z -- This BLAS uses the F2C return conventions 2025-08-26T19:32:57.9494780Z -- Performing Test BLAS_USE_CBLAS_DOT 2025-08-26T19:32:58.2929710Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2025-08-26T19:32:58.2930080Z -- BLAS_USE_CBLAS_DOT: TRUE 2025-08-26T19:32:58.2930290Z -- BLAS_F2C: TRUE 2025-08-26T19:32:58.2930930Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2025-08-26T19:32:58.2933070Z -- Looking for sbgemm_ 2025-08-26T19:32:58.5250100Z -- Looking for sbgemm_ - not found 2025-08-26T19:32:58.5250540Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2025-08-26T19:32:58.5895130Z -- The ASM compiler identification is AppleClang 2025-08-26T19:32:58.5912370Z -- Found assembler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:32:58.6513570Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-26T19:32:58.6514050Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-26T19:32:58.6514300Z CMake. 2025-08-26T19:32:58.6514370Z 2025-08-26T19:32:58.6514510Z Update the VERSION argument value or use a ... suffix to tell 2025-08-26T19:32:58.6514860Z CMake that the project does not need compatibility with older versions. 2025-08-26T19:32:58.6515070Z 2025-08-26T19:32:58.6515080Z 2025-08-26T19:32:58.6537230Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-26T19:32:58.6537640Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-26T19:32:58.6537880Z CMake. 2025-08-26T19:32:58.6537950Z 2025-08-26T19:32:58.6538080Z Update the VERSION argument value or use a ... suffix to tell 2025-08-26T19:32:58.6538410Z CMake that the project does not need compatibility with older versions. 2025-08-26T19:32:58.6538610Z 2025-08-26T19:32:58.6538620Z 2025-08-26T19:32:58.6559010Z -- Brace yourself, we are building NNPACK 2025-08-26T19:32:58.6586330Z CMake Deprecation Warning at third_party/NNPACK/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-08-26T19:32:58.6586730Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-08-26T19:32:58.6587760Z CMake. 2025-08-26T19:32:58.6587830Z 2025-08-26T19:32:58.6587960Z Update the VERSION argument value or use a ... suffix to tell 2025-08-26T19:32:58.6588300Z CMake that the project does not need compatibility with older versions. 2025-08-26T19:32:58.6588500Z 2025-08-26T19:32:58.6588500Z 2025-08-26T19:32:58.7146600Z -- NNPACK backend is neon 2025-08-26T19:32:58.7751530Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-08-26T19:32:58.7763820Z -- Generating microkernels.cmake 2025-08-26T19:33:06.2687930Z 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-08-26T19:33:06.2688900Z 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-08-26T19:33:06.2689520Z No microkernel found in src/reference/unary-elementwise.cc 2025-08-26T19:33:06.2689780Z No microkernel found in src/reference/packing.cc 2025-08-26T19:33:06.2690040Z No microkernel found in src/reference/binary-elementwise.cc 2025-08-26T19:33:06.3369940Z -- Using third party subdirectory Eigen. 2025-08-26T19:33:06.5787270Z -- Found Python: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/python (found version "3.12.11") found components: Interpreter Development.Module NumPy 2025-08-26T19:33:06.5787800Z -- Using third_party/pybind11. 2025-08-26T19:33:06.5788150Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-08-26T19:33:06.6479940Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-08-26T19:33:06.6480570Z -- Using third_party/opentelemetry-cpp. 2025-08-26T19:33:06.6481020Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-08-26T19:33:06.6549840Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-08-26T19:33:06.8095660Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-08-26T19:33:06.8096260Z Detecting C OpenMP compiler ABI info compiled with the following output: 2025-08-26T19:33:06.8096480Z 2025-08-26T19:33:06.8096530Z Change Dir: 2025-08-26T19:33:06.8096750Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-08-26T19:33:06.8096970Z 2025-08-26T19:33:06.8096970Z 2025-08-26T19:33:06.8096970Z 2025-08-26T19:33:06.8097020Z Run Build Command(s): 2025-08-26T19:33:06.8097250Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/ninja -v 2025-08-26T19:33:06.8097490Z cmTC_354dc 2025-08-26T19:33:06.8097570Z 2025-08-26T19:33:06.8097730Z [1/2] /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:33:06.8098080Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-08-26T19:33:06.8098360Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-26T19:33:06.8098590Z -mmacosx-version-min=11.0 -MD -MT 2025-08-26T19:33:06.8098800Z CMakeFiles/cmTC_354dc.dir/OpenMPTryFlag.c.o -MF 2025-08-26T19:33:06.8099040Z CMakeFiles/cmTC_354dc.dir/OpenMPTryFlag.c.o.d -o 2025-08-26T19:33:06.8099280Z CMakeFiles/cmTC_354dc.dir/OpenMPTryFlag.c.o -c 2025-08-26T19:33:06.8099620Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-08-26T19:33:06.8099880Z 2025-08-26T19:33:06.8099880Z 2025-08-26T19:33:06.8099970Z FAILED: CMakeFiles/cmTC_354dc.dir/OpenMPTryFlag.c.o 2025-08-26T19:33:06.8107080Z 2025-08-26T19:33:06.8107280Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:33:06.8107650Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-08-26T19:33:06.8107930Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-26T19:33:06.8108160Z -mmacosx-version-min=11.0 -MD -MT 2025-08-26T19:33:06.8108370Z CMakeFiles/cmTC_354dc.dir/OpenMPTryFlag.c.o -MF 2025-08-26T19:33:06.8108610Z CMakeFiles/cmTC_354dc.dir/OpenMPTryFlag.c.o.d -o 2025-08-26T19:33:06.8108830Z CMakeFiles/cmTC_354dc.dir/OpenMPTryFlag.c.o -c 2025-08-26T19:33:06.8109170Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-08-26T19:33:06.8109440Z 2025-08-26T19:33:06.8109460Z 2025-08-26T19:33:06.8109540Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-08-26T19:33:06.8109680Z 2025-08-26T19:33:06.8109750Z Target: arm64-apple-darwin23.4.0 2025-08-26T19:33:06.8109870Z 2025-08-26T19:33:06.8109920Z Thread model: posix 2025-08-26T19:33:06.8110010Z 2025-08-26T19:33:06.8110120Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-08-26T19:33:06.8110300Z 2025-08-26T19:33:06.8118290Z "/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_354dc.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_354dc.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-08-26T19:33:06.8126090Z 2025-08-26T19:33:06.8126200Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-08-26T19:33:06.8126430Z arm64-apple-darwin23.4.0 2025-08-26T19:33:06.8126540Z 2025-08-26T19:33:06.8126630Z ignoring nonexistent directory "/usr/local/include" 2025-08-26T19:33:06.8126780Z 2025-08-26T19:33:06.8126840Z ignoring nonexistent directory 2025-08-26T19:33:06.8127100Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-08-26T19:33:06.8127310Z 2025-08-26T19:33:06.8127370Z ignoring nonexistent directory 2025-08-26T19:33:06.8127620Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-08-26T19:33:06.8127840Z 2025-08-26T19:33:06.8127890Z #include "..." search starts here: 2025-08-26T19:33:06.8128010Z 2025-08-26T19:33:06.8128070Z #include <...> search starts here: 2025-08-26T19:33:06.8128180Z 2025-08-26T19:33:06.8128310Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-08-26T19:33:06.8128620Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-08-26T19:33:06.8128890Z /Library/Developer/CommandLineTools/usr/include 2025-08-26T19:33:06.8129260Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-08-26T19:33:06.8129550Z 2025-08-26T19:33:06.8129600Z End of search list. 2025-08-26T19:33:06.8129690Z 2025-08-26T19:33:06.8129690Z 2025-08-26T19:33:06.8129890Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2025-08-26T19:33:06.8130230Z fatal error: 'omp.h' file not found 2025-08-26T19:33:06.8130350Z 2025-08-26T19:33:06.8130400Z #include 2025-08-26T19:33:06.8130480Z 2025-08-26T19:33:06.8130520Z ^~~~~~~ 2025-08-26T19:33:06.8130600Z 2025-08-26T19:33:06.8130640Z 1 error generated. 2025-08-26T19:33:06.8130720Z 2025-08-26T19:33:06.8130790Z ninja: build stopped: subcommand failed. 2025-08-26T19:33:06.8130930Z 2025-08-26T19:33:06.8130930Z 2025-08-26T19:33:06.8130930Z 2025-08-26T19:33:06.8130990Z Call Stack (most recent call first): 2025-08-26T19:33:06.8131300Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-08-26T19:33:06.8131540Z cmake/Dependencies.cmake:901 (include) 2025-08-26T19:33:06.8131720Z CMakeLists.txt:869 (include) 2025-08-26T19:33:06.8131830Z 2025-08-26T19:33:06.8131830Z 2025-08-26T19:33:07.1154100Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-08-26T19:33:07.3749630Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-08-26T19:33:07.5290270Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-08-26T19:33:07.5290650Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2025-08-26T19:33:07.5290890Z 2025-08-26T19:33:07.5290960Z Change Dir: 2025-08-26T19:33:07.5291180Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-08-26T19:33:07.5291420Z 2025-08-26T19:33:07.5291420Z 2025-08-26T19:33:07.5291440Z 2025-08-26T19:33:07.5291500Z Run Build Command(s): 2025-08-26T19:33:07.5291730Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/ninja -v 2025-08-26T19:33:07.5291980Z cmTC_ea5b9 2025-08-26T19:33:07.5292060Z 2025-08-26T19:33:07.5292110Z [1/2] 2025-08-26T19:33:07.5292330Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:33:07.5292720Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-08-26T19:33:07.5293010Z -std=gnu++17 -arch arm64 -isysroot 2025-08-26T19:33:07.5293220Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-26T19:33:07.5293450Z -mmacosx-version-min=11.0 -MD -MT 2025-08-26T19:33:07.5293660Z CMakeFiles/cmTC_ea5b9.dir/OpenMPTryFlag.cpp.o -MF 2025-08-26T19:33:07.5293920Z CMakeFiles/cmTC_ea5b9.dir/OpenMPTryFlag.cpp.o.d -o 2025-08-26T19:33:07.5294160Z CMakeFiles/cmTC_ea5b9.dir/OpenMPTryFlag.cpp.o -c 2025-08-26T19:33:07.5294520Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-08-26T19:33:07.5294790Z 2025-08-26T19:33:07.5294800Z 2025-08-26T19:33:07.5294900Z FAILED: CMakeFiles/cmTC_ea5b9.dir/OpenMPTryFlag.cpp.o 2025-08-26T19:33:07.5295060Z 2025-08-26T19:33:07.5295220Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:33:07.5295590Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-08-26T19:33:07.5295880Z -std=gnu++17 -arch arm64 -isysroot 2025-08-26T19:33:07.5296100Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-08-26T19:33:07.5296310Z -mmacosx-version-min=11.0 -MD -MT 2025-08-26T19:33:07.5296520Z CMakeFiles/cmTC_ea5b9.dir/OpenMPTryFlag.cpp.o -MF 2025-08-26T19:33:07.5296790Z CMakeFiles/cmTC_ea5b9.dir/OpenMPTryFlag.cpp.o.d -o 2025-08-26T19:33:07.5297030Z CMakeFiles/cmTC_ea5b9.dir/OpenMPTryFlag.cpp.o -c 2025-08-26T19:33:07.5297390Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-08-26T19:33:07.5297660Z 2025-08-26T19:33:07.5297660Z 2025-08-26T19:33:07.5297740Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-08-26T19:33:07.5297880Z 2025-08-26T19:33:07.5297940Z Target: arm64-apple-darwin23.4.0 2025-08-26T19:33:07.5298050Z 2025-08-26T19:33:07.5298100Z Thread model: posix 2025-08-26T19:33:07.5298180Z 2025-08-26T19:33:07.5298290Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-08-26T19:33:07.5298460Z 2025-08-26T19:33:07.5306950Z "/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_ea5b9.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ea5b9.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-08-26T19:33:07.5315530Z 2025-08-26T19:33:07.5315640Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-08-26T19:33:07.5315860Z arm64-apple-darwin23.4.0 2025-08-26T19:33:07.5315970Z 2025-08-26T19:33:07.5316060Z ignoring nonexistent directory "/usr/local/include" 2025-08-26T19:33:07.5316210Z 2025-08-26T19:33:07.5316270Z ignoring nonexistent directory 2025-08-26T19:33:07.5316540Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-08-26T19:33:07.5316750Z 2025-08-26T19:33:07.5316810Z ignoring nonexistent directory 2025-08-26T19:33:07.5317060Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-08-26T19:33:07.5317280Z 2025-08-26T19:33:07.5317330Z #include "..." search starts here: 2025-08-26T19:33:07.5317450Z 2025-08-26T19:33:07.5317510Z #include <...> search starts here: 2025-08-26T19:33:07.5317620Z 2025-08-26T19:33:07.5317760Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2025-08-26T19:33:07.5318090Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-08-26T19:33:07.5318410Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-08-26T19:33:07.5318680Z /Library/Developer/CommandLineTools/usr/include 2025-08-26T19:33:07.5319040Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-08-26T19:33:07.5319330Z 2025-08-26T19:33:07.5319380Z End of search list. 2025-08-26T19:33:07.5319610Z 2025-08-26T19:33:07.5319610Z 2025-08-26T19:33:07.5319830Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2025-08-26T19:33:07.5320170Z fatal error: 'omp.h' file not found 2025-08-26T19:33:07.5320300Z 2025-08-26T19:33:07.5320340Z #include 2025-08-26T19:33:07.5320420Z 2025-08-26T19:33:07.5320460Z ^~~~~~~ 2025-08-26T19:33:07.5320590Z 2025-08-26T19:33:07.5320640Z 1 error generated. 2025-08-26T19:33:07.5320730Z 2025-08-26T19:33:07.5320800Z ninja: build stopped: subcommand failed. 2025-08-26T19:33:07.5320930Z 2025-08-26T19:33:07.5320930Z 2025-08-26T19:33:07.5320930Z 2025-08-26T19:33:07.5320990Z Call Stack (most recent call first): 2025-08-26T19:33:07.5321200Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-08-26T19:33:07.5321430Z cmake/Dependencies.cmake:901 (include) 2025-08-26T19:33:07.5321610Z CMakeLists.txt:869 (include) 2025-08-26T19:33:07.5321720Z 2025-08-26T19:33:07.5321720Z 2025-08-26T19:33:07.8360900Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-08-26T19:33:08.2905600Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-08-26T19:33:08.5197260Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-08-26T19:33:08.5198590Z -- Found OpenMP: TRUE 2025-08-26T19:33:08.5199470Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-08-26T19:33:08.5199880Z -- Will link against OpenMP libraries: /opt/homebrew/opt/libomp/lib/libomp.dylib 2025-08-26T19:33:08.5201260Z -- Found nvtx3: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-08-26T19:33:08.6393640Z -- Found Python3: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/python (found version "3.12.11") found components: Interpreter 2025-08-26T19:33:08.6396860Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-08-26T19:33:08.6397130Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-08-26T19:33:08.6398540Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-26T19:33:08.6400150Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-08-26T19:33:08.6401410Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-26T19:33:08.8401220Z -- 2025-08-26T19:33:08.8401380Z -- ******** Summary ******** 2025-08-26T19:33:08.8401560Z -- CMake version : 3.27.9 2025-08-26T19:33:08.8401980Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-08-26T19:33:08.8402380Z -- System : Darwin 2025-08-26T19:33:08.8402740Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:33:08.8403090Z -- C++ compiler version : 15.0.0.15000309 2025-08-26T19:33:08.8403410Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2025-08-26T19:33:08.8403720Z -- Build type : Release 2025-08-26T19:33:08.8403970Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-08-26T19:33:08.8404400Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages 2025-08-26T19:33:08.8404840Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-08-26T19:33:08.8405420Z -- 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-08-26T19:33:08.8405890Z -- 2025-08-26T19:33:08.8406290Z -- ONNX version : 1.18.0 2025-08-26T19:33:08.8406510Z -- ONNX NAMESPACE : onnx_torch 2025-08-26T19:33:08.8406740Z -- ONNX_USE_LITE_PROTO : OFF 2025-08-26T19:33:08.8406960Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-08-26T19:33:08.8407170Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-08-26T19:33:08.8407380Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-08-26T19:33:08.8407670Z -- ONNX_WERROR : OFF 2025-08-26T19:33:08.8407860Z -- ONNX_BUILD_TESTS : OFF 2025-08-26T19:33:08.8408060Z -- BUILD_SHARED_LIBS : OFF 2025-08-26T19:33:08.8408240Z -- 2025-08-26T19:33:08.8408460Z -- Protobuf compiler : $ 2025-08-26T19:33:08.8408720Z -- Protobuf includes : 2025-08-26T19:33:08.8408910Z -- Protobuf libraries : 2025-08-26T19:33:08.8409100Z -- ONNX_BUILD_PYTHON : OFF 2025-08-26T19:33:08.8409350Z CMake Warning at cmake/Dependencies.cmake:1418 (message): 2025-08-26T19:33:08.8409680Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-08-26T19:33:08.8409950Z Call Stack (most recent call first): 2025-08-26T19:33:08.8410140Z CMakeLists.txt:869 (include) 2025-08-26T19:33:08.8410260Z 2025-08-26T19:33:08.8410260Z 2025-08-26T19:33:08.8410400Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-08-26T19:33:08.8410670Z -- Adding -DNDEBUG to compile flags 2025-08-26T19:33:08.8425800Z -- No OMAP3 processor on this machine. 2025-08-26T19:33:08.8426030Z -- No OMAP4 processor on this machine. 2025-08-26T19:33:08.8426250Z -- Neon found with compiler flag : -D__NEON__ 2025-08-26T19:33:08.8441730Z -- Looking for cheev_ 2025-08-26T19:33:09.0751870Z -- Looking for cheev_ - found 2025-08-26T19:33:09.0752120Z -- Found a library with LAPACK API (accelerate). 2025-08-26T19:33:09.0752970Z disabling CUDA because NOT USE_CUDA is set 2025-08-26T19:33:09.0753230Z disabling ROCM because NOT USE_ROCM is set 2025-08-26T19:33:09.0753470Z -- MIOpen not found. Compiling without MIOpen support 2025-08-26T19:33:09.0753720Z disabling MKLDNN because USE_MKLDNN is not set 2025-08-26T19:33:09.1386270Z -- Looking for mmap 2025-08-26T19:33:09.3548950Z -- Looking for mmap - found 2025-08-26T19:33:09.3549150Z -- Looking for shm_open 2025-08-26T19:33:09.5728770Z -- Looking for shm_open - found 2025-08-26T19:33:09.5729010Z -- Looking for shm_unlink 2025-08-26T19:33:09.7914490Z -- Looking for shm_unlink - found 2025-08-26T19:33:09.7914710Z -- Looking for malloc_usable_size 2025-08-26T19:33:10.0063920Z -- Looking for malloc_usable_size - not found 2025-08-26T19:33:10.0141260Z -- {fmt} version: 11.2.0 2025-08-26T19:33:10.0141440Z -- Build type: Release 2025-08-26T19:33:10.0153490Z -- Performing Test HAS_NULLPTR_WARNING 2025-08-26T19:33:10.2293390Z -- Performing Test HAS_NULLPTR_WARNING - Success 2025-08-26T19:33:10.2357750Z -- Using CPU-only version of Kineto 2025-08-26T19:33:10.2357980Z -- Configuring Kineto dependency: 2025-08-26T19:33:10.2358500Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-08-26T19:33:10.2358840Z -- KINETO_BUILD_TESTS = OFF 2025-08-26T19:33:10.2359000Z -- KINETO_LIBRARY_TYPE = static 2025-08-26T19:33:10.2382340Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-08-26T19:33:10.2382730Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-08-26T19:33:10.2383100Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-08-26T19:33:10.2383430Z the cmake_policy command to set the policy and suppress this warning. 2025-08-26T19:33:10.2383630Z 2025-08-26T19:33:10.2383760Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-08-26T19:33:10.2383960Z 2025-08-26T19:33:10.2564830Z -- Found PythonInterp: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/python (found version "3.12.11") 2025-08-26T19:33:10.2566310Z -- CUDA_SOURCE_DIR = 2025-08-26T19:33:10.2566470Z -- ROCM_SOURCE_DIR = 2025-08-26T19:33:10.2743270Z -- CUPTI unavailable or disabled - not building GPU profilers 2025-08-26T19:33:10.3084020Z -- Kineto: FMT_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt 2025-08-26T19:33:10.3084510Z -- Kineto: FMT_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt/include 2025-08-26T19:33:10.3085110Z -- CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-08-26T19:33:10.3085330Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-08-26T19:33:10.3085720Z -- DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-08-26T19:33:10.3086340Z -- IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-08-26T19:33:10.3098630Z -- Configured Kineto (CPU) 2025-08-26T19:33:10.3109140Z -- Running on macOS with Apple silicon 2025-08-26T19:33:10.3124440Z -- Performing Test HAS_WERROR_RETURN_TYPE 2025-08-26T19:33:10.5567670Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2025-08-26T19:33:10.5572240Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2025-08-26T19:33:10.7698690Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2025-08-26T19:33:10.7703580Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2025-08-26T19:33:10.9859360Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2025-08-26T19:33:10.9863880Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2025-08-26T19:33:11.2006070Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2025-08-26T19:33:11.2010570Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2025-08-26T19:33:11.4971560Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2025-08-26T19:33:11.4976010Z -- Performing Test HAS_WNARROWING 2025-08-26T19:33:11.7159060Z -- Performing Test HAS_WNARROWING - Success 2025-08-26T19:33:11.7163970Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2025-08-26T19:33:11.9309420Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2025-08-26T19:33:11.9313890Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2025-08-26T19:33:12.1469560Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2025-08-26T19:33:12.1474110Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2025-08-26T19:33:12.3636950Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2025-08-26T19:33:12.3641330Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2025-08-26T19:33:12.5968510Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2025-08-26T19:33:12.5972900Z -- Performing Test HAS_WNO_STRICT_ALIASING 2025-08-26T19:33:12.8140900Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2025-08-26T19:33:12.8145320Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-08-26T19:33:13.0638630Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-08-26T19:33:13.0643120Z -- Performing Test HAS_WVLA_EXTENSION 2025-08-26T19:33:13.2793940Z -- Performing Test HAS_WVLA_EXTENSION - Success 2025-08-26T19:33:13.2798470Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2025-08-26T19:33:13.4959800Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2025-08-26T19:33:13.4964230Z -- Performing Test HAS_WNEWLINE_EOF 2025-08-26T19:33:13.7202670Z -- Performing Test HAS_WNEWLINE_EOF - Success 2025-08-26T19:33:13.7207320Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2025-08-26T19:33:13.9374020Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2025-08-26T19:33:13.9378550Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2025-08-26T19:33:14.1554290Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2025-08-26T19:33:14.1559010Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2025-08-26T19:33:14.3716060Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2025-08-26T19:33:14.3720670Z -- Performing Test HAS_WCONSTANT_CONVERSION 2025-08-26T19:33:14.6058550Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2025-08-26T19:33:14.6063240Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2025-08-26T19:33:14.8509390Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2025-08-26T19:33:14.8513770Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2025-08-26T19:33:15.0708960Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2025-08-26T19:33:15.0713420Z -- Performing Test HAS_FALIGNED_NEW 2025-08-26T19:33:15.2857170Z -- Performing Test HAS_FALIGNED_NEW - Success 2025-08-26T19:33:15.2861690Z -- Performing Test HAS_WERROR 2025-08-26T19:33:15.5006640Z -- Performing Test HAS_WERROR - Success 2025-08-26T19:33:15.5011330Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-08-26T19:33:15.6520120Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-08-26T19:33:15.6524770Z -- Performing Test HAS_FSTANDALONE_DEBUG 2025-08-26T19:33:15.8636600Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2025-08-26T19:33:15.8641210Z -- Performing Test HAS_FNO_MATH_ERRNO 2025-08-26T19:33:16.0827710Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2025-08-26T19:33:16.0832390Z -- Performing Test HAS_FNO_TRAPPING_MATH 2025-08-26T19:33:16.2973130Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2025-08-26T19:33:16.2977650Z -- Performing Test HAS_WERROR_FORMAT 2025-08-26T19:33:16.5138350Z -- Performing Test HAS_WERROR_FORMAT - Success 2025-08-26T19:33:16.5143300Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2025-08-26T19:33:16.7308610Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2025-08-26T19:33:16.7313280Z -- Performing Test HAS_WNO_MISSING_BRACES 2025-08-26T19:33:16.9477480Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2025-08-26T19:33:16.9538400Z -- don't use NUMA 2025-08-26T19:33:16.9549890Z -- Looking for backtrace 2025-08-26T19:33:17.1775820Z -- Looking for backtrace - found 2025-08-26T19:33:17.1778210Z -- backtrace facility detected in default set of libraries 2025-08-26T19:33:17.1778600Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-08-26T19:33:18.8638880Z -- headers outputs: 2025-08-26T19:33:19.5394570Z -- sources outputs: 2025-08-26T19:33:20.0712540Z -- declarations_yaml outputs: 2025-08-26T19:33:20.1487350Z -- Using ATen parallel backend: OMP 2025-08-26T19:33:20.1498500Z disabling CUDA because USE_CUDA is set false 2025-08-26T19:33:20.2357820Z -- Found OpenSSL: /opt/homebrew/lib/libcrypto.dylib (found version "3.5.2") 2025-08-26T19:33:20.2407240Z -- Looking for sys/types.h 2025-08-26T19:33:20.4852070Z -- Looking for sys/types.h - found 2025-08-26T19:33:20.4852450Z -- Looking for stdint.h 2025-08-26T19:33:20.7127720Z -- Looking for stdint.h - found 2025-08-26T19:33:20.7127920Z -- Looking for stddef.h 2025-08-26T19:33:20.9311990Z -- Looking for stddef.h - found 2025-08-26T19:33:20.9312200Z -- Check size of long double 2025-08-26T19:33:21.2666540Z -- Check size of long double - done 2025-08-26T19:33:21.2667070Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-08-26T19:33:21.4512550Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-08-26T19:33:21.4528540Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-08-26T19:33:21.4530880Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-08-26T19:33:21.4532440Z -- Found OpenMP: TRUE (found version "5.0") 2025-08-26T19:33:21.4533520Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-08-26T19:33:21.6732050Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2025-08-26T19:33:21.6732370Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-08-26T19:33:21.8933260Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-08-26T19:33:21.8933550Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-08-26T19:33:22.0778050Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-08-26T19:33:22.0778390Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-08-26T19:33:22.3936040Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2025-08-26T19:33:22.3936360Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-08-26T19:33:22.5546210Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-08-26T19:33:22.5729190Z Target system: Darwin-23.4.0 2025-08-26T19:33:22.5729390Z Target processor: arm64 2025-08-26T19:33:22.5729560Z Host system: Darwin-23.4.0 2025-08-26T19:33:22.5729730Z Host processor: arm64 2025-08-26T19:33:22.5730080Z Detected C compiler: AppleClang @ /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:33:22.5730790Z CMake: 3.27.9 2025-08-26T19:33:22.5731030Z Make program: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/ninja 2025-08-26T19:33:22.5731320Z -- Configuring build for SLEEF-v3.8.0 2025-08-26T19:33:22.5731790Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2025-08-26T19:33:22.5732240Z -- Building shared libs : OFF 2025-08-26T19:33:22.5732400Z -- Building static test bins: OFF 2025-08-26T19:33:22.5732560Z -- MPFR : LIB_MPFR-NOTFOUND 2025-08-26T19:33:22.5732710Z -- GMP : LIBGMP-NOTFOUND 2025-08-26T19:33:22.5732870Z -- RT : 2025-08-26T19:33:22.5732990Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-08-26T19:33:22.5733130Z -- OPENSSL : 3.5.2 2025-08-26T19:33:22.5733260Z -- SDE : SDE_COMMAND-NOTFOUND 2025-08-26T19:33:22.5733420Z -- COMPILER_SUPPORTS_OPENMP : 2025-08-26T19:33:22.5800670Z CMake Warning at cmake/Metal.cmake:59 (message): 2025-08-26T19:33:22.5801000Z Machine can not compile metal shaders, fails with xcrun: error: unable to 2025-08-26T19:33:22.5801330Z find utility "metal", not a developer tool or in PATH 2025-08-26T19:33:22.5801500Z 2025-08-26T19:33:22.5801560Z Call Stack (most recent call first): 2025-08-26T19:33:22.5801760Z aten/src/ATen/CMakeLists.txt:711 (include) 2025-08-26T19:33:22.5801910Z 2025-08-26T19:33:22.5801910Z 2025-08-26T19:33:22.5854120Z -- _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-08-26T19:33:22.5855170Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk 2025-08-26T19:33:22.5856130Z -- 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-08-26T19:33:23.4877400Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-08-26T19:33:23.4877840Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-08-26T19:33:23.4878430Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-08-26T19:33:23.4878990Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-08-26T19:33:23.6361320Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-08-26T19:33:23.8553580Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2025-08-26T19:33:23.8558290Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-08-26T19:33:24.0710770Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2025-08-26T19:33:24.1562640Z -- The OBJC compiler identification is AppleClang 15.0.0.15000309 2025-08-26T19:33:24.2188170Z -- The OBJCXX compiler identification is AppleClang 15.0.0.15000309 2025-08-26T19:33:24.2797720Z -- Detecting OBJC compiler ABI info 2025-08-26T19:33:24.5517070Z -- Detecting OBJC compiler ABI info - done 2025-08-26T19:33:24.5556350Z -- Check for working OBJC compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang - skipped 2025-08-26T19:33:24.6156670Z -- Detecting OBJCXX compiler ABI info 2025-08-26T19:33:24.8906150Z -- Detecting OBJCXX compiler ABI info - done 2025-08-26T19:33:24.8949030Z -- Check for working OBJCXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ - skipped 2025-08-26T19:33:24.9364290Z -- 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-08-26T19:33:24.9430020Z CMake Warning at CMakeLists.txt:1281 (message): 2025-08-26T19:33:24.9430510Z Generated cmake files are only fully tested if one builds with system glog, 2025-08-26T19:33:24.9430870Z gflags, and protobuf. Other settings may generate files that are not well 2025-08-26T19:33:24.9431130Z tested. 2025-08-26T19:33:24.9431200Z 2025-08-26T19:33:24.9431200Z 2025-08-26T19:33:24.9460770Z -- 2025-08-26T19:33:24.9461050Z -- ******** Summary ******** 2025-08-26T19:33:24.9461240Z -- General: 2025-08-26T19:33:24.9461370Z -- CMake version : 3.27.9 2025-08-26T19:33:24.9461790Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-08-26T19:33:24.9462180Z -- System : Darwin 2025-08-26T19:33:24.9462510Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:33:24.9462860Z -- C++ compiler id : AppleClang 2025-08-26T19:33:24.9463060Z -- C++ compiler version : 15.0.0.15000309 2025-08-26T19:33:24.9463270Z -- Using ccache if found : ON 2025-08-26T19:33:24.9463470Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2025-08-26T19:33:24.9465910Z -- 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-08-26T19:33:24.9468640Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal -weak_framework IOKit 2025-08-26T19:33:24.9469180Z -- Static LD flags : 2025-08-26T19:33:24.9469340Z -- Module LD flags : 2025-08-26T19:33:24.9469490Z -- Build type : Release 2025-08-26T19:33:24.9470060Z -- 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-08-26T19:33:24.9470770Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages 2025-08-26T19:33:24.9471180Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-08-26T19:33:24.9471430Z -- USE_GOLD_LINKER : OFF 2025-08-26T19:33:24.9471580Z -- 2025-08-26T19:33:24.9471680Z -- TORCH_VERSION : 2.9.0 2025-08-26T19:33:24.9471850Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-08-26T19:33:24.9472020Z -- BUILD_BINARY : OFF 2025-08-26T19:33:24.9472180Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-08-26T19:33:24.9472330Z -- Link local protobuf : ON 2025-08-26T19:33:24.9472480Z -- BUILD_PYTHON : True 2025-08-26T19:33:24.9472630Z -- Python version : 3.12.11 2025-08-26T19:33:24.9473090Z -- Python executable : /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/bin/python 2025-08-26T19:33:24.9473370Z -- Python library : 2025-08-26T19:33:24.9473700Z -- Python includes : /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 2025-08-26T19:33:24.9474200Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages 2025-08-26T19:33:24.9474520Z -- BUILD_SHARED_LIBS : ON 2025-08-26T19:33:24.9474800Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-08-26T19:33:24.9474980Z -- BUILD_TEST : False 2025-08-26T19:33:24.9475140Z -- BUILD_JNI : OFF 2025-08-26T19:33:24.9475300Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-08-26T19:33:24.9475450Z -- BUILD_LITE_INTERPRETER: OFF 2025-08-26T19:33:24.9475600Z -- CROSS_COMPILING_MACOSX : 2025-08-26T19:33:24.9475760Z -- INTERN_BUILD_MOBILE : 2025-08-26T19:33:24.9475910Z -- TRACING_BASED : OFF 2025-08-26T19:33:24.9476050Z -- USE_BLAS : 1 2025-08-26T19:33:24.9476200Z -- BLAS : accelerate 2025-08-26T19:33:24.9476380Z -- BLAS_HAS_SBGEMM : 2025-08-26T19:33:24.9476520Z -- USE_LAPACK : 1 2025-08-26T19:33:24.9476740Z -- LAPACK : accelerate 2025-08-26T19:33:24.9476920Z -- USE_ASAN : OFF 2025-08-26T19:33:24.9477070Z -- USE_TSAN : OFF 2025-08-26T19:33:24.9477240Z -- USE_CPP_CODE_COVERAGE : OFF 2025-08-26T19:33:24.9477400Z -- USE_CUDA : OFF 2025-08-26T19:33:24.9477560Z -- USE_XPU : OFF 2025-08-26T19:33:24.9477710Z -- USE_ROCM : OFF 2025-08-26T19:33:24.9477860Z -- BUILD_NVFUSER : 2025-08-26T19:33:24.9478010Z -- USE_EIGEN_FOR_BLAS : ON 2025-08-26T19:33:24.9478190Z -- USE_EIGEN_FOR_SPARSE : OFF 2025-08-26T19:33:24.9478340Z -- USE_FBGEMM : OFF 2025-08-26T19:33:24.9478490Z -- USE_KINETO : ON 2025-08-26T19:33:24.9478640Z -- USE_GFLAGS : OFF 2025-08-26T19:33:24.9478790Z -- USE_GLOG : OFF 2025-08-26T19:33:24.9478950Z -- USE_LITE_PROTO : OFF 2025-08-26T19:33:24.9479110Z -- USE_PYTORCH_METAL : 1 2025-08-26T19:33:24.9479270Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-08-26T19:33:24.9479450Z -- USE_MPS : ON 2025-08-26T19:33:24.9479600Z -- CAN_COMPILE_METAL : NO 2025-08-26T19:33:24.9479750Z -- USE_MKL : OFF 2025-08-26T19:33:24.9479900Z -- USE_MKLDNN : OFF 2025-08-26T19:33:24.9480050Z -- USE_KLEIDIAI : ON 2025-08-26T19:33:24.9480200Z -- USE_UCC : OFF 2025-08-26T19:33:24.9480350Z -- USE_ITT : OFF 2025-08-26T19:33:24.9480500Z -- USE_XCCL : OFF 2025-08-26T19:33:24.9480650Z -- USE_NCCL : OFF 2025-08-26T19:33:24.9480800Z -- Found NVSHMEM : 2025-08-26T19:33:24.9481010Z -- USE_NNPACK : ON 2025-08-26T19:33:24.9481160Z -- USE_NUMPY : ON 2025-08-26T19:33:24.9481310Z -- USE_OBSERVERS : ON 2025-08-26T19:33:24.9481470Z -- USE_OPENCL : OFF 2025-08-26T19:33:24.9481630Z -- USE_OPENMP : 1 2025-08-26T19:33:24.9481780Z -- USE_MIMALLOC : OFF 2025-08-26T19:33:24.9481930Z -- USE_VULKAN : OFF 2025-08-26T19:33:24.9482080Z -- USE_PROF : OFF 2025-08-26T19:33:24.9482240Z -- USE_PYTORCH_QNNPACK : ON 2025-08-26T19:33:24.9482390Z -- USE_XNNPACK : ON 2025-08-26T19:33:24.9482540Z -- USE_DISTRIBUTED : 0 2025-08-26T19:33:24.9482710Z -- Public Dependencies : 2025-08-26T19:33:24.9483210Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;microkernels-prod;fp16;caffe2::openmp;kleidiai;fmt::fmt-header-only;kineto 2025-08-26T19:33:24.9483690Z -- Public CUDA Deps. : 2025-08-26T19:33:24.9483850Z -- Private CUDA Deps. : 2025-08-26T19:33:24.9484010Z -- USE_COREML_DELEGATE : OFF 2025-08-26T19:33:24.9484180Z -- BUILD_LAZY_TS_BACKEND : ON 2025-08-26T19:33:24.9484340Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-08-26T19:33:24.9515770Z -- Configuring done (34.8s) 2025-08-26T19:33:25.8564240Z -- Generating done (0.7s) 2025-08-26T19:33:25.9911980Z CMake Warning: 2025-08-26T19:33:25.9912230Z Manually-specified variables were not used by the project: 2025-08-26T19:33:25.9912420Z 2025-08-26T19:33:25.9912480Z BUILD_ENVIRONMENT 2025-08-26T19:33:25.9912580Z 2025-08-26T19:33:25.9912580Z 2025-08-26T19:33:25.9944960Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2025-08-26T19:33:26.0133680Z cmake --build . --target install --config Release 2025-08-26T19:33:28.0959370Z [1/4] Generating ATen declarations_yaml 2025-08-26T19:33:30.5254210Z [2/4] Generating ATen headers 2025-08-26T19:33:31.4505480Z [3/4] Generating ATen sources 2025-08-26T19:33:31.7335560Z [1/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2025-08-26T19:33:31.7356370Z [2/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2025-08-26T19:33:31.7430040Z [3/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-08-26T19:33:31.7430820Z [4/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2025-08-26T19:33:31.7475020Z [5/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2025-08-26T19:33:31.7479740Z [6/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2025-08-26T19:33:31.7556620Z [7/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2025-08-26T19:33:31.7565020Z [8/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-08-26T19:33:31.7799000Z [9/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2025-08-26T19:33:31.7883980Z [10/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2025-08-26T19:33:31.8451900Z [11/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2025-08-26T19:33:31.8514520Z [12/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2025-08-26T19:33:31.8543670Z [13/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2025-08-26T19:33:31.8551030Z [14/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2025-08-26T19:33:31.8556650Z [15/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2025-08-26T19:33:31.8734360Z [16/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2025-08-26T19:33:31.8742060Z [17/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2025-08-26T19:33:31.8752610Z [18/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2025-08-26T19:33:31.8966310Z [19/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2025-08-26T19:33:31.9436830Z [20/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2025-08-26T19:33:31.9474170Z [21/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2025-08-26T19:33:31.9547600Z [22/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2025-08-26T19:33:31.9585450Z [23/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2025-08-26T19:33:31.9591590Z [24/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2025-08-26T19:33:31.9657130Z [25/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2025-08-26T19:33:31.9742870Z [26/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2025-08-26T19:33:31.9743670Z [27/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2025-08-26T19:33:31.9953130Z [28/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2025-08-26T19:33:31.9968280Z [29/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2025-08-26T19:33:32.0431860Z [30/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2025-08-26T19:33:32.0489320Z [31/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2025-08-26T19:33:32.0633500Z [32/5160] 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-08-26T19:33:32.0641130Z [33/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2025-08-26T19:33:32.0643380Z [34/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2025-08-26T19:33:32.0658980Z [35/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2025-08-26T19:33:32.0821070Z [36/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2025-08-26T19:33:32.0866380Z [37/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2025-08-26T19:33:32.0877530Z [38/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2025-08-26T19:33:32.0981140Z [39/5160] 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-08-26T19:33:32.1429090Z [40/5160] 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-08-26T19:33:32.1669590Z [41/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2025-08-26T19:33:32.1672510Z [42/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2025-08-26T19:33:32.1687470Z [43/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2025-08-26T19:33:32.1811070Z [44/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2025-08-26T19:33:32.1821860Z [45/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2025-08-26T19:33:32.1833620Z [46/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2025-08-26T19:33:32.1975020Z [47/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2025-08-26T19:33:32.2074690Z [48/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2025-08-26T19:33:32.2102430Z [49/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2025-08-26T19:33:32.2493010Z [50/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2025-08-26T19:33:32.2563360Z [51/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2025-08-26T19:33:32.2739600Z [52/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2025-08-26T19:33:32.2766640Z [53/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2025-08-26T19:33:32.2789690Z [54/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2025-08-26T19:33:32.2925790Z [55/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-08-26T19:33:32.2965880Z [56/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2025-08-26T19:33:32.3111850Z [57/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2025-08-26T19:33:32.3116800Z [58/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2025-08-26T19:33:32.3307120Z [59/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2025-08-26T19:33:32.3370120Z [60/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2025-08-26T19:33:32.3607200Z [61/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2025-08-26T19:33:32.3712880Z [62/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2025-08-26T19:33:32.3758030Z [63/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2025-08-26T19:33:32.3899270Z [64/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2025-08-26T19:33:32.4104990Z [65/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2025-08-26T19:33:32.4204510Z [66/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2025-08-26T19:33:32.4265840Z [67/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2025-08-26T19:33:32.4271080Z [68/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2025-08-26T19:33:32.4392290Z [69/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2025-08-26T19:33:32.4436540Z [70/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2025-08-26T19:33:32.4551090Z [71/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2025-08-26T19:33:32.4581180Z [72/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2025-08-26T19:33:32.4584680Z [73/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2025-08-26T19:33:32.4771540Z [74/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2025-08-26T19:33:32.5252920Z [75/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2025-08-26T19:33:32.5469560Z [76/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2025-08-26T19:33:32.5480910Z [77/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2025-08-26T19:33:32.5483840Z [78/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2025-08-26T19:33:32.5488380Z [79/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2025-08-26T19:33:32.5499630Z [80/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2025-08-26T19:33:32.5563710Z [81/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2025-08-26T19:33:32.5701470Z [82/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2025-08-26T19:33:32.5713920Z [83/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2025-08-26T19:33:32.5745850Z [84/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2025-08-26T19:33:32.6040350Z [85/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2025-08-26T19:33:32.6556860Z [86/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2025-08-26T19:33:32.6570580Z [87/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2025-08-26T19:33:32.6582200Z [88/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2025-08-26T19:33:32.6724860Z [89/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2025-08-26T19:33:32.6751160Z [90/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2025-08-26T19:33:32.6753840Z [91/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2025-08-26T19:33:32.6795370Z [92/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2025-08-26T19:33:32.6969050Z [93/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2025-08-26T19:33:32.6975050Z [94/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2025-08-26T19:33:32.6976940Z [95/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2025-08-26T19:33:32.7497330Z [96/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2025-08-26T19:33:32.7577120Z [97/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2025-08-26T19:33:32.7591130Z [98/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2025-08-26T19:33:32.7768580Z [99/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u4.c.o 2025-08-26T19:33:32.7797150Z [100/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u2.c.o 2025-08-26T19:33:32.7805450Z [101/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u1.c.o 2025-08-26T19:33:32.7950600Z [102/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u4.c.o 2025-08-26T19:33:32.8109180Z [103/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u1.c.o 2025-08-26T19:33:32.8234850Z [104/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u2.c.o 2025-08-26T19:33:32.8434070Z [105/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2025-08-26T19:33:32.8451080Z [106/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2025-08-26T19:33:32.8607360Z [107/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2025-08-26T19:33:32.8645430Z [108/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2025-08-26T19:33:32.8647310Z [109/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2025-08-26T19:33:32.8773590Z [110/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2025-08-26T19:33:32.8780600Z [111/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2025-08-26T19:33:32.8920630Z [112/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2025-08-26T19:33:32.8930160Z [113/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2025-08-26T19:33:32.8936690Z [114/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2025-08-26T19:33:32.9491130Z [115/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u1.c.o 2025-08-26T19:33:32.9543280Z [116/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u2.c.o 2025-08-26T19:33:32.9913340Z [117/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2025-08-26T19:33:32.9927560Z [118/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2025-08-26T19:33:32.9930250Z [119/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2025-08-26T19:33:32.9960840Z [120/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2025-08-26T19:33:32.9974070Z [121/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2025-08-26T19:33:33.0161350Z [122/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2025-08-26T19:33:33.0163740Z [123/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2025-08-26T19:33:33.0166250Z [124/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2025-08-26T19:33:33.0427140Z [125/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2025-08-26T19:33:33.0511920Z [126/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2025-08-26T19:33:33.1020310Z [127/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2025-08-26T19:33:33.1022110Z [128/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u3.c.o 2025-08-26T19:33:33.1136900Z [129/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2025-08-26T19:33:33.1140750Z [130/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2025-08-26T19:33:33.1144340Z [131/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2025-08-26T19:33:33.1172790Z [132/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-08-26T19:33:33.1198610Z [133/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2025-08-26T19:33:33.1203640Z [134/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2025-08-26T19:33:33.1426450Z [135/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2025-08-26T19:33:33.1718240Z [136/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2025-08-26T19:33:33.2084910Z [137/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2025-08-26T19:33:33.2108270Z [138/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2025-08-26T19:33:33.2156210Z [139/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2025-08-26T19:33:33.2246980Z [140/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2025-08-26T19:33:33.2258520Z [141/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2025-08-26T19:33:33.2264200Z [142/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2025-08-26T19:33:33.2275140Z [143/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2025-08-26T19:33:33.2456900Z [144/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2025-08-26T19:33:33.2597920Z [145/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2025-08-26T19:33:33.2707750Z [146/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2025-08-26T19:33:33.3188700Z [147/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2025-08-26T19:33:33.3230070Z [148/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2025-08-26T19:33:33.3293510Z [149/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2025-08-26T19:33:33.3346850Z [150/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2025-08-26T19:33:33.3357260Z [151/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2025-08-26T19:33:33.3360630Z [152/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2025-08-26T19:33:33.3518880Z [153/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2025-08-26T19:33:33.3563070Z [154/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2025-08-26T19:33:33.3698680Z [155/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2025-08-26T19:33:33.4091970Z [156/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2025-08-26T19:33:33.4241400Z [157/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2025-08-26T19:33:33.4376790Z [158/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2025-08-26T19:33:33.4405150Z [159/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2025-08-26T19:33:33.4414820Z [160/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2025-08-26T19:33:33.4464360Z [161/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2025-08-26T19:33:33.4566560Z [162/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2025-08-26T19:33:33.4580640Z [163/5160] 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-08-26T19:33:33.4715490Z [164/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-08-26T19:33:33.5190820Z [165/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-08-26T19:33:33.5326150Z [166/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2025-08-26T19:33:33.5410630Z [167/5160] 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-08-26T19:33:33.5411610Z [168/5160] 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-08-26T19:33:33.5440200Z [169/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2025-08-26T19:33:33.5442930Z [170/5160] 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-08-26T19:33:33.5590800Z [171/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2025-08-26T19:33:33.5597400Z [172/5160] 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-08-26T19:33:33.5610650Z [173/5160] 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-08-26T19:33:33.6086190Z [174/5160] 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-08-26T19:33:33.6304130Z [175/5160] 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-08-26T19:33:33.6331620Z [176/5160] 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-08-26T19:33:33.6433030Z [177/5160] 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-08-26T19:33:33.6557130Z [178/5160] 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-08-26T19:33:33.6627480Z [179/5160] 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-08-26T19:33:33.6729990Z [180/5160] 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-08-26T19:33:33.6834780Z [181/5160] 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-08-26T19:33:33.6837960Z [182/5160] 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-08-26T19:33:33.6942850Z [183/5160] 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-08-26T19:33:33.6961990Z [184/5160] 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-08-26T19:33:33.7190220Z [185/5160] 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-08-26T19:33:33.7323180Z [186/5160] 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-08-26T19:33:33.7386900Z [187/5160] 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-08-26T19:33:33.7645750Z [188/5160] 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-08-26T19:33:33.7795650Z [189/5160] 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-08-26T19:33:33.7964680Z [190/5160] 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-08-26T19:33:33.7971630Z [191/5160] 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-08-26T19:33:33.8129720Z [192/5160] 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-08-26T19:33:33.8134580Z [193/5160] 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-08-26T19:33:33.8267830Z [194/5160] 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-08-26T19:33:33.8342870Z [195/5160] 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-08-26T19:33:33.8468450Z [196/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2025-08-26T19:33:33.8486920Z [197/5160] 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-08-26T19:33:33.8688390Z [198/5160] 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-08-26T19:33:33.8694320Z [199/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2025-08-26T19:33:33.8851200Z [200/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2025-08-26T19:33:33.8897210Z [201/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2025-08-26T19:33:33.9028640Z [202/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2025-08-26T19:33:33.9038650Z [203/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2025-08-26T19:33:33.9367470Z [204/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2025-08-26T19:33:33.9601520Z [205/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2025-08-26T19:33:33.9647100Z [206/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2025-08-26T19:33:33.9717860Z [207/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2025-08-26T19:33:33.9731970Z [208/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2025-08-26T19:33:33.9741100Z [209/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2025-08-26T19:33:33.9908040Z [210/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2025-08-26T19:33:33.9909960Z [211/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2025-08-26T19:33:34.0040430Z [212/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2025-08-26T19:33:34.0248550Z [213/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2025-08-26T19:33:34.0461790Z [214/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2025-08-26T19:33:34.0565470Z [215/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2025-08-26T19:33:34.0697840Z [216/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2025-08-26T19:33:34.0795720Z [217/5160] 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-08-26T19:33:34.0809240Z [218/5160] 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-08-26T19:33:34.0826790Z [219/5160] 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-08-26T19:33:34.1012340Z [220/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-gio-scalar.c.o 2025-08-26T19:33:34.1026810Z [221/5160] 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-08-26T19:33:34.1392040Z [222/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:34.1408780Z [223/5160] 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-08-26T19:33:34.1533690Z [224/5160] 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-08-26T19:33:34.1722080Z [225/5160] 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-08-26T19:33:34.1959870Z [226/5160] 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-08-26T19:33:34.1983170Z [227/5160] 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-08-26T19:33:34.2006010Z [228/5160] 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-08-26T19:33:34.2100390Z [229/5160] 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-08-26T19:33:34.2258760Z [230/5160] 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-08-26T19:33:34.2272040Z [231/5160] 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-08-26T19:33:34.2498860Z [232/5160] 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-08-26T19:33:34.2499960Z [233/5160] 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-08-26T19:33:34.2613270Z [234/5160] 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-08-26T19:33:34.2972860Z [235/5160] 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-08-26T19:33:34.3007160Z [236/5160] 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-08-26T19:33:34.3013400Z [237/5160] 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-08-26T19:33:34.3022780Z [238/5160] 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-08-26T19:33:34.3232950Z [239/5160] 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-08-26T19:33:34.3238350Z [240/5160] 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-08-26T19:33:34.3388460Z [241/5160] 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-08-26T19:33:34.3491540Z [242/5160] 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-08-26T19:33:34.3494240Z [243/5160] 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-08-26T19:33:34.3538630Z [244/5160] 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-08-26T19:33:34.4111600Z [245/5160] 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-08-26T19:33:34.4113980Z [246/5160] 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-08-26T19:33:34.4263580Z [247/5160] 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-08-26T19:33:34.4271160Z [248/5160] 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-08-26T19:33:34.4278540Z [249/5160] 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-08-26T19:33:34.4282310Z [250/5160] 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-08-26T19:33:34.4535860Z [251/5160] 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-08-26T19:33:34.4815920Z [252/5160] 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-08-26T19:33:34.4939220Z [253/5160] 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-08-26T19:33:34.4960400Z [254/5160] 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-08-26T19:33:34.5094720Z [255/5160] 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-08-26T19:33:34.5153440Z [256/5160] 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-08-26T19:33:34.5331460Z [257/5160] 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-08-26T19:33:34.5334340Z [258/5160] 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-08-26T19:33:34.5359060Z [259/5160] 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-08-26T19:33:34.5636900Z [260/5160] 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-08-26T19:33:34.5640770Z [261/5160] 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-08-26T19:33:34.5884510Z [262/5160] 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-08-26T19:33:34.6012070Z [263/5160] 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-08-26T19:33:34.6153330Z [264/5160] 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-08-26T19:33:34.6318260Z [265/5160] 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-08-26T19:33:34.6478780Z [266/5160] 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-08-26T19:33:34.6485070Z [267/5160] 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-08-26T19:33:34.6648720Z [268/5160] 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-08-26T19:33:34.6721730Z [269/5160] 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-08-26T19:33:34.6837620Z [270/5160] 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-08-26T19:33:34.6909140Z [271/5160] 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-08-26T19:33:34.6911030Z [272/5160] 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-08-26T19:33:34.7071740Z [273/5160] 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-08-26T19:33:34.7166290Z [274/5160] 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-08-26T19:33:34.7540020Z [275/5160] 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-08-26T19:33:34.7556420Z [276/5160] 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-08-26T19:33:34.7796550Z [277/5160] 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-08-26T19:33:34.7860280Z [278/5160] 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-08-26T19:33:34.7996070Z [279/5160] 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-08-26T19:33:34.8044190Z [280/5160] 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-08-26T19:33:34.8189680Z [281/5160] 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-08-26T19:33:34.8214500Z [282/5160] 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-08-26T19:33:34.8251090Z [283/5160] 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-08-26T19:33:34.8457010Z [284/5160] 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-08-26T19:33:34.8654990Z [285/5160] 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-08-26T19:33:34.8896020Z [286/5160] 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-08-26T19:33:34.8939430Z [287/5160] 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-08-26T19:33:34.8942370Z [288/5160] 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-08-26T19:33:34.9155000Z [289/5160] 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-08-26T19:33:34.9157840Z [290/5160] 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-08-26T19:33:34.9371770Z [291/5160] 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-08-26T19:33:34.9387520Z [292/5160] 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-08-26T19:33:34.9571460Z [293/5160] 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-08-26T19:33:34.9608380Z [294/5160] 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-08-26T19:33:34.9808460Z [295/5160] 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-08-26T19:33:35.0052070Z [296/5160] 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-08-26T19:33:35.0143020Z [297/5160] 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-08-26T19:33:35.0249850Z [298/5160] 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-08-26T19:33:35.0319030Z [299/5160] 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-08-26T19:33:35.0401400Z [300/5160] 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-08-26T19:33:35.0513860Z [301/5160] 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-08-26T19:33:35.0554550Z [302/5160] 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-08-26T19:33:35.0784980Z [303/5160] 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-08-26T19:33:35.0787720Z [304/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u1.c.o 2025-08-26T19:33:35.0991140Z [305/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u2.c.o 2025-08-26T19:33:35.1097230Z [306/5160] 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-08-26T19:33:35.1236870Z [307/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.1272360Z [308/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2025-08-26T19:33:35.1415110Z [309/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2025-08-26T19:33:35.1516800Z [310/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2025-08-26T19:33:35.1618730Z [311/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2025-08-26T19:33:35.1622190Z [312/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2025-08-26T19:33:35.1660610Z [313/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2025-08-26T19:33:35.1776800Z [314/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2025-08-26T19:33:35.2104660Z [315/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2025-08-26T19:33:35.2129670Z [316/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2025-08-26T19:33:35.2414070Z [317/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2025-08-26T19:33:35.2525090Z [318/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2025-08-26T19:33:35.2596600Z [319/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.2631890Z [320/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.2634720Z [321/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.2637320Z [322/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.2641820Z [323/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.2746800Z [324/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.3166710Z [325/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.3242960Z [326/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.3510870Z [327/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.3573770Z [328/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.3730660Z [329/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.3733650Z [330/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.3735870Z [331/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.3757520Z [332/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.3802370Z [333/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.3804800Z [334/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.4282210Z [335/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.4343530Z [336/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.4594320Z [337/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.4634760Z [338/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.4826700Z [339/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.4855510Z [340/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.4987060Z [341/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.4993910Z [342/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.4996490Z [343/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.5070850Z [344/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.5384010Z [345/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.5550940Z [346/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.5692230Z [347/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.5802800Z [348/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.5919470Z [349/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.6046200Z [350/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.6060340Z [351/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.6100910Z [352/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.6109860Z [353/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.6357110Z [354/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.6425390Z [355/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.6644480Z [356/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.6757740Z [357/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.6963410Z [358/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.7016160Z [359/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2025-08-26T19:33:35.7214690Z [360/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.7221560Z [361/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.7525600Z [362/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2025-08-26T19:33:35.7591460Z [363/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.7708750Z [364/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.7718970Z [365/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.7872960Z [366/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.7921380Z [367/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.7926700Z [368/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.7948550Z [369/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.8213000Z [370/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.8229030Z [371/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.8537250Z [372/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.8883730Z [373/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.9082850Z [374/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.9105880Z [375/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.9131220Z [376/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.9143890Z [377/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:35.9157400Z [378/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:35.9298890Z [379/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.9519830Z [380/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:35.9724280Z [381/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:35.9743920Z [382/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.0053820Z [383/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.0205590Z [384/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.0245880Z [385/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.0269210Z [386/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:36.0276210Z [387/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.0381930Z [388/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.0558610Z [389/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.0595430Z [390/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.0932670Z [391/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:36.0991220Z [392/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.1094420Z [393/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.1459310Z [394/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.1555810Z [395/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.1559010Z [396/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:36.1610260Z [397/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.1730650Z [398/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.1832890Z [399/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.1904020Z [400/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.2056480Z [401/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:36.2422660Z [402/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.2504000Z [403/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.2617670Z [404/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.2638030Z [405/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.2805250Z [406/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.2816230Z [407/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:36.2941370Z [408/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.2959260Z [409/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.3223260Z [410/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:36.3330990Z [411/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:36.3584020Z [412/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:36.3627280Z [413/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2025-08-26T19:33:36.3687130Z [414/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2025-08-26T19:33:36.3783390Z [415/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2025-08-26T19:33:36.3874740Z [416/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:36.3990280Z [417/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2025-08-26T19:33:36.4002040Z [418/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2025-08-26T19:33:36.4050250Z [419/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u1.c.o 2025-08-26T19:33:36.4122890Z [420/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u2.c.o 2025-08-26T19:33:36.4152540Z [421/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u4.c.o 2025-08-26T19:33:36.4602190Z [422/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2025-08-26T19:33:36.4627910Z [423/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2025-08-26T19:33:36.4739880Z [424/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2025-08-26T19:33:36.4943160Z [425/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2025-08-26T19:33:36.4961170Z [426/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2025-08-26T19:33:36.5026390Z [427/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2025-08-26T19:33:36.5032660Z [428/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2025-08-26T19:33:36.5144490Z [429/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2025-08-26T19:33:36.5214870Z [430/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2025-08-26T19:33:36.5601020Z [431/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2025-08-26T19:33:36.5658280Z [432/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2025-08-26T19:33:36.5809550Z [433/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2025-08-26T19:33:36.5977420Z [434/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2025-08-26T19:33:36.5995780Z [435/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2025-08-26T19:33:36.6135970Z [436/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2025-08-26T19:33:36.6139910Z [437/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2025-08-26T19:33:36.6156020Z [438/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2025-08-26T19:33:36.6363600Z [439/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2025-08-26T19:33:36.6495900Z [440/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2025-08-26T19:33:36.6514270Z [441/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2025-08-26T19:33:36.6658240Z [442/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2025-08-26T19:33:36.6663670Z [443/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2025-08-26T19:33:36.6939030Z [444/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2025-08-26T19:33:36.6946990Z [445/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2025-08-26T19:33:36.7276980Z [446/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2025-08-26T19:33:36.7321610Z [447/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2025-08-26T19:33:36.7395260Z [448/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2025-08-26T19:33:36.7451420Z [449/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2025-08-26T19:33:36.7587950Z [450/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vgelu/gen/f32-vgelu-scalar.c.o 2025-08-26T19:33:36.7680130Z [451/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2025-08-26T19:33:36.7734180Z [452/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2025-08-26T19:33:36.7798930Z [453/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2025-08-26T19:33:36.8003480Z [454/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlog/gen/f32-vlog-scalar-log.c.o 2025-08-26T19:33:36.8016960Z [455/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2025-08-26T19:33:36.8188550Z [456/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2025-08-26T19:33:36.8318630Z [457/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2025-08-26T19:33:36.8354060Z [458/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2025-08-26T19:33:36.8501010Z [459/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2025-08-26T19:33:36.8556710Z [460/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2025-08-26T19:33:36.8581820Z [461/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2025-08-26T19:33:36.8799010Z [462/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-goi-scalar.c.o 2025-08-26T19:33:36.8804430Z [463/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2025-08-26T19:33:36.8978140Z [464/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2025-08-26T19:33:36.9204510Z [465/5160] 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-08-26T19:33:36.9261810Z [466/5160] 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-08-26T19:33:36.9324490Z [467/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2025-08-26T19:33:36.9426080Z [468/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2025-08-26T19:33:36.9543720Z [469/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2025-08-26T19:33:36.9661730Z [470/5160] 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-08-26T19:33:36.9712890Z [471/5160] 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-08-26T19:33:36.9897790Z [472/5160] 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-08-26T19:33:36.9937150Z [473/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2025-08-26T19:33:37.0169590Z [474/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2025-08-26T19:33:37.0247990Z [475/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2025-08-26T19:33:37.0458750Z [476/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2025-08-26T19:33:37.0463260Z [477/5160] 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-08-26T19:33:37.0629080Z [478/5160] 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-08-26T19:33:37.0874870Z [479/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2025-08-26T19:33:37.0882160Z [480/5160] 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-08-26T19:33:37.1029980Z [481/5160] 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-08-26T19:33:37.1171930Z [482/5160] 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-08-26T19:33:37.1195320Z [483/5160] 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-08-26T19:33:37.1228490Z [484/5160] 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-08-26T19:33:37.1416380Z [485/5160] 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-08-26T19:33:37.1596990Z [486/5160] 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-08-26T19:33:37.1643220Z [487/5160] 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-08-26T19:33:37.1732130Z [488/5160] 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-08-26T19:33:37.1940490Z [489/5160] 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-08-26T19:33:37.2011800Z [490/5160] 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-08-26T19:33:37.2271420Z [491/5160] 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-08-26T19:33:37.2310690Z [492/5160] 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-08-26T19:33:37.2380270Z [493/5160] 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-08-26T19:33:37.2576010Z [494/5160] 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-08-26T19:33:37.2827130Z [495/5160] 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-08-26T19:33:37.2830600Z [496/5160] 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-08-26T19:33:37.2971100Z [497/5160] 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-08-26T19:33:37.3022920Z [498/5160] 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-08-26T19:33:37.3055990Z [499/5160] 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-08-26T19:33:37.3301440Z [500/5160] 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-08-26T19:33:37.3371340Z [501/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.3539160Z [502/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.3630060Z [503/5160] 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-08-26T19:33:37.3645250Z [504/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.3775910Z [505/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.3816750Z [506/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.3988520Z [507/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.4023190Z [508/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.4076650Z [509/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.4521240Z [510/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.4533100Z [511/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.4542380Z [512/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.4783010Z [513/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.4806440Z [514/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.4887070Z [515/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.5076470Z [516/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.5135960Z [517/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.5432560Z [518/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.5475170Z [519/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.5496030Z [520/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.5662320Z [521/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.5664610Z [522/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.5666830Z [523/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.5881660Z [524/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.5888150Z [525/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.6083000Z [526/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.6152490Z [527/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.6442420Z [528/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.6475170Z [529/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.6664800Z [530/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-08-26T19:33:37.6768350Z [531/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.6789860Z [532/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.6942130Z [533/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.6961280Z [534/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-08-26T19:33:37.7106360Z [535/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.7167300Z [536/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.7248560Z [537/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.7475100Z [538/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-08-26T19:33:37.7580710Z [539/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.7808420Z [540/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:33:37.7920280Z [541/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.7943320Z [542/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2025-08-26T19:33:37.8033660Z [543/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.8135350Z [544/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2025-08-26T19:33:37.8136640Z [545/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:37.8171310Z [546/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-gio-scalar.c.o 2025-08-26T19:33:37.8198120Z [547/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-goi-scalar.c.o 2025-08-26T19:33:37.8497590Z [548/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-08-26T19:33:37.8516000Z [549/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-scalar.c.o 2025-08-26T19:33:37.8747740Z [550/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-gio-scalar.c.o 2025-08-26T19:33:37.8956560Z [551/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-goi-scalar.c.o 2025-08-26T19:33:37.8960030Z [552/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-gio-scalar.c.o 2025-08-26T19:33:37.9071300Z [553/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-gio-scalar.c.o 2025-08-26T19:33:37.9192420Z [554/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2025-08-26T19:33:37.9244110Z [555/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2025-08-26T19:33:37.9357630Z [556/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:37.9461080Z [557/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2025-08-26T19:33:37.9477480Z [558/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2025-08-26T19:33:37.9755050Z [559/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2025-08-26T19:33:37.9962220Z [560/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2025-08-26T19:33:38.0070870Z [561/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2025-08-26T19:33:38.0079070Z [562/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2025-08-26T19:33:38.0245430Z [563/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2025-08-26T19:33:38.0278420Z [564/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2025-08-26T19:33:38.0313310Z [565/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2025-08-26T19:33:38.0746420Z [566/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2025-08-26T19:33:38.0981280Z [567/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2025-08-26T19:33:38.1105510Z [568/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2025-08-26T19:33:38.1160470Z [569/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2025-08-26T19:33:38.1192980Z [570/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2025-08-26T19:33:38.1333390Z [571/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2025-08-26T19:33:38.1335980Z [572/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2025-08-26T19:33:38.1477260Z [573/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2025-08-26T19:33:38.1501570Z [574/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2025-08-26T19:33:38.1523450Z [575/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2025-08-26T19:33:38.2074740Z [576/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2025-08-26T19:33:38.2260760Z [577/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2025-08-26T19:33:38.2329570Z [578/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2025-08-26T19:33:38.2489130Z [579/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2025-08-26T19:33:38.2510050Z [580/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.2723840Z [581/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.2742350Z [582/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2025-08-26T19:33:38.2744780Z [583/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.2746840Z [584/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2025-08-26T19:33:38.3010410Z [585/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.3475360Z [586/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.3662260Z [587/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2025-08-26T19:33:38.3678780Z [588/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.3692770Z [589/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2025-08-26T19:33:38.3880130Z [590/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2025-08-26T19:33:38.4355580Z [591/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2025-08-26T19:33:38.4370270Z [592/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2025-08-26T19:33:38.4445370Z [593/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2025-08-26T19:33:38.4455070Z [594/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2025-08-26T19:33:38.4533300Z [595/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2025-08-26T19:33:38.4646540Z [596/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2025-08-26T19:33:38.5068720Z [597/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2025-08-26T19:33:38.5131600Z [598/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2025-08-26T19:33:38.5405870Z [599/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2025-08-26T19:33:38.5422680Z [600/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.5646810Z [601/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2025-08-26T19:33:38.5649590Z [602/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.5716640Z [603/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.5844780Z [604/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2025-08-26T19:33:38.5948080Z [605/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2025-08-26T19:33:38.5974100Z [606/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2025-08-26T19:33:38.6348180Z [607/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2025-08-26T19:33:38.6526440Z [608/5160] 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-08-26T19:33:38.6624730Z [609/5160] 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-08-26T19:33:38.6694210Z [610/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2025-08-26T19:33:38.7015130Z [611/5160] 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-08-26T19:33:38.7125530Z [612/5160] 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-08-26T19:33:38.7128580Z [613/5160] 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-08-26T19:33:38.7161590Z [614/5160] 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-08-26T19:33:38.7303160Z [615/5160] 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-08-26T19:33:38.7397740Z [616/5160] 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-08-26T19:33:38.7720560Z [617/5160] 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-08-26T19:33:38.7867730Z [618/5160] 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-08-26T19:33:38.7930980Z [619/5160] 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-08-26T19:33:38.7951180Z [620/5160] 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-08-26T19:33:38.8531110Z [621/5160] 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-08-26T19:33:38.8538830Z [622/5160] 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-08-26T19:33:38.8573760Z [623/5160] 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-08-26T19:33:38.8770080Z [624/5160] 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-08-26T19:33:38.8817850Z [625/5160] 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-08-26T19:33:38.8937820Z [626/5160] 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-08-26T19:33:38.9162030Z [627/5160] 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-08-26T19:33:38.9203180Z [628/5160] 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-08-26T19:33:38.9474580Z [629/5160] 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-08-26T19:33:38.9530410Z [630/5160] 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-08-26T19:33:38.9844250Z [631/5160] 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-08-26T19:33:39.0023700Z [632/5160] 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-08-26T19:33:39.0026840Z [633/5160] 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-08-26T19:33:39.0047100Z [634/5160] 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-08-26T19:33:39.0253020Z [635/5160] 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-08-26T19:33:39.0401450Z [636/5160] 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-08-26T19:33:39.0652430Z [637/5160] 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-08-26T19:33:39.0756990Z [638/5160] 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-08-26T19:33:39.0887380Z [639/5160] 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-08-26T19:33:39.1024740Z [640/5160] 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-08-26T19:33:39.1070900Z [641/5160] 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-08-26T19:33:39.1299370Z [642/5160] 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-08-26T19:33:39.1341890Z [643/5160] 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-08-26T19:33:39.1366550Z [644/5160] 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-08-26T19:33:39.1536320Z [645/5160] 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-08-26T19:33:39.1716960Z [646/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2025-08-26T19:33:39.1955670Z [647/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2025-08-26T19:33:39.2107930Z [648/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2025-08-26T19:33:39.2560030Z [649/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.2712130Z [650/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2025-08-26T19:33:39.2736050Z [651/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.2758840Z [652/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:39.2765310Z [653/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.2768440Z [654/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.3453520Z [655/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2025-08-26T19:33:39.3541350Z [656/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.3588990Z [657/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:39.4050670Z [658/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.4175840Z [659/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.4181410Z [660/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2025-08-26T19:33:39.4195170Z [661/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.4215420Z [662/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.4271470Z [663/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:39.4415230Z [664/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2025-08-26T19:33:39.4969660Z [665/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.5008440Z [666/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.5316310Z [667/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.5380420Z [668/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2025-08-26T19:33:39.5507680Z [669/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.5660300Z [670/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.5764740Z [671/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2025-08-26T19:33:39.5864450Z [672/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.5869050Z [673/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:39.6100180Z [674/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2025-08-26T19:33:39.6417960Z [675/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:39.6601170Z [676/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.6689500Z [677/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2025-08-26T19:33:39.6870240Z [678/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2025-08-26T19:33:39.6939090Z [679/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.7197560Z [680/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:39.7215480Z [681/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:39.7377340Z [682/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:39.7379340Z [683/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2025-08-26T19:33:39.7441540Z [684/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2025-08-26T19:33:39.7610680Z [685/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2025-08-26T19:33:39.7773710Z [686/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:39.7865070Z [687/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u1.c.o 2025-08-26T19:33:39.8021670Z [688/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2025-08-26T19:33:39.8094140Z [689/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2025-08-26T19:33:39.8168680Z [690/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u2.c.o 2025-08-26T19:33:39.8237890Z [691/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2025-08-26T19:33:39.8389850Z [692/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2025-08-26T19:33:39.8397850Z [693/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2025-08-26T19:33:39.8561640Z [694/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2025-08-26T19:33:39.8565240Z [695/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2025-08-26T19:33:39.8748960Z [696/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2025-08-26T19:33:39.8771970Z [697/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2025-08-26T19:33:39.8961900Z [698/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2025-08-26T19:33:39.9076380Z [699/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2025-08-26T19:33:39.9321040Z [700/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2025-08-26T19:33:39.9351320Z [701/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2025-08-26T19:33:39.9466470Z [702/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2025-08-26T19:33:39.9492010Z [703/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2025-08-26T19:33:39.9535490Z [704/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2025-08-26T19:33:39.9628430Z [705/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2025-08-26T19:33:39.9731540Z [706/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2025-08-26T19:33:39.9861700Z [707/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u2.c.o 2025-08-26T19:33:39.9992360Z [708/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u4.c.o 2025-08-26T19:33:40.0265040Z [709/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u4.c.o 2025-08-26T19:33:40.0283000Z [710/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u4.c.o 2025-08-26T19:33:40.0399350Z [711/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2025-08-26T19:33:40.0442840Z [712/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8c8-gemm-gio-scalar.c.o 2025-08-26T19:33:40.0463630Z [713/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u4.c.o 2025-08-26T19:33:40.0517810Z [714/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u4.c.o 2025-08-26T19:33:40.0616250Z [715/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2025-08-26T19:33:40.0647860Z [716/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2025-08-26T19:33:40.0782520Z [717/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2025-08-26T19:33:40.0926460Z [718/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2025-08-26T19:33:40.1373820Z [719/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2025-08-26T19:33:40.1376370Z [720/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2025-08-26T19:33:40.1501780Z [721/5160] 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-08-26T19:33:40.1504430Z [722/5160] 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-08-26T19:33:40.1642840Z [723/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2025-08-26T19:33:40.1653060Z [724/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2025-08-26T19:33:40.1821230Z [725/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2025-08-26T19:33:40.1853480Z [726/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2025-08-26T19:33:40.1969820Z [727/5160] 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-08-26T19:33:40.2054560Z [728/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2025-08-26T19:33:40.2199600Z [729/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2025-08-26T19:33:40.2251540Z [730/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2025-08-26T19:33:40.2419150Z [731/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2025-08-26T19:33:40.2520410Z [732/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2025-08-26T19:33:40.2707100Z [733/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2025-08-26T19:33:40.2844560Z [734/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2025-08-26T19:33:40.2848880Z [735/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2025-08-26T19:33:40.2863560Z [736/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2025-08-26T19:33:40.3035130Z [737/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2025-08-26T19:33:40.3096530Z [738/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2025-08-26T19:33:40.3178740Z [739/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.3551370Z [740/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.3721290Z [741/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2025-08-26T19:33:40.3827310Z [742/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.3841350Z [743/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.3989650Z [744/5160] 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-08-26T19:33:40.4058450Z [745/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.4128870Z [746/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.4243100Z [747/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.4286610Z [748/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.4379780Z [749/5160] 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-08-26T19:33:40.4492310Z [750/5160] 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-08-26T19:33:40.4792270Z [751/5160] 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-08-26T19:33:40.4804370Z [752/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-scalar.c.o 2025-08-26T19:33:40.4833390Z [753/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-08-26T19:33:40.5006640Z [754/5160] 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-08-26T19:33:40.5012330Z [755/5160] 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-08-26T19:33:40.5306660Z [756/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-scalar.c.o 2025-08-26T19:33:40.5433870Z [757/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-scalar.c.o 2025-08-26T19:33:40.5629330Z [758/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2025-08-26T19:33:40.5632620Z [759/5160] 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-08-26T19:33:40.5653690Z [760/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2025-08-26T19:33:40.5701630Z [761/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2025-08-26T19:33:40.5715840Z [762/5160] 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-08-26T19:33:40.5723880Z [763/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2025-08-26T19:33:40.6220970Z [764/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2025-08-26T19:33:40.6234450Z [765/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2025-08-26T19:33:40.6365730Z [766/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2025-08-26T19:33:40.6807590Z [767/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2025-08-26T19:33:40.6809740Z [768/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2025-08-26T19:33:40.6811640Z [769/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2025-08-26T19:33:40.6869540Z [770/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2025-08-26T19:33:40.6872850Z [771/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2025-08-26T19:33:40.6883520Z [772/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2025-08-26T19:33:40.7008750Z [773/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2025-08-26T19:33:40.7096130Z [774/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2025-08-26T19:33:40.7107090Z [775/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2025-08-26T19:33:40.7402510Z [776/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2025-08-26T19:33:40.7816770Z [777/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.7841460Z [778/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.7967880Z [779/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.8019630Z [780/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.8088860Z [781/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.8132770Z [782/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2025-08-26T19:33:40.8207420Z [783/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2025-08-26T19:33:40.8209590Z [784/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.8448410Z [785/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2025-08-26T19:33:40.8665890Z [786/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2025-08-26T19:33:40.9263310Z [787/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2025-08-26T19:33:40.9293180Z [788/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2025-08-26T19:33:40.9324610Z [789/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2025-08-26T19:33:40.9363260Z [790/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2025-08-26T19:33:40.9373670Z [791/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2025-08-26T19:33:40.9465050Z [792/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2025-08-26T19:33:40.9702070Z [793/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2025-08-26T19:33:40.9727570Z [794/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2025-08-26T19:33:41.0239170Z [795/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2025-08-26T19:33:41.0265150Z [796/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2025-08-26T19:33:41.0508820Z [797/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2025-08-26T19:33:41.0597580Z [798/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2025-08-26T19:33:41.0652090Z [799/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u4.c.o 2025-08-26T19:33:41.0773170Z [800/5160] 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-08-26T19:33:41.0839570Z [801/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u8.c.o 2025-08-26T19:33:41.0888400Z [802/5160] 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-08-26T19:33:41.0992950Z [803/5160] 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-08-26T19:33:41.1711940Z [804/5160] 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-08-26T19:33:41.1716110Z [805/5160] 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-08-26T19:33:41.1731920Z [806/5160] 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-08-26T19:33:41.1877330Z [807/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2025-08-26T19:33:41.1884940Z [808/5160] 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-08-26T19:33:41.1951620Z [809/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2025-08-26T19:33:41.2057650Z [810/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2025-08-26T19:33:41.2260090Z [811/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2025-08-26T19:33:41.2263730Z [812/5160] 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-08-26T19:33:41.2979920Z [813/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-nr.c.o 2025-08-26T19:33:41.3102410Z [814/5160] 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-08-26T19:33:41.3160180Z [815/5160] 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-08-26T19:33:41.3165120Z [816/5160] 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-08-26T19:33:41.3203690Z [817/5160] 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-08-26T19:33:41.3354720Z [818/5160] 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-08-26T19:33:41.3464140Z [819/5160] 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-08-26T19:33:41.3557100Z [820/5160] 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-08-26T19:33:41.3591780Z [821/5160] 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-08-26T19:33:41.3743090Z [822/5160] 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-08-26T19:33:41.4319610Z [823/5160] 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-08-26T19:33:41.4539900Z [824/5160] 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-08-26T19:33:41.4729280Z [825/5160] 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-08-26T19:33:41.4760890Z [826/5160] 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-08-26T19:33:41.4788240Z [827/5160] 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-08-26T19:33:41.4992720Z [828/5160] 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-08-26T19:33:41.5101740Z [829/5160] 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-08-26T19:33:41.5134390Z [830/5160] 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-08-26T19:33:41.5211760Z [831/5160] 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-08-26T19:33:41.5273440Z [832/5160] 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-08-26T19:33:41.6092770Z [833/5160] 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-08-26T19:33:41.6094540Z [834/5160] 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-08-26T19:33:41.6128700Z [835/5160] 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-08-26T19:33:41.6276030Z [836/5160] 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-08-26T19:33:41.6278580Z [837/5160] 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-08-26T19:33:41.6295830Z [838/5160] 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-08-26T19:33:41.6418240Z [839/5160] 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-08-26T19:33:41.6548930Z [840/5160] 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-08-26T19:33:41.7067190Z [841/5160] 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-08-26T19:33:41.7271540Z [842/5160] 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-08-26T19:33:41.7589990Z [843/5160] 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-08-26T19:33:41.7629540Z [844/5160] 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-08-26T19:33:41.7664120Z [845/5160] 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-08-26T19:33:41.7687400Z [846/5160] 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-08-26T19:33:41.7788610Z [847/5160] 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-08-26T19:33:41.7792830Z [848/5160] 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-08-26T19:33:41.7844860Z [849/5160] 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-08-26T19:33:41.8278000Z [850/5160] 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-08-26T19:33:41.8501160Z [851/5160] 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-08-26T19:33:41.8677800Z [852/5160] 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-08-26T19:33:41.9050030Z [853/5160] 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-08-26T19:33:41.9171240Z [854/5160] 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-08-26T19:33:41.9173020Z [855/5160] 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-08-26T19:33:41.9176750Z [856/5160] 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-08-26T19:33:41.9187650Z [857/5160] 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-08-26T19:33:41.9412490Z [858/5160] 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-08-26T19:33:41.9565980Z [859/5160] 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-08-26T19:33:41.9732820Z [860/5160] 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-08-26T19:33:41.9754700Z [861/5160] 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-08-26T19:33:41.9802830Z [862/5160] 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-08-26T19:33:42.0565820Z [863/5160] 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-08-26T19:33:42.0575580Z [864/5160] 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-08-26T19:33:42.0585830Z [865/5160] 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-08-26T19:33:42.0734710Z [866/5160] 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-08-26T19:33:42.0789300Z [867/5160] 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-08-26T19:33:42.0844150Z [868/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.0897800Z [869/5160] 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-08-26T19:33:42.1057080Z [870/5160] 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-08-26T19:33:42.1116780Z [871/5160] 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-08-26T19:33:42.1125680Z [872/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.1999960Z [873/5160] 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-08-26T19:33:42.2010660Z [874/5160] 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-08-26T19:33:42.2123060Z [875/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.2167540Z [876/5160] 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-08-26T19:33:42.2170260Z [877/5160] 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-08-26T19:33:42.2504750Z [878/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.2552690Z [879/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.2554980Z [880/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.2569550Z [881/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.2690870Z [882/5160] 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-08-26T19:33:42.3218320Z [883/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.3374530Z [884/5160] 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-08-26T19:33:42.3393760Z [885/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.3410160Z [886/5160] 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-08-26T19:33:42.3424290Z [887/5160] 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-08-26T19:33:42.3989110Z [888/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.4013630Z [889/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.4032540Z [890/5160] 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-08-26T19:33:42.4153760Z [891/5160] 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-08-26T19:33:42.4214110Z [892/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.4683260Z [893/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.4688780Z [894/5160] 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-08-26T19:33:42.4707010Z [895/5160] 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-08-26T19:33:42.4723780Z [896/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.4728790Z [897/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.5411650Z [898/5160] 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-08-26T19:33:42.5477030Z [899/5160] 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-08-26T19:33:42.5507240Z [900/5160] 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-08-26T19:33:42.5522230Z [901/5160] 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-08-26T19:33:42.5743150Z [902/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.6103290Z [903/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.6136250Z [904/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.6166350Z [905/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.6210440Z [906/5160] 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-08-26T19:33:42.6219770Z [907/5160] 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-08-26T19:33:42.7029010Z [908/5160] 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-08-26T19:33:42.7078390Z [909/5160] 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-08-26T19:33:42.7102200Z [910/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.7247780Z [911/5160] 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-08-26T19:33:42.7266830Z [912/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.7425780Z [913/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.7428490Z [914/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.7566220Z [915/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.7568360Z [916/5160] 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-08-26T19:33:42.7617030Z [917/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.8389570Z [918/5160] 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-08-26T19:33:42.8406260Z [919/5160] 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-08-26T19:33:42.8438440Z [920/5160] 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-08-26T19:33:42.8590410Z [921/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.8631460Z [922/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:33:42.8743490Z [923/5160] 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-08-26T19:33:42.8801520Z [924/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:42.8944450Z [925/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2025-08-26T19:33:42.8946270Z [926/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2025-08-26T19:33:42.9111430Z [927/5160] 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-08-26T19:33:42.9834750Z [928/5160] 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-08-26T19:33:42.9845440Z [929/5160] 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-08-26T19:33:42.9856980Z [930/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2025-08-26T19:33:43.0057320Z [931/5160] 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-08-26T19:33:43.0084490Z [932/5160] 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-08-26T19:33:43.0215930Z [933/5160] 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-08-26T19:33:43.0314790Z [934/5160] 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-08-26T19:33:43.0342430Z [935/5160] 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-08-26T19:33:43.0547270Z [936/5160] 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-08-26T19:33:43.0719780Z [937/5160] 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-08-26T19:33:43.1212990Z [938/5160] 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-08-26T19:33:43.1250650Z [939/5160] 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-08-26T19:33:43.1363850Z [940/5160] 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-08-26T19:33:43.1431300Z [941/5160] 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-08-26T19:33:43.1594460Z [942/5160] 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-08-26T19:33:43.1681490Z [943/5160] 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-08-26T19:33:43.1845370Z [944/5160] 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-08-26T19:33:43.1869000Z [945/5160] 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-08-26T19:33:43.2249110Z [946/5160] 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-08-26T19:33:43.2344190Z [947/5160] 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-08-26T19:33:43.2450420Z [948/5160] 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-08-26T19:33:43.2454730Z [949/5160] 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-08-26T19:33:43.2579270Z [950/5160] 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-08-26T19:33:43.2582000Z [951/5160] 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-08-26T19:33:43.2813050Z [952/5160] 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-08-26T19:33:43.2972510Z [953/5160] 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-08-26T19:33:43.3314260Z [954/5160] 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-08-26T19:33:43.3652420Z [955/5160] 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-08-26T19:33:43.3678940Z [956/5160] 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-08-26T19:33:43.3718930Z [957/5160] 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-08-26T19:33:43.3829690Z [958/5160] 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-08-26T19:33:43.3837740Z [959/5160] 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-08-26T19:33:43.3872150Z [960/5160] 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-08-26T19:33:43.3902720Z [961/5160] 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-08-26T19:33:43.4079070Z [962/5160] 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-08-26T19:33:43.4441680Z [963/5160] 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-08-26T19:33:43.4920560Z [964/5160] 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-08-26T19:33:43.4997950Z [965/5160] 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-08-26T19:33:43.5080490Z [966/5160] 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-08-26T19:33:43.5127760Z [967/5160] 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-08-26T19:33:43.5245050Z [968/5160] 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-08-26T19:33:43.5247230Z [969/5160] 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-08-26T19:33:43.5316030Z [970/5160] 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-08-26T19:33:43.5387060Z [971/5160] 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-08-26T19:33:43.5491960Z [972/5160] 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-08-26T19:33:43.5998010Z [973/5160] 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-08-26T19:33:43.6337380Z [974/5160] 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-08-26T19:33:43.6528030Z [975/5160] 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-08-26T19:33:43.6676600Z [976/5160] 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-08-26T19:33:43.6692060Z [977/5160] 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-08-26T19:33:43.6733230Z [978/5160] 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-08-26T19:33:43.7007300Z [979/5160] 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-08-26T19:33:43.7113100Z [980/5160] 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-08-26T19:33:43.7158210Z [981/5160] 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-08-26T19:33:43.7369480Z [982/5160] 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-08-26T19:33:43.7378620Z [983/5160] 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-08-26T19:33:43.7448410Z [984/5160] 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-08-26T19:33:43.7898740Z [985/5160] 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-08-26T19:33:43.7969250Z [986/5160] 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-08-26T19:33:43.8086130Z [987/5160] 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-08-26T19:33:43.8168910Z [988/5160] 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-08-26T19:33:43.8549020Z [989/5160] 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-08-26T19:33:43.8830370Z [990/5160] 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-08-26T19:33:43.8933410Z [991/5160] 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-08-26T19:33:43.9063060Z [992/5160] 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-08-26T19:33:43.9066240Z [993/5160] 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-08-26T19:33:43.9092840Z [994/5160] 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-08-26T19:33:43.9492260Z [995/5160] 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-08-26T19:33:43.9631930Z [996/5160] 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-08-26T19:33:43.9660480Z [997/5160] 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-08-26T19:33:43.9739840Z [998/5160] 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-08-26T19:33:44.0249100Z [999/5160] 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-08-26T19:33:44.0276640Z [1000/5160] 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-08-26T19:33:44.0322950Z [1001/5160] 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-08-26T19:33:44.0338530Z [1002/5160] 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-08-26T19:33:44.0361610Z [1003/5160] 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-08-26T19:33:44.0385950Z [1004/5160] 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-08-26T19:33:44.0969090Z [1005/5160] 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-08-26T19:33:44.1031310Z [1006/5160] 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-08-26T19:33:44.1177020Z [1007/5160] 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-08-26T19:33:44.1467130Z [1008/5160] 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-08-26T19:33:44.1812680Z [1009/5160] 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-08-26T19:33:44.1884140Z [1010/5160] 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-08-26T19:33:44.1998550Z [1011/5160] 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-08-26T19:33:44.2007660Z [1012/5160] 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-08-26T19:33:44.2008600Z [1013/5160] 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-08-26T19:33:44.2142420Z [1014/5160] 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-08-26T19:33:44.2606950Z [1015/5160] 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-08-26T19:33:44.2893970Z [1016/5160] 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-08-26T19:33:44.2905970Z [1017/5160] 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-08-26T19:33:44.3258050Z [1018/5160] 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-08-26T19:33:44.3306420Z [1019/5160] 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-08-26T19:33:44.3448640Z [1020/5160] 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-08-26T19:33:44.3461440Z [1021/5160] 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-08-26T19:33:44.3659430Z [1022/5160] 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-08-26T19:33:44.3866900Z [1023/5160] 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-08-26T19:33:44.3924500Z [1024/5160] 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-08-26T19:33:44.4087090Z [1025/5160] 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-08-26T19:33:44.4154620Z [1026/5160] 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-08-26T19:33:44.4160410Z [1027/5160] 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-08-26T19:33:44.4468990Z [1028/5160] 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-08-26T19:33:44.4811340Z [1029/5160] 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-08-26T19:33:44.4897910Z [1030/5160] 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-08-26T19:33:44.5027110Z [1031/5160] 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-08-26T19:33:44.5132070Z [1032/5160] 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-08-26T19:33:44.5512110Z [1033/5160] 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-08-26T19:33:44.5562420Z [1034/5160] 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-08-26T19:33:44.5656120Z [1035/5160] 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-08-26T19:33:44.5660210Z [1036/5160] 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-08-26T19:33:44.5668830Z [1037/5160] 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-08-26T19:33:44.5708060Z [1038/5160] 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-08-26T19:33:44.6286330Z [1039/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2025-08-26T19:33:44.6320700Z [1040/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2025-08-26T19:33:44.6370710Z [1041/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:44.6542060Z [1042/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2025-08-26T19:33:44.6964660Z [1043/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.6974000Z [1044/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:44.6981820Z [1045/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.7088560Z [1046/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.7148270Z [1047/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.7160200Z [1048/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2025-08-26T19:33:44.7529050Z [1049/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:44.7701700Z [1050/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2025-08-26T19:33:44.7763260Z [1051/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2025-08-26T19:33:44.8030650Z [1052/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:44.8334150Z [1053/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.8517640Z [1054/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.8581740Z [1055/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:44.8589740Z [1056/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2025-08-26T19:33:44.8690450Z [1057/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2025-08-26T19:33:44.8900190Z [1058/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.9028060Z [1059/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:44.9135980Z [1060/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2025-08-26T19:33:44.9176210Z [1061/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:44.9649410Z [1062/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2025-08-26T19:33:44.9856510Z [1063/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2025-08-26T19:33:45.0011650Z [1064/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2025-08-26T19:33:45.0037210Z [1065/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2025-08-26T19:33:45.0125740Z [1066/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2025-08-26T19:33:45.0233450Z [1067/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2025-08-26T19:33:45.0253840Z [1068/5160] 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-08-26T19:33:45.0747790Z [1069/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2025-08-26T19:33:45.0848310Z [1070/5160] 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-08-26T19:33:45.0965020Z [1071/5160] 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-08-26T19:33:45.1298640Z [1072/5160] 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-08-26T19:33:45.1581480Z [1073/5160] 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-08-26T19:33:45.1664970Z [1074/5160] 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-08-26T19:33:45.1682820Z [1075/5160] 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-08-26T19:33:45.1696180Z [1076/5160] 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-08-26T19:33:45.1820980Z [1077/5160] 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-08-26T19:33:45.1823090Z [1078/5160] 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-08-26T19:33:45.2061770Z [1079/5160] 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-08-26T19:33:45.2246710Z [1080/5160] 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-08-26T19:33:45.2417790Z [1081/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2025-08-26T19:33:45.2470510Z [1082/5160] 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-08-26T19:33:45.2929610Z [1083/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2025-08-26T19:33:45.2977190Z [1084/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2025-08-26T19:33:45.3058410Z [1085/5160] 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-08-26T19:33:45.3141010Z [1086/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2025-08-26T19:33:45.3326800Z [1087/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2025-08-26T19:33:45.3593440Z [1088/5160] 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-08-26T19:33:45.3677920Z [1089/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2025-08-26T19:33:45.3780680Z [1090/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2025-08-26T19:33:45.3886990Z [1091/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2025-08-26T19:33:45.3984160Z [1092/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2025-08-26T19:33:45.4092110Z [1093/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2025-08-26T19:33:45.4094890Z [1094/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2025-08-26T19:33:45.4418820Z [1095/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c32.c.o 2025-08-26T19:33:45.4430670Z [1096/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2025-08-26T19:33:45.4626180Z [1097/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c64.c.o 2025-08-26T19:33:45.5014470Z [1098/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2025-08-26T19:33:45.5119140Z [1099/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2025-08-26T19:33:45.5137520Z [1100/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2025-08-26T19:33:45.5145650Z [1101/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2025-08-26T19:33:45.5258490Z [1102/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2025-08-26T19:33:45.5452990Z [1103/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2025-08-26T19:33:45.5463980Z [1104/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2025-08-26T19:33:45.5685120Z [1105/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2025-08-26T19:33:45.5913660Z [1106/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2025-08-26T19:33:45.5949070Z [1107/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2025-08-26T19:33:45.6083320Z [1108/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2025-08-26T19:33:45.6274300Z [1109/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2025-08-26T19:33:45.6351410Z [1110/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2025-08-26T19:33:45.6470580Z [1111/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2025-08-26T19:33:45.6690470Z [1112/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2025-08-26T19:33:45.6705910Z [1113/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2025-08-26T19:33:45.6917330Z [1114/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2025-08-26T19:33:45.6967320Z [1115/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2025-08-26T19:33:45.7196390Z [1116/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2025-08-26T19:33:45.7221880Z [1117/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2025-08-26T19:33:45.7473250Z [1118/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2025-08-26T19:33:45.7592060Z [1119/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2025-08-26T19:33:45.7603410Z [1120/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2025-08-26T19:33:45.7833150Z [1121/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2025-08-26T19:33:45.7853950Z [1122/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2025-08-26T19:33:45.8024920Z [1123/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2025-08-26T19:33:45.8085260Z [1124/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-neon-u4.c.o 2025-08-26T19:33:45.8392590Z [1125/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2025-08-26T19:33:45.8645640Z [1126/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2025-08-26T19:33:45.8702860Z [1127/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2025-08-26T19:33:45.8803140Z [1128/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2025-08-26T19:33:45.8867560Z [1129/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2025-08-26T19:33:45.9115980Z [1130/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-neon-u4.c.o 2025-08-26T19:33:45.9259850Z [1131/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2025-08-26T19:33:45.9266040Z [1132/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-neon-u4.c.o 2025-08-26T19:33:45.9481750Z [1133/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-neon-u4.c.o 2025-08-26T19:33:45.9621510Z [1134/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-neon-u4.c.o 2025-08-26T19:33:45.9939310Z [1135/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u4.c.o 2025-08-26T19:33:46.0053700Z [1136/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2025-08-26T19:33:46.0087840Z [1137/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u4.c.o 2025-08-26T19:33:46.0094630Z [1138/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u4.c.o 2025-08-26T19:33:46.0613360Z [1139/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2025-08-26T19:33:46.0615470Z [1140/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-neon-u4.c.o 2025-08-26T19:33:46.0765220Z [1141/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-neon-u4.c.o 2025-08-26T19:33:46.0868670Z [1142/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2025-08-26T19:33:46.0872490Z [1143/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2025-08-26T19:33:46.0875540Z [1144/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2025-08-26T19:33:46.1279430Z [1145/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2025-08-26T19:33:46.1450110Z [1146/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2025-08-26T19:33:46.1496790Z [1147/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2025-08-26T19:33:46.1613720Z [1148/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:33:46.2012850Z [1149/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2025-08-26T19:33:46.2055070Z [1150/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2025-08-26T19:33:46.2101770Z [1151/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2025-08-26T19:33:46.4158150Z [1152/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2025-08-26T19:33:46.4221360Z [1153/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2025-08-26T19:33:46.4374510Z [1154/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2025-08-26T19:33:46.4381730Z [1155/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2025-08-26T19:33:46.4439050Z [1156/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2025-08-26T19:33:46.4659000Z [1157/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2025-08-26T19:33:46.4893960Z [1158/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2025-08-26T19:33:46.5155320Z [1159/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2025-08-26T19:33:46.6546020Z [1160/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2025-08-26T19:33:46.6741280Z [1161/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2025-08-26T19:33:46.6928990Z [1162/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2025-08-26T19:33:46.6968550Z [1163/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2025-08-26T19:33:46.6975140Z [1164/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2025-08-26T19:33:46.7005370Z [1165/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2025-08-26T19:33:46.7017770Z [1166/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2025-08-26T19:33:46.7050720Z [1167/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2025-08-26T19:33:46.8889720Z [1168/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2025-08-26T19:33:46.8916190Z [1169/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2025-08-26T19:33:46.9104250Z [1170/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2025-08-26T19:33:46.9266640Z [1171/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2025-08-26T19:33:46.9285090Z [1172/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2025-08-26T19:33:46.9304650Z [1173/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2025-08-26T19:33:46.9474770Z [1174/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2025-08-26T19:33:46.9694470Z [1175/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2025-08-26T19:33:47.1234700Z [1176/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2025-08-26T19:33:47.1247490Z [1177/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2025-08-26T19:33:47.1754980Z [1178/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2025-08-26T19:33:47.1930930Z [1179/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2025-08-26T19:33:47.2111750Z [1180/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2025-08-26T19:33:47.2133760Z [1181/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2025-08-26T19:33:47.2349780Z [1182/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2025-08-26T19:33:47.2529870Z [1183/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2025-08-26T19:33:47.2714360Z [1184/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2025-08-26T19:33:47.2847860Z [1185/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2025-08-26T19:33:47.3920510Z [1186/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2025-08-26T19:33:47.4079410Z [1187/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2025-08-26T19:33:47.4184190Z [1188/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2025-08-26T19:33:47.4941710Z [1189/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2025-08-26T19:33:47.5020640Z [1190/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2025-08-26T19:33:47.5253560Z [1191/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2025-08-26T19:33:47.5339980Z [1192/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2025-08-26T19:33:47.5473200Z [1193/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2025-08-26T19:33:47.5854200Z [1194/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2025-08-26T19:33:47.6764250Z [1195/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2025-08-26T19:33:47.6775300Z [1196/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2025-08-26T19:33:47.6888930Z [1197/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2025-08-26T19:33:47.7024620Z [1198/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2025-08-26T19:33:47.7736950Z [1199/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2025-08-26T19:33:47.7972140Z [1200/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2025-08-26T19:33:47.8075530Z [1201/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2025-08-26T19:33:47.8097340Z [1202/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2025-08-26T19:33:47.8346140Z [1203/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2025-08-26T19:33:47.9240250Z [1204/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2025-08-26T19:33:47.9348620Z [1205/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2025-08-26T19:33:47.9810570Z [1206/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2025-08-26T19:33:48.0014730Z [1207/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2025-08-26T19:33:48.0041790Z [1208/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2025-08-26T19:33:48.0714920Z [1209/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2025-08-26T19:33:48.1023920Z [1210/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2025-08-26T19:33:48.1125000Z [1211/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2025-08-26T19:33:48.1265230Z [1212/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2025-08-26T19:33:48.1469790Z [1213/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2025-08-26T19:33:48.1569760Z [1214/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2025-08-26T19:33:48.2282470Z [1215/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2025-08-26T19:33:48.2560240Z [1216/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2025-08-26T19:33:48.2600110Z [1217/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2025-08-26T19:33:48.3514840Z [1218/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2025-08-26T19:33:48.3540500Z [1219/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2025-08-26T19:33:48.3564940Z [1220/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2025-08-26T19:33:48.3622670Z [1221/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2025-08-26T19:33:48.3728790Z [1222/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2025-08-26T19:33:48.4006850Z [1223/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2025-08-26T19:33:48.4608020Z [1224/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2025-08-26T19:33:48.5682360Z [1225/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2025-08-26T19:33:48.5745870Z [1226/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2025-08-26T19:33:48.5905970Z [1227/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2025-08-26T19:33:48.5950710Z [1228/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2025-08-26T19:33:48.6067530Z [1229/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2025-08-26T19:33:48.6288900Z [1230/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2025-08-26T19:33:48.6301140Z [1231/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2025-08-26T19:33:48.6447440Z [1232/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2025-08-26T19:33:48.7218820Z [1233/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-08-26T19:33:48.7241050Z [1234/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2025-08-26T19:33:48.7430670Z [1235/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-08-26T19:33:48.7475320Z [1236/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2025-08-26T19:33:48.7640100Z [1237/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-08-26T19:33:48.7719480Z [1238/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2025-08-26T19:33:48.7842980Z [1239/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2025-08-26T19:33:48.7901000Z [1240/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2025-08-26T19:33:48.8017740Z [1241/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2025-08-26T19:33:48.8041010Z [1242/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-08-26T19:33:48.8200730Z [1243/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-08-26T19:33:48.8220940Z [1244/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-08-26T19:33:48.8561760Z [1245/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-08-26T19:33:48.8706420Z [1246/5160] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2025-08-26T19:33:48.8876340Z [1247/5160] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-08-26T19:33:48.8916200Z [1248/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-08-26T19:33:48.8924180Z [1249/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-08-26T19:33:48.8933400Z [1250/5160] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-08-26T19:33:48.9102700Z [1251/5160] Linking C static library lib/libcpuinfo.a 2025-08-26T19:33:48.9125590Z [1252/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-08-26T19:33:48.9155090Z [1253/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-08-26T19:33:48.9262960Z [1254/5160] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-08-26T19:33:48.9678590Z [1255/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-08-26T19:33:48.9798030Z [1256/5160] Linking C static library lib/libpthreadpool.a 2025-08-26T19:33:48.9956840Z [1257/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2025-08-26T19:33:49.0145870Z [1258/5160] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2025-08-26T19:33:49.0157170Z [1259/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2025-08-26T19:33:49.0220910Z [1260/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2025-08-26T19:33:49.0341190Z [1261/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2025-08-26T19:33:49.0360620Z [1262/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2025-08-26T19:33:49.0531140Z [1263/5160] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2025-08-26T19:33:49.0580690Z [1264/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2025-08-26T19:33:49.0685430Z [1265/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2025-08-26T19:33:49.0691750Z [1266/5160] Linking C static library lib/libcpuinfo_internals.a 2025-08-26T19:33:49.0916490Z [1267/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2025-08-26T19:33:49.1302890Z [1268/5160] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2025-08-26T19:33:49.2700170Z [1269/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2025-08-26T19:33:49.2748060Z [1270/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-08-26T19:33:49.2783410Z [1271/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2025-08-26T19:33:49.2869850Z [1272/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-08-26T19:33:49.2909110Z [1273/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-08-26T19:33:49.2922310Z [1274/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-08-26T19:33:49.3026680Z [1275/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-08-26T19:33:49.3091910Z [1276/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2025-08-26T19:33:49.3098700Z [1277/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-08-26T19:33:49.4915840Z [1278/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2025-08-26T19:33:49.4956380Z [1279/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2025-08-26T19:33:49.5031660Z [1280/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2025-08-26T19:33:49.5067520Z [1281/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-08-26T19:33:49.5109890Z [1282/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-08-26T19:33:49.5131560Z [1283/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-08-26T19:33:49.5190080Z [1284/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2025-08-26T19:33:49.5311790Z [1285/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-08-26T19:33:49.6957160Z [1286/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-08-26T19:33:49.6964160Z [1287/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-08-26T19:33:49.7018250Z [1288/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2025-08-26T19:33:49.7027730Z [1289/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2025-08-26T19:33:49.7198130Z [1290/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-08-26T19:33:49.7200720Z [1291/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-08-26T19:33:49.7225270Z [1292/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-08-26T19:33:49.7469450Z [1293/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-08-26T19:33:49.8090820Z [1294/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-08-26T19:33:49.8195060Z /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-08-26T19:33:49.8307030Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-08-26T19:33:49.8307430Z ^ 2025-08-26T19:33:49.8308010Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-08-26T19:33:49.8309120Z __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-08-26T19:33:49.8309670Z ^ 2025-08-26T19:33:49.8310040Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-08-26T19:33:49.8310550Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-08-26T19:33:49.8310910Z ^ 2025-08-26T19:33:49.8311090Z 1 warning generated. 2025-08-26T19:33:49.8453220Z [1295/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2025-08-26T19:33:49.9332130Z [1296/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2025-08-26T19:33:49.9534740Z [1297/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-08-26T19:33:49.9567320Z [1298/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-08-26T19:33:49.9659850Z [1299/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-08-26T19:33:49.9784350Z [1300/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-08-26T19:33:49.9839840Z [1301/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-08-26T19:33:50.0043300Z [1302/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2025-08-26T19:33:50.0158890Z [1303/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-08-26T19:33:50.0863690Z [1304/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2025-08-26T19:33:50.1063550Z [1305/5160] Linking CXX static library lib/libprotobuf-lite.a 2025-08-26T19:33:50.1136790Z [1306/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2025-08-26T19:33:50.1500170Z [1307/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-08-26T19:33:50.2027220Z [1308/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-08-26T19:33:50.2240520Z [1309/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-08-26T19:33:50.2318480Z [1310/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2025-08-26T19:33:50.2536630Z [1311/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-08-26T19:33:50.2639060Z [1312/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2025-08-26T19:33:50.2703690Z [1313/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2025-08-26T19:33:50.3623570Z [1314/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2025-08-26T19:33:50.3900390Z [1315/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-08-26T19:33:50.4023170Z [1316/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-08-26T19:33:50.4101640Z [1317/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-08-26T19:33:50.4235090Z [1318/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2025-08-26T19:33:50.4343260Z [1319/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-08-26T19:33:50.4737630Z [1320/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-08-26T19:33:50.4755530Z [1321/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2025-08-26T19:33:50.5002520Z [1322/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-08-26T19:33:50.5009570Z /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-08-26T19:33:50.5017830Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-08-26T19:33:50.5032930Z ^ 2025-08-26T19:33:50.5033510Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-08-26T19:33:50.5034760Z __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-08-26T19:33:50.5035440Z ^ 2025-08-26T19:33:50.5048230Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-08-26T19:33:50.5082340Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-08-26T19:33:50.5086810Z ^ 2025-08-26T19:33:50.5089670Z 1 warning generated. 2025-08-26T19:33:50.5996330Z [1323/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2025-08-26T19:33:50.6815020Z [1324/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2025-08-26T19:33:50.6822130Z [1325/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-08-26T19:33:50.6891370Z [1326/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2025-08-26T19:33:50.6991730Z [1327/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2025-08-26T19:33:50.7097550Z [1328/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2025-08-26T19:33:50.7568420Z [1329/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2025-08-26T19:33:50.7716900Z [1330/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2025-08-26T19:33:50.8662190Z [1331/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2025-08-26T19:33:50.8968290Z [1332/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2025-08-26T19:33:50.9155920Z [1333/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2025-08-26T19:33:50.9282860Z [1334/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2025-08-26T19:33:50.9319120Z [1335/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2025-08-26T19:33:50.9459150Z [1336/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2025-08-26T19:33:50.9652210Z [1337/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2025-08-26T19:33:50.9692670Z [1338/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2025-08-26T19:33:50.9740570Z [1339/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2025-08-26T19:33:50.9966700Z [1340/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2025-08-26T19:33:51.1221930Z [1341/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2025-08-26T19:33:51.1325450Z [1342/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2025-08-26T19:33:51.1514400Z [1343/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2025-08-26T19:33:51.1919270Z [1344/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2025-08-26T19:33:51.2397820Z [1345/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2025-08-26T19:33:51.2450350Z [1346/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2025-08-26T19:33:51.2776720Z [1347/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2025-08-26T19:33:51.3107870Z [1348/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2025-08-26T19:33:51.3228580Z [1349/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2025-08-26T19:33:51.3261890Z [1350/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2025-08-26T19:33:51.3469880Z [1351/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2025-08-26T19:33:51.3511450Z [1352/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2025-08-26T19:33:51.3669130Z [1353/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2025-08-26T19:33:51.5384450Z [1354/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2025-08-26T19:33:51.5391270Z [1355/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2025-08-26T19:33:51.5508560Z [1356/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2025-08-26T19:33:51.5529970Z [1357/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2025-08-26T19:33:51.5671460Z [1358/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2025-08-26T19:33:51.5691990Z [1359/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2025-08-26T19:33:51.5814100Z [1360/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2025-08-26T19:33:51.5863530Z [1361/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2025-08-26T19:33:51.7230730Z [1362/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2025-08-26T19:33:51.7840780Z [1363/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2025-08-26T19:33:51.7966020Z [1364/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2025-08-26T19:33:51.7998400Z [1365/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2025-08-26T19:33:51.8116560Z [1366/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2025-08-26T19:33:51.8130820Z [1367/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2025-08-26T19:33:51.8236500Z [1368/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2025-08-26T19:33:51.8581230Z [1369/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2025-08-26T19:33:51.8790430Z [1370/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2025-08-26T19:33:51.8953080Z [1371/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-08-26T19:33:51.9124610Z [1372/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-08-26T19:33:51.9144530Z [1373/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:33:51.9348460Z [1374/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-08-26T19:33:51.9452400Z [1375/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-08-26T19:33:51.9560260Z [1376/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-08-26T19:33:51.9661250Z [1377/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2025-08-26T19:33:52.0036130Z [1378/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-08-26T19:33:52.0115170Z [1379/5160] 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-08-26T19:33:52.0147340Z [1380/5160] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2025-08-26T19:33:52.0323630Z [1381/5160] 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-08-26T19:33:52.0441130Z [1382/5160] 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-08-26T19:33:52.0568100Z [1383/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-08-26T19:33:52.0641160Z [1384/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-08-26T19:33:52.0654940Z [1385/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-08-26T19:33:52.0774240Z [1386/5160] 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-08-26T19:33:52.0913780Z [1387/5160] 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-08-26T19:33:52.1153030Z [1388/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-08-26T19:33:52.1379040Z [1389/5160] 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-08-26T19:33:52.1399130Z [1390/5160] 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-08-26T19:33:52.1550470Z [1391/5160] 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-08-26T19:33:52.1583990Z [1392/5160] 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-08-26T19:33:52.1622720Z [1393/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-08-26T19:33:52.1805730Z [1394/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-08-26T19:33:52.1866770Z [1395/5160] 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-08-26T19:33:52.2099450Z [1396/5160] 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-08-26T19:33:52.2281960Z [1397/5160] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-08-26T19:33:52.2522900Z [1398/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.2563310Z [1399/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.2579140Z [1400/5160] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-08-26T19:33:52.2683430Z [1401/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-08-26T19:33:52.2831770Z [1402/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.2845090Z [1403/5160] 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-08-26T19:33:52.2907930Z [1404/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.3011440Z [1405/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-08-26T19:33:52.3027120Z [1406/5160] Linking CXX static library lib/libprotobuf.a 2025-08-26T19:33:52.3120490Z [1407/5160] 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-08-26T19:33:52.3291610Z [1408/5160] 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-08-26T19:33:52.3464750Z [1409/5160] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-08-26T19:33:52.3974500Z [1410/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.4236520Z [1411/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-08-26T19:33:52.4325100Z [1412/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.4327570Z [1413/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-08-26T19:33:52.4344280Z [1414/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.4508740Z [1415/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-08-26T19:33:52.4593180Z [1416/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-08-26T19:33:52.4639760Z [1417/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:33:52.4662680Z [1418/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-08-26T19:33:52.5055850Z [1419/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-08-26T19:33:52.5272360Z [1420/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-08-26T19:33:52.5555630Z [1421/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-08-26T19:33:52.5560300Z [1422/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-08-26T19:33:52.5830300Z [1423/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-08-26T19:33:52.5925100Z [1424/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-08-26T19:33:52.5980150Z [1425/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-08-26T19:33:52.6178570Z [1426/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-08-26T19:33:52.6512250Z [1427/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.6514910Z [1428/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-08-26T19:33:52.6746310Z [1429/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-08-26T19:33:52.7016840Z [1430/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-08-26T19:33:52.7020740Z [1431/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.7208770Z [1432/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-08-26T19:33:52.7312130Z [1433/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-08-26T19:33:52.7316030Z [1434/5160] Linking CXX static library lib/libprotoc.a 2025-08-26T19:33:52.7460250Z [1435/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-08-26T19:33:52.7792600Z [1436/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-08-26T19:33:52.7805230Z [1437/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.7947220Z [1438/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.8078190Z [1439/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-08-26T19:33:52.8268510Z [1440/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.8328240Z [1441/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-08-26T19:33:52.8535080Z [1442/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-08-26T19:33:52.8538550Z [1443/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-08-26T19:33:52.8732190Z [1444/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-08-26T19:33:52.9198110Z [1445/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-08-26T19:33:52.9273960Z [1446/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.9382840Z [1447/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.9555160Z [1448/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-08-26T19:33:52.9570490Z [1449/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.9659930Z [1450/5160] Linking CXX executable bin/protoc-3.13.0.0 2025-08-26T19:33:52.9750160Z [1451/5160] Creating executable symlink bin/protoc 2025-08-26T19:33:52.9805620Z [1452/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-08-26T19:33:52.9812410Z [1453/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-08-26T19:33:52.9978130Z [1454/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-08-26T19:33:52.9980150Z [1455/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-08-26T19:33:53.0634390Z [1456/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-08-26T19:33:53.0784230Z [1457/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-08-26T19:33:53.0856650Z [1458/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-08-26T19:33:53.0879710Z [1459/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-08-26T19:33:53.1066190Z [1460/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-08-26T19:33:53.1067330Z [1461/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-08-26T19:33:53.1179620Z [1462/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-08-26T19:33:53.1239110Z [1463/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-08-26T19:33:53.1257590Z [1464/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2025-08-26T19:33:53.1405810Z [1465/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-08-26T19:33:53.1982820Z [1466/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-08-26T19:33:53.2186280Z [1467/5160] 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-08-26T19:33:53.2213820Z [1468/5160] 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-08-26T19:33:53.2221310Z [1469/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-08-26T19:33:53.2388850Z [1470/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-08-26T19:33:53.2391950Z [1471/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-08-26T19:33:53.2434760Z [1472/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-08-26T19:33:53.2583190Z [1473/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-08-26T19:33:53.2585330Z [1474/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-08-26T19:33:53.2649400Z [1475/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-08-26T19:33:53.3011500Z [1476/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-08-26T19:33:53.3401940Z [1477/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-08-26T19:33:53.3410650Z [1478/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-08-26T19:33:53.3566240Z [1479/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-08-26T19:33:53.3571580Z [1480/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-08-26T19:33:53.3593050Z [1481/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-08-26T19:33:53.3742460Z [1482/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-08-26T19:33:53.3747170Z [1483/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-08-26T19:33:53.3752810Z [1484/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-08-26T19:33:53.3759800Z [1485/5160] 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-08-26T19:33:53.3915240Z [1486/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-08-26T19:33:53.4742900Z [1487/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-08-26T19:33:53.4826230Z [1488/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-08-26T19:33:53.4827580Z [1489/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-08-26T19:33:53.4831780Z [1490/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-08-26T19:33:53.4841300Z [1491/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-08-26T19:33:53.4977210Z [1492/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-08-26T19:33:53.4985040Z [1493/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-08-26T19:33:53.4996430Z [1494/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-08-26T19:33:53.5166550Z [1495/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-08-26T19:33:53.5629000Z [1496/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-08-26T19:33:53.5971850Z [1497/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2025-08-26T19:33:53.6074140Z [1498/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2025-08-26T19:33:53.6174180Z [1499/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2025-08-26T19:33:53.6278100Z [1500/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2025-08-26T19:33:53.6411150Z [1501/5160] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2025-08-26T19:33:53.6419480Z [1502/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-08-26T19:33:53.6450540Z [1503/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-08-26T19:33:53.6453720Z [1504/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2025-08-26T19:33:53.6454520Z [1505/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-08-26T19:33:53.6690560Z [1506/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2025-08-26T19:33:53.6836130Z [1507/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2025-08-26T19:33:53.7301260Z [1508/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2025-08-26T19:33:53.7315250Z [1509/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2025-08-26T19:33:53.7339850Z [1510/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2025-08-26T19:33:53.7401830Z [1511/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2025-08-26T19:33:53.7570890Z [1512/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2025-08-26T19:33:53.7659360Z [1513/5160] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2025-08-26T19:33:53.7741040Z [1514/5160] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2025-08-26T19:33:53.8173370Z [1515/5160] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2025-08-26T19:33:53.8240390Z [1516/5160] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2025-08-26T19:33:53.8418600Z [1517/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2025-08-26T19:33:53.8435610Z [1518/5160] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2025-08-26T19:33:53.8564520Z [1519/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2025-08-26T19:33:53.8680620Z [1520/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2025-08-26T19:33:53.8682770Z [1521/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2025-08-26T19:33:53.8715610Z [1522/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2025-08-26T19:33:53.8720570Z [1523/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2025-08-26T19:33:53.9054430Z [1524/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2025-08-26T19:33:53.9400950Z [1525/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2025-08-26T19:33:53.9466800Z [1526/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2025-08-26T19:33:53.9636770Z [1527/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2025-08-26T19:33:53.9723410Z [1528/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2025-08-26T19:33:53.9801650Z [1529/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2025-08-26T19:33:54.0104810Z [1530/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2025-08-26T19:33:54.0148610Z [1531/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2025-08-26T19:33:54.0189140Z [1532/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2025-08-26T19:33:54.0289730Z [1533/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2025-08-26T19:33:54.0526520Z [1534/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2025-08-26T19:33:54.0675860Z [1535/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2025-08-26T19:33:54.0700710Z [1536/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2025-08-26T19:33:54.0890940Z [1537/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2025-08-26T19:33:54.0907650Z [1538/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2025-08-26T19:33:54.0909730Z [1539/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2025-08-26T19:33:54.1426360Z [1540/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2025-08-26T19:33:54.1488740Z [1541/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2025-08-26T19:33:54.1636000Z [1542/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2025-08-26T19:33:54.1733030Z [1543/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2025-08-26T19:33:54.1864930Z [1544/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2025-08-26T19:33:54.1911020Z [1545/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2025-08-26T19:33:54.2076370Z [1546/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2025-08-26T19:33:54.2093240Z [1547/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2025-08-26T19:33:54.2113350Z [1548/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2025-08-26T19:33:54.2121440Z [1549/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2025-08-26T19:33:54.2403410Z [1550/5160] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2025-08-26T19:33:54.2656910Z [1551/5160] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2025-08-26T19:33:54.2679900Z [1552/5160] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2025-08-26T19:33:54.2687850Z [1553/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2025-08-26T19:33:54.2873130Z [1554/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2025-08-26T19:33:54.2889660Z [1555/5160] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2025-08-26T19:33:54.3068220Z [1556/5160] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2025-08-26T19:33:54.3081350Z [1557/5160] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2025-08-26T19:33:54.3344620Z [1558/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2025-08-26T19:33:54.3392040Z [1559/5160] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2025-08-26T19:33:54.3768600Z [1560/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2025-08-26T19:33:54.3871330Z [1561/5160] Linking C static library lib/libclog.a 2025-08-26T19:33:54.3947950Z [1562/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2025-08-26T19:33:54.3963120Z [1563/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2025-08-26T19:33:54.4132860Z [1564/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2025-08-26T19:33:54.4233690Z [1565/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2025-08-26T19:33:54.4235150Z [1566/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2025-08-26T19:33:54.4244430Z [1567/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2025-08-26T19:33:54.4463730Z [1568/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2025-08-26T19:33:54.4554970Z [1569/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2025-08-26T19:33:54.4707490Z [1570/5160] Linking CXX static library lib/libpytorch_qnnpack.a 2025-08-26T19:33:54.5039060Z [1571/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2025-08-26T19:33:54.5352620Z [1572/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2025-08-26T19:33:54.5379220Z [1573/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2025-08-26T19:33:54.5411720Z [1574/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2025-08-26T19:33:54.5538040Z [1575/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2025-08-26T19:33:54.5540920Z [1576/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2025-08-26T19:33:54.5554850Z [1577/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2025-08-26T19:33:54.5791940Z [1578/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2025-08-26T19:33:54.6010070Z [1579/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2025-08-26T19:33:54.6255420Z [1580/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2025-08-26T19:33:54.6357950Z [1581/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2025-08-26T19:33:54.6397130Z [1582/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2025-08-26T19:33:54.6545420Z [1583/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2025-08-26T19:33:54.6786800Z [1584/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2025-08-26T19:33:54.6791550Z [1585/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2025-08-26T19:33:54.6796570Z [1586/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2025-08-26T19:33:54.6802120Z [1587/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2025-08-26T19:33:54.7031470Z [1588/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2025-08-26T19:33:54.7065510Z [1589/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2025-08-26T19:33:54.7207310Z [1590/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2025-08-26T19:33:54.7351540Z [1591/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2025-08-26T19:33:54.7383590Z [1592/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2025-08-26T19:33:54.7493290Z [1593/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2025-08-26T19:33:54.7803270Z [1594/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2025-08-26T19:33:54.7972310Z [1595/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2025-08-26T19:33:54.7980090Z [1596/5160] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2025-08-26T19:33:54.8031100Z [1597/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-08-26T19:33:54.8215880Z [1598/5160] Linking C static library lib/libnnpack.a 2025-08-26T19:33:54.8340100Z [1599/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-08-26T19:33:54.8344710Z [1600/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-08-26T19:33:54.8441540Z [1601/5160] Linking C static library lib/libnnpack_reference_layers.a 2025-08-26T19:33:54.8554590Z [1602/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-08-26T19:33:54.8870290Z [1603/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-08-26T19:33:54.9026040Z [1604/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-08-26T19:33:54.9079430Z [1605/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-08-26T19:33:54.9101310Z [1606/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-08-26T19:33:54.9289520Z [1607/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-08-26T19:33:54.9311490Z [1608/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-08-26T19:33:54.9316640Z [1609/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-08-26T19:33:54.9333680Z [1610/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-08-26T19:33:54.9596490Z [1611/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-08-26T19:33:55.0116020Z [1612/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-08-26T19:33:55.0143710Z [1613/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-08-26T19:33:55.0249730Z [1614/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-08-26T19:33:55.0292820Z [1615/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-08-26T19:33:55.0376140Z [1616/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-08-26T19:33:55.0376880Z [1617/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-08-26T19:33:55.0399850Z [1618/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-08-26T19:33:55.0589640Z [1619/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-08-26T19:33:55.1069370Z [1620/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-08-26T19:33:55.1242100Z [1621/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-08-26T19:33:55.1289690Z [1622/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-08-26T19:33:55.1310700Z [1623/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-08-26T19:33:55.1359920Z [1624/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-08-26T19:33:55.1383450Z [1625/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-08-26T19:33:55.1614490Z [1626/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-08-26T19:33:55.1826760Z [1627/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-08-26T19:33:55.2031100Z [1628/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-08-26T19:33:55.2133000Z [1629/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-08-26T19:33:55.2155160Z [1630/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-08-26T19:33:55.2312160Z [1631/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-08-26T19:33:55.2313880Z [1632/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-08-26T19:33:55.2479000Z [1633/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-08-26T19:33:55.2614890Z [1634/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-08-26T19:33:55.2746620Z [1635/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-08-26T19:33:55.2750060Z [1636/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-08-26T19:33:55.2925600Z [1637/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-08-26T19:33:55.3269480Z [1638/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-08-26T19:33:55.3464840Z [1639/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-08-26T19:33:55.3467970Z [1640/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-08-26T19:33:55.3500750Z [1641/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-08-26T19:33:55.3563950Z [1642/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-08-26T19:33:55.3810820Z [1643/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-08-26T19:33:55.3814440Z [1644/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-08-26T19:33:55.4133050Z [1645/5160] 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-08-26T19:33:55.4199280Z [1646/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-08-26T19:33:55.4201860Z [1647/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-08-26T19:33:55.4493370Z [1648/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-08-26T19:33:55.4671840Z [1649/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-08-26T19:33:55.4673410Z [1650/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-08-26T19:33:55.4799880Z [1651/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-08-26T19:33:55.4803840Z [1652/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-08-26T19:33:55.4852870Z [1653/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-08-26T19:33:55.5284170Z [1654/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-08-26T19:33:55.5465290Z [1655/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-08-26T19:33:55.5501790Z [1656/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-08-26T19:33:55.5586220Z [1657/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-08-26T19:33:55.5664810Z [1658/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-08-26T19:33:55.5795740Z [1659/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-08-26T19:33:55.5987150Z [1660/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-08-26T19:33:55.6117650Z [1661/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-08-26T19:33:55.6186690Z [1662/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-08-26T19:33:55.6443500Z [1663/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-08-26T19:33:55.6496040Z [1664/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-08-26T19:33:55.6660100Z [1665/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-08-26T19:33:55.6689520Z [1666/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-08-26T19:33:55.6706450Z [1667/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-08-26T19:33:55.6896920Z [1668/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-08-26T19:33:55.7241190Z [1669/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-08-26T19:33:55.7438480Z [1670/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-08-26T19:33:55.7446200Z [1671/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-08-26T19:33:55.7461420Z [1672/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-08-26T19:33:55.7656710Z [1673/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-08-26T19:33:55.7663630Z [1674/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-08-26T19:33:55.7815310Z [1675/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-08-26T19:33:55.7833730Z [1676/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-08-26T19:33:55.7837840Z [1677/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-08-26T19:33:55.7996900Z [1678/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-08-26T19:33:55.8600490Z [1679/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-08-26T19:33:55.8652210Z [1680/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-08-26T19:33:55.8742320Z [1681/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-08-26T19:33:55.8765400Z [1682/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-08-26T19:33:55.8897510Z [1683/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-08-26T19:33:55.8936950Z [1684/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-08-26T19:33:55.9071700Z [1685/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-08-26T19:33:55.9247960Z [1686/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-08-26T19:33:55.9252740Z [1687/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-08-26T19:33:55.9253490Z [1688/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-08-26T19:33:55.9835460Z [1689/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-08-26T19:33:55.9882970Z [1690/5160] 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-08-26T19:33:55.9918740Z [1691/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-08-26T19:33:55.9990620Z [1692/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-08-26T19:33:56.0041630Z [1693/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-08-26T19:33:56.0121680Z [1694/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-08-26T19:33:56.0146970Z [1695/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-08-26T19:33:56.0222700Z [1696/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-08-26T19:33:56.0396530Z [1697/5160] 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-08-26T19:33:56.0460130Z [1698/5160] 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-08-26T19:33:56.1090730Z [1699/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-08-26T19:33:56.1189890Z [1700/5160] 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-08-26T19:33:56.1325700Z [1701/5160] 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-08-26T19:33:56.1392130Z [1702/5160] 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-08-26T19:33:56.1424390Z [1703/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-08-26T19:33:56.1484940Z [1704/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-08-26T19:33:56.1604950Z [1705/5160] 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-08-26T19:33:56.1709100Z [1706/5160] 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-08-26T19:33:56.1824390Z [1707/5160] 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-08-26T19:33:56.1827320Z [1708/5160] 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-08-26T19:33:56.2445470Z [1709/5160] 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-08-26T19:33:56.2599380Z [1710/5160] 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-08-26T19:33:56.2618070Z [1711/5160] 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-08-26T19:33:56.2750480Z [1712/5160] 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-08-26T19:33:56.2798520Z [1713/5160] 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-08-26T19:33:56.2918340Z [1714/5160] 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-08-26T19:33:56.2919340Z [1715/5160] 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-08-26T19:33:56.2947770Z [1716/5160] 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-08-26T19:33:56.2969190Z [1717/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-08-26T19:33:56.3308490Z [1718/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-08-26T19:33:56.3567650Z [1719/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-08-26T19:33:56.3632970Z [1720/5160] 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-08-26T19:33:56.3780640Z [1721/5160] 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-08-26T19:33:56.3906150Z [1722/5160] 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-08-26T19:33:56.4112640Z [1723/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-08-26T19:33:56.4114550Z [1724/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-08-26T19:33:56.4115480Z [1725/5160] 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-08-26T19:33:56.4140770Z [1726/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-08-26T19:33:56.4149860Z [1727/5160] 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-08-26T19:33:56.4224470Z [1728/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-08-26T19:33:56.4310900Z [1729/5160] 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-08-26T19:33:56.4321150Z [1730/5160] 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-08-26T19:33:56.4972280Z [1731/5160] 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-08-26T19:33:56.5286380Z [1732/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:56.5400090Z [1733/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-08-26T19:33:56.5404030Z [1734/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-08-26T19:33:56.5417040Z [1735/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-08-26T19:33:56.5572970Z [1736/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-08-26T19:33:56.5592800Z [1737/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-08-26T19:33:56.5595170Z [1738/5160] 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-08-26T19:33:56.5597380Z [1739/5160] 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-08-26T19:33:56.5762610Z [1740/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-08-26T19:33:56.5877500Z [1741/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:56.6035150Z [1742/5160] 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-08-26T19:33:56.6420650Z [1743/5160] 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-08-26T19:33:56.6522740Z [1744/5160] 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-08-26T19:33:56.6624740Z [1745/5160] 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-08-26T19:33:56.6626980Z [1746/5160] 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-08-26T19:33:56.6734910Z [1747/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-08-26T19:33:56.6788190Z [1748/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-08-26T19:33:56.6890930Z [1749/5160] 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-08-26T19:33:56.6957110Z [1750/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-08-26T19:33:56.7225450Z [1751/5160] 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-08-26T19:33:56.7382040Z [1752/5160] 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-08-26T19:33:56.7445060Z [1753/5160] 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-08-26T19:33:56.7477290Z [1754/5160] 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-08-26T19:33:56.7603590Z [1755/5160] 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-08-26T19:33:56.7963280Z [1756/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:56.8080040Z [1757/5160] 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-08-26T19:33:56.8215720Z [1758/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-08-26T19:33:56.8218120Z [1759/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-08-26T19:33:56.8222510Z [1760/5160] 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-08-26T19:33:56.8261980Z [1761/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-08-26T19:33:56.8451350Z [1762/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-08-26T19:33:56.8497830Z [1763/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-08-26T19:33:56.8709110Z [1764/5160] 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-08-26T19:33:56.8833560Z [1765/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-08-26T19:33:56.8994410Z [1766/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-08-26T19:33:56.9138490Z [1767/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-08-26T19:33:56.9186660Z [1768/5160] 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-08-26T19:33:56.9229520Z [1769/5160] 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-08-26T19:33:56.9375350Z [1770/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-08-26T19:33:56.9497060Z [1771/5160] 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-08-26T19:33:56.9566580Z [1772/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-08-26T19:33:56.9630640Z [1773/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-08-26T19:33:56.9634940Z [1774/5160] 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-08-26T19:33:56.9824320Z [1775/5160] 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-08-26T19:33:56.9846900Z [1776/5160] 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-08-26T19:33:57.0076750Z [1777/5160] 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-08-26T19:33:57.0543680Z [1778/5160] 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-08-26T19:33:57.0694220Z [1779/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-08-26T19:33:57.0703480Z [1780/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:57.0892630Z [1781/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-08-26T19:33:57.1017000Z [1782/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-08-26T19:33:57.1028650Z [1783/5160] 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-08-26T19:33:57.1038140Z [1784/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-08-26T19:33:57.1158570Z [1785/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-08-26T19:33:57.1288080Z [1786/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-08-26T19:33:57.1298000Z [1787/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-08-26T19:33:57.1418760Z [1788/5160] 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-08-26T19:33:57.1472290Z [1789/5160] 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-08-26T19:33:57.1559450Z [1790/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-08-26T19:33:57.1965500Z [1791/5160] 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-08-26T19:33:57.2030750Z [1792/5160] 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-08-26T19:33:57.2134970Z [1793/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-08-26T19:33:57.2256080Z [1794/5160] 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-08-26T19:33:57.2291210Z [1795/5160] 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-08-26T19:33:57.2417750Z [1796/5160] 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-08-26T19:33:57.2569930Z [1797/5160] 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-08-26T19:33:57.2747430Z [1798/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-08-26T19:33:57.2748260Z [1799/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-08-26T19:33:57.2958610Z [1800/5160] 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-08-26T19:33:57.3010010Z [1801/5160] 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-08-26T19:33:57.3094830Z [1802/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-08-26T19:33:57.3422000Z [1803/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-08-26T19:33:57.3564300Z [1804/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-08-26T19:33:57.3707720Z [1805/5160] 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-08-26T19:33:57.3720820Z [1806/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-08-26T19:33:57.3882740Z [1807/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-08-26T19:33:57.3887670Z [1808/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-08-26T19:33:57.3894600Z [1809/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-08-26T19:33:57.4166090Z [1810/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-08-26T19:33:57.4419540Z [1811/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-08-26T19:33:57.4739460Z [1812/5160] 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-08-26T19:33:57.4775190Z [1813/5160] 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-08-26T19:33:57.4879230Z [1814/5160] 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-08-26T19:33:57.4991080Z [1815/5160] 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-08-26T19:33:57.5007590Z [1816/5160] 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-08-26T19:33:57.5207560Z [1817/5160] 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-08-26T19:33:57.5224870Z [1818/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-08-26T19:33:57.5298300Z [1819/5160] 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-08-26T19:33:57.5468800Z [1820/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-08-26T19:33:57.5740800Z [1821/5160] 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-08-26T19:33:57.6076480Z [1822/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-08-26T19:33:57.6206470Z [1823/5160] 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-08-26T19:33:57.6248710Z [1824/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-08-26T19:33:57.6258480Z [1825/5160] 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-08-26T19:33:57.6333070Z [1826/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-08-26T19:33:57.6415060Z [1827/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-08-26T19:33:57.6524970Z [1828/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-08-26T19:33:57.6680330Z [1829/5160] 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-08-26T19:33:57.6682380Z [1830/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-08-26T19:33:57.7006240Z [1831/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-08-26T19:33:57.7218970Z [1832/5160] 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-08-26T19:33:57.7222900Z [1833/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-08-26T19:33:57.7371640Z [1834/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-08-26T19:33:57.7385500Z [1835/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-08-26T19:33:57.7551140Z [1836/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-08-26T19:33:57.7760170Z [1837/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-08-26T19:33:57.7787900Z [1838/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-08-26T19:33:57.8091260Z [1839/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-08-26T19:33:57.8363620Z [1840/5160] 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-08-26T19:33:57.8435600Z [1841/5160] 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-08-26T19:33:57.8639820Z [1842/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:57.8749100Z [1843/5160] 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-08-26T19:33:57.8765000Z [1844/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-08-26T19:33:57.8768210Z [1845/5160] 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-08-26T19:33:57.8769170Z [1846/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:57.8793970Z [1847/5160] 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-08-26T19:33:57.8937350Z [1848/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:57.9117650Z [1849/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:57.9267750Z [1850/5160] 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-08-26T19:33:57.9380660Z [1851/5160] 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-08-26T19:33:57.9539540Z [1852/5160] 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-08-26T19:33:58.0153950Z [1853/5160] 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-08-26T19:33:58.0194700Z [1854/5160] 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-08-26T19:33:58.0206880Z [1855/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:58.0346980Z [1856/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:58.0356780Z [1857/5160] 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-08-26T19:33:58.0357800Z [1858/5160] 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-08-26T19:33:58.0371900Z [1859/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:33:58.0616230Z [1860/5160] 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-08-26T19:33:58.0947430Z [1861/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:33:58.1050710Z [1862/5160] 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-08-26T19:33:58.1092760Z [1863/5160] 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-08-26T19:33:58.1096320Z [1864/5160] 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-08-26T19:33:58.1099050Z [1865/5160] 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-08-26T19:33:58.1313000Z [1866/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-08-26T19:33:58.1852090Z [1867/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-08-26T19:33:58.1868410Z [1868/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-08-26T19:33:58.2031080Z [1869/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-08-26T19:33:58.2177530Z [1870/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-08-26T19:33:58.2188490Z [1871/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-08-26T19:33:58.2223710Z [1872/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-08-26T19:33:58.2363780Z [1873/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-08-26T19:33:58.2370370Z [1874/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-08-26T19:33:58.2375990Z [1875/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-08-26T19:33:58.2738880Z [1876/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-08-26T19:33:58.2778840Z [1877/5160] 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-08-26T19:33:58.3011760Z [1878/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-08-26T19:33:58.3182160Z [1879/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-08-26T19:33:58.3333370Z [1880/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-08-26T19:33:58.3347370Z [1881/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-08-26T19:33:58.3430450Z [1882/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-08-26T19:33:58.3533390Z [1883/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-08-26T19:33:58.3584900Z [1884/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-08-26T19:33:58.3699540Z [1885/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-08-26T19:33:58.3833580Z [1886/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-08-26T19:33:58.4101750Z [1887/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-08-26T19:33:58.4353060Z [1888/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-08-26T19:33:58.4408640Z [1889/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-08-26T19:33:58.4646650Z [1890/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-08-26T19:33:58.4650570Z [1891/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-08-26T19:33:58.4809850Z [1892/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-08-26T19:33:58.4810660Z [1893/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-08-26T19:33:58.4868240Z [1894/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-08-26T19:33:58.4878980Z [1895/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-08-26T19:33:58.5095360Z [1896/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-08-26T19:33:58.5154990Z [1897/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-08-26T19:33:58.5387580Z [1898/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-08-26T19:33:58.5622130Z [1899/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-08-26T19:33:58.5679250Z [1900/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-08-26T19:33:58.6082880Z [1901/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-08-26T19:33:58.6106870Z [1902/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-08-26T19:33:58.6189070Z [1903/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-08-26T19:33:58.6289390Z [1904/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-08-26T19:33:58.6398200Z [1905/5160] 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-08-26T19:33:58.6400640Z [1906/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-08-26T19:33:58.6564890Z [1907/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-08-26T19:33:58.6690200Z [1908/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-08-26T19:33:58.6866510Z [1909/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-08-26T19:33:58.7109150Z [1910/5160] 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-08-26T19:33:58.7302120Z [1911/5160] 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-08-26T19:33:58.7304450Z [1912/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-08-26T19:33:58.7314920Z [1913/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-08-26T19:33:58.7489630Z [1914/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-08-26T19:33:58.7497230Z [1915/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-08-26T19:33:58.7540180Z [1916/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-08-26T19:33:58.7549940Z /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-08-26T19:33:58.7553830Z } 2025-08-26T19:33:58.7555600Z ^ 2025-08-26T19:33:58.7558290Z 1 warning generated. 2025-08-26T19:33:58.7705070Z [1917/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-08-26T19:33:58.8230080Z [1918/5160] 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-08-26T19:33:58.8274450Z [1919/5160] 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-08-26T19:33:58.8434970Z [1920/5160] 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-08-26T19:33:58.8568940Z [1921/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-08-26T19:33:58.8572380Z [1922/5160] 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-08-26T19:33:58.8574300Z [1923/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-08-26T19:33:58.8581770Z [1924/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-08-26T19:33:58.8776320Z [1925/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-08-26T19:33:58.8888580Z [1926/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-08-26T19:33:58.9106680Z [1927/5160] 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-08-26T19:33:58.9317620Z [1928/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-08-26T19:33:58.9335860Z [1929/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-08-26T19:33:58.9338340Z [1930/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-08-26T19:33:58.9536390Z [1931/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-08-26T19:33:58.9560890Z [1932/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-08-26T19:33:58.9734040Z [1933/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-08-26T19:33:58.9769160Z [1934/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-08-26T19:33:58.9842560Z [1935/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-08-26T19:33:59.0299130Z [1936/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-08-26T19:33:59.0471730Z [1937/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-08-26T19:33:59.0576320Z [1938/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-08-26T19:33:59.0670460Z [1939/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-08-26T19:33:59.0725090Z [1940/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-08-26T19:33:59.0825360Z [1941/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-08-26T19:33:59.0942650Z [1942/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-08-26T19:33:59.0947310Z [1943/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-08-26T19:33:59.1001520Z [1944/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-08-26T19:33:59.1004340Z [1945/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-08-26T19:33:59.1266660Z [1946/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-08-26T19:33:59.1539430Z [1947/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-08-26T19:33:59.1606040Z [1948/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-08-26T19:33:59.1680380Z [1949/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-08-26T19:33:59.1855010Z [1950/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-08-26T19:33:59.1924660Z [1951/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-08-26T19:33:59.2065090Z [1952/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-08-26T19:33:59.2079570Z [1953/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-08-26T19:33:59.2198320Z [1954/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-08-26T19:33:59.2223220Z [1955/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-08-26T19:33:59.2244600Z [1956/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-08-26T19:33:59.2566150Z [1957/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-08-26T19:33:59.2834170Z [1958/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-08-26T19:33:59.2876420Z [1959/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-08-26T19:33:59.2946310Z [1960/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-08-26T19:33:59.3046040Z [1961/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-08-26T19:33:59.3149930Z [1962/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-08-26T19:33:59.3189430Z [1963/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-08-26T19:33:59.3349580Z [1964/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-08-26T19:33:59.3395400Z [1965/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-08-26T19:33:59.3431360Z [1966/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-08-26T19:33:59.3566780Z [1967/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-08-26T19:33:59.3652900Z [1968/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-08-26T19:33:59.3760620Z [1969/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-08-26T19:33:59.3907300Z [1970/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-08-26T19:33:59.3917100Z [1971/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-08-26T19:33:59.4161420Z [1972/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2025-08-26T19:33:59.4392710Z [1973/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2025-08-26T19:33:59.4566600Z [1974/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2025-08-26T19:33:59.4569510Z [1975/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2025-08-26T19:33:59.4698110Z [1976/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2025-08-26T19:33:59.4839530Z [1977/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2025-08-26T19:33:59.4850320Z [1978/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2025-08-26T19:33:59.4920520Z [1979/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2025-08-26T19:33:59.5131170Z [1980/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-08-26T19:33:59.5448730Z [1981/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-08-26T19:33:59.5788130Z [1982/5160] 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-08-26T19:33:59.6170310Z [1983/5160] 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-08-26T19:33:59.6203190Z [1984/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-08-26T19:33:59.6297300Z [1985/5160] 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-08-26T19:33:59.6304620Z [1986/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-08-26T19:33:59.6321380Z [1987/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-08-26T19:33:59.6423870Z [1988/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-08-26T19:33:59.6427040Z [1989/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-08-26T19:33:59.6554610Z [1990/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-08-26T19:33:59.7084390Z [1991/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-08-26T19:33:59.7218040Z [1992/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-08-26T19:33:59.7305480Z [1993/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-08-26T19:33:59.7309780Z [1994/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-08-26T19:33:59.7403730Z [1995/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-08-26T19:33:59.7408760Z /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-08-26T19:33:59.7412580Z } 2025-08-26T19:33:59.7415530Z ^ 2025-08-26T19:33:59.7418410Z /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-08-26T19:33:59.7423910Z } 2025-08-26T19:33:59.7427270Z ^ 2025-08-26T19:33:59.7437080Z 2 warnings generated. 2025-08-26T19:33:59.7441440Z [1996/5160] 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-08-26T19:33:59.7503220Z [1997/5160] 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-08-26T19:33:59.7671180Z [1998/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-08-26T19:33:59.7990600Z [1999/5160] 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-08-26T19:33:59.8228760Z [2000/5160] 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-08-26T19:33:59.8725850Z [2001/5160] 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-08-26T19:33:59.8759760Z [2002/5160] 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-08-26T19:33:59.8768390Z [2003/5160] 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-08-26T19:33:59.8844760Z [2004/5160] 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-08-26T19:33:59.8950500Z [2005/5160] 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-08-26T19:33:59.8955800Z [2006/5160] 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-08-26T19:33:59.9055160Z [2007/5160] 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-08-26T19:33:59.9100440Z [2008/5160] 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-08-26T19:33:59.9256290Z [2009/5160] 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-08-26T19:33:59.9458300Z [2010/5160] 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-08-26T19:33:59.9966530Z [2011/5160] 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-08-26T19:33:59.9990980Z [2012/5160] 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-08-26T19:34:00.0223120Z [2013/5160] 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-08-26T19:34:00.0295550Z [2014/5160] 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-08-26T19:34:00.0345060Z [2015/5160] 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-08-26T19:34:00.0510280Z [2016/5160] 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-08-26T19:34:00.0516300Z [2017/5160] 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-08-26T19:34:00.0536860Z [2018/5160] 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-08-26T19:34:00.0711360Z [2019/5160] 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-08-26T19:34:00.0830640Z [2020/5160] 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-08-26T19:34:00.1390370Z [2021/5160] 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-08-26T19:34:00.1516690Z [2022/5160] 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-08-26T19:34:00.1541190Z [2023/5160] 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-08-26T19:34:00.1671700Z [2024/5160] 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-08-26T19:34:00.1717720Z [2025/5160] 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-08-26T19:34:00.2023100Z [2026/5160] 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-08-26T19:34:00.2025240Z [2027/5160] 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-08-26T19:34:00.2181970Z [2028/5160] 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-08-26T19:34:00.2287690Z [2029/5160] 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-08-26T19:34:00.2463600Z [2030/5160] 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-08-26T19:34:00.2932140Z [2031/5160] 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-08-26T19:34:00.3036140Z [2032/5160] 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-08-26T19:34:00.3150120Z [2033/5160] 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-08-26T19:34:00.3152120Z [2034/5160] 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-08-26T19:34:00.3153180Z [2035/5160] 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-08-26T19:34:00.3180170Z [2036/5160] 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-08-26T19:34:00.3348480Z [2037/5160] 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-08-26T19:34:00.3612070Z [2038/5160] 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-08-26T19:34:00.3735570Z [2039/5160] 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-08-26T19:34:00.3836950Z [2040/5160] 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-08-26T19:34:00.3877600Z [2041/5160] 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-08-26T19:34:00.4314680Z [2042/5160] 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-08-26T19:34:00.4401440Z [2043/5160] 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-08-26T19:34:00.4628570Z [2044/5160] 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-08-26T19:34:00.4641950Z [2045/5160] 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-08-26T19:34:00.4659360Z [2046/5160] 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-08-26T19:34:00.4679570Z [2047/5160] 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-08-26T19:34:00.4852710Z [2048/5160] 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-08-26T19:34:00.5166470Z [2049/5160] 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-08-26T19:34:00.5208470Z [2050/5160] 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-08-26T19:34:00.5392880Z [2051/5160] 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-08-26T19:34:00.5422160Z [2052/5160] 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-08-26T19:34:00.5427000Z [2053/5160] 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-08-26T19:34:00.5652490Z [2054/5160] 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-08-26T19:34:00.5794660Z [2055/5160] 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-08-26T19:34:00.5821110Z [2056/5160] 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-08-26T19:34:00.6210680Z [2057/5160] 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-08-26T19:34:00.6224120Z [2058/5160] 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-08-26T19:34:00.6244380Z [2059/5160] 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-08-26T19:34:00.6484690Z [2060/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:34:00.6505060Z [2061/5160] 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-08-26T19:34:00.6683100Z [2062/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:34:00.6815380Z [2063/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:34:00.6818120Z [2064/5160] 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-08-26T19:34:00.6905500Z [2065/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:34:00.7136930Z [2066/5160] 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-08-26T19:34:00.7412410Z [2067/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:34:00.7521960Z [2068/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:34:00.7638440Z [2069/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-08-26T19:34:00.7756920Z [2070/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-08-26T19:34:00.7800020Z [2071/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-08-26T19:34:00.7933050Z [2072/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-08-26T19:34:00.8001870Z [2073/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-08-26T19:34:00.8073810Z [2074/5160] 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-08-26T19:34:00.8115930Z [2075/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-08-26T19:34:00.8348230Z [2076/5160] 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-08-26T19:34:00.8808100Z [2077/5160] 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-08-26T19:34:00.8849840Z [2078/5160] 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-08-26T19:34:00.8957010Z [2079/5160] 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-08-26T19:34:00.8988170Z [2080/5160] 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-08-26T19:34:00.9003210Z [2081/5160] 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-08-26T19:34:00.9144020Z [2082/5160] 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-08-26T19:34:00.9200100Z [2083/5160] 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-08-26T19:34:00.9274700Z [2084/5160] 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-08-26T19:34:00.9404900Z [2085/5160] 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-08-26T19:34:00.9515330Z [2086/5160] 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-08-26T19:34:01.0103290Z [2087/5160] 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-08-26T19:34:01.0201550Z [2088/5160] 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-08-26T19:34:01.0220290Z [2089/5160] 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-08-26T19:34:01.0253290Z [2090/5160] 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-08-26T19:34:01.0340790Z [2091/5160] 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-08-26T19:34:01.0478710Z [2092/5160] 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-08-26T19:34:01.0526480Z [2093/5160] 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-08-26T19:34:01.0736120Z [2094/5160] 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-08-26T19:34:01.0885740Z [2095/5160] 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-08-26T19:34:01.0919990Z [2096/5160] 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-08-26T19:34:01.0985500Z [2097/5160] 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-08-26T19:34:01.1052780Z [2098/5160] 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-08-26T19:34:01.1336400Z [2099/5160] 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-08-26T19:34:01.1451850Z [2100/5160] 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-08-26T19:34:01.1455700Z [2101/5160] 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-08-26T19:34:01.1575140Z [2102/5160] 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-08-26T19:34:01.1663820Z [2103/5160] 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-08-26T19:34:01.1779660Z [2104/5160] 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-08-26T19:34:01.1835050Z [2105/5160] 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-08-26T19:34:01.1886410Z [2106/5160] 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-08-26T19:34:01.1890610Z [2107/5160] 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-08-26T19:34:01.2846990Z [2108/5160] 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-08-26T19:34:01.2927130Z [2109/5160] 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-08-26T19:34:01.2962160Z [2110/5160] 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-08-26T19:34:01.2964770Z [2111/5160] 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-08-26T19:34:01.3126570Z [2112/5160] 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-08-26T19:34:01.3137350Z [2113/5160] 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-08-26T19:34:01.3162520Z [2114/5160] 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-08-26T19:34:01.3269180Z [2115/5160] 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-08-26T19:34:01.3362980Z [2116/5160] 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-08-26T19:34:01.3476070Z [2117/5160] 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-08-26T19:34:01.3601490Z [2118/5160] 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-08-26T19:34:01.3639200Z [2119/5160] 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-08-26T19:34:01.3671340Z [2120/5160] 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-08-26T19:34:01.3951180Z [2121/5160] 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-08-26T19:34:01.3955740Z [2122/5160] 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-08-26T19:34:01.4226710Z [2123/5160] 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-08-26T19:34:01.4456200Z [2124/5160] 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-08-26T19:34:01.4491710Z [2125/5160] 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-08-26T19:34:01.4658750Z [2126/5160] 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-08-26T19:34:01.4723910Z [2127/5160] 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-08-26T19:34:01.4808250Z [2128/5160] 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-08-26T19:34:01.4880790Z [2129/5160] 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-08-26T19:34:01.5022940Z [2130/5160] 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-08-26T19:34:01.5027660Z [2131/5160] 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-08-26T19:34:01.5586610Z [2132/5160] 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-08-26T19:34:01.5710950Z [2133/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-08-26T19:34:01.5763030Z [2134/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-08-26T19:34:01.5841560Z [2135/5160] 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-08-26T19:34:01.5942550Z [2136/5160] 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-08-26T19:34:01.6042440Z [2137/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-08-26T19:34:01.6048860Z [2138/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-08-26T19:34:01.6060570Z [2139/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-08-26T19:34:01.6288580Z [2140/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-08-26T19:34:01.6695770Z [2141/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-08-26T19:34:01.6809350Z [2142/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-08-26T19:34:01.6836200Z [2143/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-08-26T19:34:01.7006930Z [2144/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-08-26T19:34:01.7118650Z [2145/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-08-26T19:34:01.7123410Z [2146/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-08-26T19:34:01.7132490Z [2147/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-08-26T19:34:01.7309820Z [2148/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-08-26T19:34:01.7325490Z [2149/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-08-26T19:34:01.7489460Z [2150/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-08-26T19:34:01.7865580Z [2151/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-08-26T19:34:01.7940810Z [2152/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-08-26T19:34:01.7960930Z [2153/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-08-26T19:34:01.8168050Z [2154/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-08-26T19:34:01.8205910Z [2155/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-08-26T19:34:01.8281890Z [2156/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-08-26T19:34:01.8397890Z [2157/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-08-26T19:34:01.8559550Z [2158/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-08-26T19:34:01.8748820Z [2159/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-08-26T19:34:01.8814780Z [2160/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-08-26T19:34:01.9030930Z [2161/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:34:01.9264290Z [2162/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-08-26T19:34:01.9294550Z [2163/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:34:01.9453790Z [2164/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:34:01.9468050Z [2165/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-08-26T19:34:01.9549420Z [2166/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:01.9666850Z [2167/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:01.9808770Z [2168/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-08-26T19:34:01.9822440Z [2169/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2025-08-26T19:34:01.9823230Z [2170/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-08-26T19:34:01.9842570Z [2171/5160] Running gen_proto.py on onnx/onnx.in.proto 2025-08-26T19:34:01.9844020Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2025-08-26T19:34:01.9847770Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-26T19:34:01.9849210Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2025-08-26T19:34:01.9850620Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2025-08-26T19:34:01.9851650Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2025-08-26T19:34:02.0363090Z [2172/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-08-26T19:34:02.0496980Z [2173/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-08-26T19:34:02.0684010Z [2174/5160] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-08-26T19:34:02.0690350Z [2175/5160] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-08-26T19:34:02.0857470Z [2176/5160] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-08-26T19:34:02.0917900Z [2177/5160] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-08-26T19:34:02.0926500Z [2178/5160] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-08-26T19:34:02.1027130Z [2179/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-08-26T19:34:02.1419950Z [2180/5160] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-08-26T19:34:02.1705340Z [2181/5160] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-08-26T19:34:02.1731350Z [2182/5160] Building CXX object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-08-26T19:34:02.1808160Z [2183/5160] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-08-26T19:34:02.1907130Z [2184/5160] Building C object confu-deps/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-08-26T19:34:02.1910100Z [2185/5160] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-08-26T19:34:02.1940840Z [2186/5160] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-08-26T19:34:02.2290330Z [2187/5160] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-08-26T19:34:02.2458820Z [2188/5160] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-08-26T19:34:02.2682060Z [2189/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-08-26T19:34:02.2713390Z [2190/5160] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-08-26T19:34:02.2824910Z [2191/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-08-26T19:34:02.2926050Z [2192/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-08-26T19:34:02.2951630Z [2193/5160] Linking C static library lib/libmicrokernels-prod.a 2025-08-26T19:34:02.2979510Z [2194/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-08-26T19:34:02.3135510Z [2195/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-08-26T19:34:02.3514480Z [2196/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-08-26T19:34:02.3664320Z [2197/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-08-26T19:34:02.3691020Z [2198/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-08-26T19:34:02.3883450Z [2199/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-08-26T19:34:02.4021040Z [2200/5160] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-08-26T19:34:02.4230020Z [2201/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-08-26T19:34:02.4280170Z [2202/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-08-26T19:34:02.4468530Z [2203/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-08-26T19:34:02.4573020Z [2204/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-08-26T19:34:02.4598400Z [2205/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-08-26T19:34:02.4705290Z [2206/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-08-26T19:34:02.4782060Z [2207/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-08-26T19:34:02.4785330Z [2208/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-08-26T19:34:02.4847290Z [2209/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-08-26T19:34:02.5197400Z [2210/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-08-26T19:34:02.5452630Z [2211/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-08-26T19:34:02.5505620Z [2212/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-08-26T19:34:02.5681880Z [2213/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-08-26T19:34:02.5689200Z [2214/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-08-26T19:34:02.5829180Z [2215/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-08-26T19:34:02.5917480Z [2216/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-08-26T19:34:02.6163650Z [2217/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-08-26T19:34:02.6271310Z [2218/5160] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-08-26T19:34:02.6585630Z [2219/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-08-26T19:34:02.6691990Z [2220/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-08-26T19:34:02.6797510Z [2221/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-08-26T19:34:02.6874700Z [2222/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-08-26T19:34:02.7007630Z [2223/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-08-26T19:34:02.7062570Z [2224/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-08-26T19:34:02.7215030Z [2225/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-08-26T19:34:02.7411250Z [2226/5160] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-08-26T19:34:02.7514010Z [2227/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-08-26T19:34:02.7819210Z [2228/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-08-26T19:34:02.7913030Z [2229/5160] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-08-26T19:34:02.7915710Z [2230/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-08-26T19:34:02.7959330Z [2231/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-08-26T19:34:02.7972120Z [2232/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-08-26T19:34:02.8019460Z [2233/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-08-26T19:34:02.8096200Z [2234/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-08-26T19:34:02.8658010Z [2235/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-08-26T19:34:02.8759060Z [2236/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-08-26T19:34:02.8859110Z [2237/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-08-26T19:34:02.8924440Z [2238/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-08-26T19:34:02.8993360Z [2239/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-08-26T19:34:02.9015350Z [2240/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-08-26T19:34:02.9164780Z [2241/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-08-26T19:34:02.9205750Z [2242/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-08-26T19:34:02.9346020Z [2243/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-08-26T19:34:02.9418710Z [2244/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-08-26T19:34:02.9864170Z [2245/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-08-26T19:34:02.9881280Z [2246/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-08-26T19:34:03.0054220Z [2247/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-08-26T19:34:03.0181510Z [2248/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-08-26T19:34:03.0184140Z [2249/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-08-26T19:34:03.0336780Z [2250/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-08-26T19:34:03.0346440Z [2251/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-08-26T19:34:03.0466270Z [2252/5160] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-08-26T19:34:03.0944020Z [2253/5160] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2025-08-26T19:34:03.1053410Z [2254/5160] Generating build_identifier.c 2025-08-26T19:34:03.2544150Z [2255/5160] Building CXX object c10/CMakeFiles/c10.dir/core/CachingDeviceAllocator.cpp.o 2025-08-26T19:34:03.2586260Z [2256/5160] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2025-08-26T19:34:03.2593120Z [2257/5160] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2025-08-26T19:34:03.2663630Z [2258/5160] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2025-08-26T19:34:03.2738610Z [2259/5160] Building CXX object c10/CMakeFiles/c10.dir/core/AllocatorConfig.cpp.o 2025-08-26T19:34:03.2745150Z [2260/5160] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2025-08-26T19:34:03.2889830Z [2261/5160] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2025-08-26T19:34:03.2906300Z [2262/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-08-26T19:34:03.2917740Z [2263/5160] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2025-08-26T19:34:03.3535330Z [2264/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-08-26T19:34:03.3758440Z [2265/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-08-26T19:34:03.3761040Z [2266/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-08-26T19:34:03.3912920Z [2267/5160] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2025-08-26T19:34:03.3916920Z [2268/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-08-26T19:34:03.3969710Z [2269/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-08-26T19:34:03.4071040Z [2270/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-08-26T19:34:03.4078890Z [2271/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-08-26T19:34:03.4211960Z [2272/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-08-26T19:34:03.4540850Z [2273/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-08-26T19:34:03.4543380Z [2274/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-08-26T19:34:03.4897320Z [2275/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-08-26T19:34:03.5025600Z [2276/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-08-26T19:34:03.5027970Z [2277/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-08-26T19:34:03.5201220Z [2278/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-08-26T19:34:03.5246740Z [2279/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-08-26T19:34:03.5355840Z [2280/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-08-26T19:34:03.5457280Z [2281/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-08-26T19:34:03.5481740Z [2282/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-08-26T19:34:03.5688640Z [2283/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-08-26T19:34:03.5781580Z [2284/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-08-26T19:34:03.5997690Z [2285/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-08-26T19:34:03.6103030Z [2286/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-08-26T19:34:03.6253060Z [2287/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-08-26T19:34:03.6255080Z [2288/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-08-26T19:34:03.6458480Z [2289/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-08-26T19:34:03.6466710Z [2290/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-08-26T19:34:03.6478940Z [2291/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-08-26T19:34:03.6713410Z [2292/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-08-26T19:34:03.7347920Z [2293/5160] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-08-26T19:34:03.7460410Z [2294/5160] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2025-08-26T19:34:03.8270660Z [2295/5160] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2025-08-26T19:34:03.8533650Z [2296/5160] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2025-08-26T19:34:03.8703930Z [2297/5160] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2025-08-26T19:34:03.8984810Z [2298/5160] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2025-08-26T19:34:03.9031490Z [2299/5160] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2025-08-26T19:34:03.9142670Z [2300/5160] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2025-08-26T19:34:03.9267760Z [2301/5160] Linking CXX static library lib/libXNNPACK.a 2025-08-26T19:34:03.9342210Z [2302/5160] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2025-08-26T19:34:03.9895590Z [2303/5160] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2025-08-26T19:34:04.1133680Z [2304/5160] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2025-08-26T19:34:04.1248330Z [2305/5160] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2025-08-26T19:34:04.1253940Z [2306/5160] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2025-08-26T19:34:04.1381220Z [2307/5160] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2025-08-26T19:34:04.1426990Z [2308/5160] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2025-08-26T19:34:04.1498660Z [2309/5160] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2025-08-26T19:34:04.1957400Z [2310/5160] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2025-08-26T19:34:04.2916310Z [2311/5160] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2025-08-26T19:34:04.3513870Z [2312/5160] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2025-08-26T19:34:04.3662070Z [2313/5160] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2025-08-26T19:34:04.3703670Z [2314/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2025-08-26T19:34:04.3719910Z [2315/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2025-08-26T19:34:04.3886350Z [2316/5160] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2025-08-26T19:34:04.3891200Z [2317/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2025-08-26T19:34:04.4155250Z [2318/5160] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2025-08-26T19:34:04.4564720Z [2319/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2025-08-26T19:34:04.4741970Z [2320/5160] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2025-08-26T19:34:04.5819040Z [2321/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2025-08-26T19:34:04.6102050Z [2322/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2025-08-26T19:34:04.6316950Z [2323/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2025-08-26T19:34:04.6367810Z [2324/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2025-08-26T19:34:04.6470250Z [2325/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2025-08-26T19:34:04.6766950Z [2326/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2025-08-26T19:34:04.6928810Z [2327/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreterHooks.cpp.o 2025-08-26T19:34:04.6960430Z [2328/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2025-08-26T19:34:04.8244800Z [2329/5160] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2025-08-26T19:34:04.8261900Z [2330/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2025-08-26T19:34:04.8348040Z [2331/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2025-08-26T19:34:04.8595520Z [2332/5160] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2025-08-26T19:34:04.8608970Z [2333/5160] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2025-08-26T19:34:04.8818260Z [2334/5160] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2025-08-26T19:34:04.9032900Z [2335/5160] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2025-08-26T19:34:04.9138760Z [2336/5160] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2025-08-26T19:34:04.9744080Z [2337/5160] Building CXX object c10/CMakeFiles/c10.dir/util/DynamicCounter.cpp.o 2025-08-26T19:34:04.9759160Z [2338/5160] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2025-08-26T19:34:05.0738010Z [2339/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2025-08-26T19:34:05.0955930Z [2340/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2025-08-26T19:34:05.1012760Z [2341/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2025-08-26T19:34:05.1131780Z [2342/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2025-08-26T19:34:05.1305800Z [2343/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2025-08-26T19:34:05.1590570Z [2344/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e8m0fnu.cpp.o 2025-08-26T19:34:05.1716120Z [2345/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Gauge.cpp.o 2025-08-26T19:34:05.1900520Z [2346/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2025-08-26T19:34:05.2135500Z [2347/5160] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2025-08-26T19:34:05.2222360Z [2348/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2025-08-26T19:34:05.2384760Z [2349/5160] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2025-08-26T19:34:05.2852840Z [2350/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2025-08-26T19:34:05.3335540Z [2351/5160] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2025-08-26T19:34:05.3963170Z [2352/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2025-08-26T19:34:05.4214490Z [2353/5160] Building CXX object c10/CMakeFiles/c10.dir/util/NetworkFlow.cpp.o 2025-08-26T19:34:05.4238860Z [2354/5160] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2025-08-26T19:34:05.4404420Z [2355/5160] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2025-08-26T19:34:05.4415030Z [2356/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2025-08-26T19:34:05.4609860Z [2357/5160] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2025-08-26T19:34:05.4688090Z [2358/5160] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2025-08-26T19:34:05.4991380Z [2359/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2025-08-26T19:34:05.5097640Z [2360/5160] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2025-08-26T19:34:05.5168090Z [2361/5160] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2025-08-26T19:34:05.5340330Z [2362/5160] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2025-08-26T19:34:05.5677440Z [2363/5160] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2025-08-26T19:34:05.5961240Z [2364/5160] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2025-08-26T19:34:05.6402490Z [2365/5160] Building CXX object c10/CMakeFiles/c10.dir/util/WaitCounter.cpp.o 2025-08-26T19:34:05.6506250Z [2366/5160] Building CXX object c10/CMakeFiles/c10.dir/util/error.cpp.o 2025-08-26T19:34:05.6620140Z [2367/5160] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2025-08-26T19:34:05.7302490Z [2368/5160] Building CXX object c10/CMakeFiles/c10.dir/util/env.cpp.o 2025-08-26T19:34:05.7749160Z [2369/5160] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2025-08-26T19:34:05.7927020Z [2370/5160] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2025-08-26T19:34:05.8119850Z [2371/5160] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2025-08-26T19:34:05.8319850Z [2372/5160] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2025-08-26T19:34:05.8359930Z [2373/5160] 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-08-26T19:34:05.8566390Z [2374/5160] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2025-08-26T19:34:05.8780400Z [2375/5160] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2025-08-26T19:34:05.8783420Z [2376/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.c.o 2025-08-26T19:34:05.8817790Z [2377/5160] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2025-08-26T19:34:05.8958210Z [2378/5160] 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-08-26T19:34:05.9138800Z [2379/5160] 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-08-26T19:34:05.9286220Z [2380/5160] 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-08-26T19:34:05.9574040Z [2381/5160] 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-08-26T19:34:05.9750410Z [2382/5160] 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-08-26T19:34:05.9988510Z [2383/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.c.o 2025-08-26T19:34:06.0033790Z [2384/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.c.o 2025-08-26T19:34:06.0067140Z [2385/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.c.o 2025-08-26T19:34:06.0078580Z [2386/5160] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2025-08-26T19:34:06.0140330Z [2387/5160] 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-08-26T19:34:06.0298300Z [2388/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.c.o 2025-08-26T19:34:06.0369010Z [2389/5160] 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-08-26T19:34:06.0437400Z [2390/5160] 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-08-26T19:34:06.0702100Z [2391/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.c.o 2025-08-26T19:34:06.1060650Z [2392/5160] 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-08-26T19:34:06.1462120Z [2393/5160] 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-08-26T19:34:06.1482970Z [2394/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.c.o 2025-08-26T19:34:06.1634330Z [2395/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.c.o 2025-08-26T19:34:06.1651910Z [2396/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-08-26T19:34:06.1840870Z [2397/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-08-26T19:34:06.1941760Z [2398/5160] 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-08-26T19:34:06.1977210Z [2399/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-08-26T19:34:06.2066090Z [2400/5160] Linking CXX shared library lib/libc10.dylib 2025-08-26T19:34:06.2486440Z [2401/5160] 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-08-26T19:34:06.2720460Z [2402/5160] 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-08-26T19:34:06.2900170Z [2403/5160] 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-08-26T19:34:06.3010580Z [2404/5160] 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-08-26T19:34:06.3019410Z [2405/5160] 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-08-26T19:34:06.3046900Z [2406/5160] 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-08-26T19:34:06.3138840Z [2407/5160] 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-08-26T19:34:06.3348530Z [2408/5160] 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-08-26T19:34:06.3564090Z [2409/5160] 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-08-26T19:34:06.3713630Z [2410/5160] 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-08-26T19:34:06.3773170Z [2411/5160] 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-08-26T19:34:06.4057140Z [2412/5160] 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-08-26T19:34:06.4139580Z [2413/5160] 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-08-26T19:34:06.4281310Z [2414/5160] 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-08-26T19:34:06.4315460Z [2415/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.c.o 2025-08-26T19:34:06.4521860Z [2416/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.c.o 2025-08-26T19:34:06.5351770Z [2417/5160] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2025-08-26T19:34:06.5756020Z [2418/5160] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2025-08-26T19:34:06.6224810Z [2419/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2025-08-26T19:34:06.6227680Z /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-08-26T19:34:06.6230040Z sysTid = (int32_t)syscall(SYS_thread_selfid); 2025-08-26T19:34:06.6230610Z ^ 2025-08-26T19:34:06.6231720Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:748:6: note: 'syscall' has been explicitly marked deprecated here 2025-08-26T19:34:06.6232920Z int syscall(int, ...); 2025-08-26T19:34:06.6233310Z ^ 2025-08-26T19:34:06.6233630Z 1 warning generated. 2025-08-26T19:34:06.6387470Z [2420/5160] Linking CXX static library lib/libfmt.a 2025-08-26T19:34:06.6409440Z [2421/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ApproximateClock.cpp.o 2025-08-26T19:34:06.6515240Z [2422/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2025-08-26T19:34:06.6643720Z [2423/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2025-08-26T19:34:06.6651760Z [2424/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2025-08-26T19:34:06.7526470Z [2425/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2025-08-26T19:34:06.7880800Z [2426/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2025-08-26T19:34:06.7944420Z [2427/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2025-08-26T19:34:06.8238590Z [2428/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2025-08-26T19:34:06.8560060Z [2429/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2025-08-26T19:34:06.8738310Z [2430/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2025-08-26T19:34:06.8759080Z [2431/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2025-08-26T19:34:06.8896780Z [2432/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2025-08-26T19:34:06.8931620Z [2433/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2025-08-26T19:34:06.9050160Z [2434/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2025-08-26T19:34:06.9050860Z [2435/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2025-08-26T19:34:07.0305850Z [2436/5160] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2025-08-26T19:34:07.0437350Z [2437/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2025-08-26T19:34:07.0657190Z [2438/5160] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2025-08-26T19:34:07.0658570Z [2439/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2025-08-26T19:34:07.0696610Z [2440/5160] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2025-08-26T19:34:07.0706880Z [2441/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2025-08-26T19:34:07.0939400Z [2442/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2025-08-26T19:34:07.0956650Z [2443/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2025-08-26T19:34:07.1329130Z [2444/5160] Linking C executable sleef/bin/mkdisp 2025-08-26T19:34:07.1686610Z [2445/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2025-08-26T19:34:07.1703180Z [2446/5160] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2025-08-26T19:34:07.1805570Z [2447/5160] Linking C executable sleef/bin/mkmasked_gnuabi 2025-08-26T19:34:07.1807680Z [2448/5160] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2025-08-26T19:34:07.1808740Z [2449/5160] Linking C executable sleef/bin/mkalias 2025-08-26T19:34:07.1886580Z [2450/5160] 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-08-26T19:34:07.2027080Z [2451/5160] 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-08-26T19:34:07.2347200Z [2452/5160] Generating alias_ADVSIMD_dp.h.tmp 2025-08-26T19:34:07.2447350Z [2453/5160] 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-08-26T19:34:07.2592470Z [2454/5160] 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-08-26T19:34:07.2613850Z [2455/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2025-08-26T19:34:07.2979320Z [2456/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2025-08-26T19:34:07.3110110Z [2457/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2025-08-26T19:34:07.3168800Z [2458/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2025-08-26T19:34:07.3297080Z [2459/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2025-08-26T19:34:07.3410110Z [2460/5160] Linking CXX static library lib/libkineto.a 2025-08-26T19:34:07.3473790Z [2461/5160] Linking C shared library lib/libtorch_global_deps.dylib 2025-08-26T19:34:07.3645350Z [2462/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2025-08-26T19:34:07.3789590Z [2463/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2025-08-26T19:34:07.3861130Z [2464/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2025-08-26T19:34:07.4070780Z [2465/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2025-08-26T19:34:07.4200340Z [2466/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2025-08-26T19:34:07.4363360Z [2467/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2025-08-26T19:34:07.4446500Z [2468/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2025-08-26T19:34:07.4687370Z [2469/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2025-08-26T19:34:07.4877250Z [2470/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2025-08-26T19:34:07.4883680Z [2471/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2025-08-26T19:34:07.4903020Z [2472/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2025-08-26T19:34:07.5167110Z [2473/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2025-08-26T19:34:07.5176800Z [2474/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2025-08-26T19:34:07.5504220Z [2475/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2025-08-26T19:34:07.5577710Z [2476/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2025-08-26T19:34:07.5759600Z [2477/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2025-08-26T19:34:07.5866360Z [2478/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2025-08-26T19:34:07.6051210Z [2479/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2025-08-26T19:34:07.6082840Z [2480/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2025-08-26T19:34:07.6307130Z [2481/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2025-08-26T19:34:07.6308560Z [2482/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2025-08-26T19:34:07.6337580Z [2483/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2025-08-26T19:34:07.6529060Z [2484/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2025-08-26T19:34:07.6747140Z [2485/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2025-08-26T19:34:07.7196130Z [2486/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2025-08-26T19:34:07.7295980Z [2487/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2025-08-26T19:34:07.7399720Z [2488/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2025-08-26T19:34:07.7442220Z [2489/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2025-08-26T19:34:07.7549560Z [2490/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2025-08-26T19:34:07.7638760Z [2491/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2025-08-26T19:34:07.7688030Z [2492/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2025-08-26T19:34:07.7728790Z [2493/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2025-08-26T19:34:07.7882660Z [2494/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2025-08-26T19:34:07.8406580Z [2495/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2025-08-26T19:34:07.8913490Z [2496/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2025-08-26T19:34:07.8935890Z [2497/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2025-08-26T19:34:07.9054140Z [2498/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:07.9058030Z [2499/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2025-08-26T19:34:07.9072060Z [2500/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:07.9084740Z [2501/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2025-08-26T19:34:07.9344240Z [2502/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2025-08-26T19:34:07.9428880Z [2503/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:07.9718520Z [2504/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2025-08-26T19:34:08.0129020Z [2505/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.0131980Z [2506/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.0286360Z [2507/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.0302610Z [2508/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2025-08-26T19:34:08.0356890Z [2509/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.0460300Z [2510/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2025-08-26T19:34:08.0603070Z [2511/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2025-08-26T19:34:08.0615500Z [2512/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2025-08-26T19:34:08.0791520Z [2513/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.1468850Z [2514/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2025-08-26T19:34:08.1551840Z [2515/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.1632540Z [2516/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2025-08-26T19:34:08.1694230Z [2517/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2025-08-26T19:34:08.1722570Z [2518/5160] 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-08-26T19:34:08.1743710Z [2519/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.1897330Z [2520/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.1975320Z [2521/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2025-08-26T19:34:08.2163530Z [2522/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.2227720Z [2523/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.2979980Z [2524/5160] 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-08-26T19:34:08.3143950Z [2525/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2025-08-26T19:34:08.3151530Z [2526/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.3263190Z [2527/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2025-08-26T19:34:08.3265510Z [2528/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2025-08-26T19:34:08.3318250Z [2529/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2025-08-26T19:34:08.3373360Z [2530/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2025-08-26T19:34:08.3514430Z [2531/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.3829850Z [2532/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.3992660Z [2533/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.4522040Z [2534/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-08-26T19:34:08.4696530Z [2535/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2025-08-26T19:34:08.4698670Z [2536/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-08-26T19:34:08.4840920Z [2537/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.4845990Z [2538/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.4848710Z [2539/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.5038860Z [2540/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.5076330Z [2541/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.5240730Z [2542/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2025-08-26T19:34:08.5656200Z [2543/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.5852650Z [2544/5160] 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-08-26T19:34:08.6218790Z [2545/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2025-08-26T19:34:08.6224950Z [2546/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2025-08-26T19:34:08.6236180Z [2547/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.6364080Z [2548/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.6410230Z [2549/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.6421870Z [2550/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2025-08-26T19:34:08.6479170Z [2551/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-08-26T19:34:08.6619810Z [2552/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.7402710Z [2553/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-08-26T19:34:08.7519780Z [2554/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-08-26T19:34:08.7545990Z [2555/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.7606110Z [2556/5160] 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-08-26T19:34:08.7783130Z [2557/5160] 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-08-26T19:34:08.7796850Z [2558/5160] 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-08-26T19:34:08.8022280Z [2559/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.8047240Z [2560/5160] 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-08-26T19:34:08.8101220Z [2561/5160] 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-08-26T19:34:08.8227850Z [2562/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2025-08-26T19:34:08.8688470Z [2563/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.8760590Z [2564/5160] 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-08-26T19:34:08.8810900Z [2565/5160] 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-08-26T19:34:08.9076290Z [2566/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2025-08-26T19:34:08.9089630Z [2567/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2025-08-26T19:34:08.9330990Z [2568/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2025-08-26T19:34:08.9675150Z [2569/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2025-08-26T19:34:08.9795530Z [2570/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2025-08-26T19:34:08.9810110Z [2571/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2025-08-26T19:34:08.9811390Z [2572/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2025-08-26T19:34:08.9839020Z [2573/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2025-08-26T19:34:09.0023570Z [2574/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2025-08-26T19:34:09.0271350Z [2575/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2025-08-26T19:34:09.0319770Z [2576/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2025-08-26T19:34:09.0331970Z [2577/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2025-08-26T19:34:09.0698290Z [2578/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2025-08-26T19:34:09.0924020Z [2579/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2025-08-26T19:34:09.0929630Z [2580/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2025-08-26T19:34:09.0952260Z [2581/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2025-08-26T19:34:09.1108730Z [2582/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2025-08-26T19:34:09.1195280Z [2583/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2025-08-26T19:34:09.1359290Z [2584/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2025-08-26T19:34:09.1655810Z [2585/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2025-08-26T19:34:09.1708960Z [2586/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2025-08-26T19:34:09.2433340Z [2587/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2025-08-26T19:34:09.2749570Z [2588/5160] 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-08-26T19:34:09.2897300Z [2589/5160] 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-08-26T19:34:09.2905560Z [2590/5160] 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-08-26T19:34:09.2909800Z [2591/5160] 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-08-26T19:34:09.3052610Z [2592/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2025-08-26T19:34:09.3055520Z [2593/5160] 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-08-26T19:34:09.3177780Z [2594/5160] 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-08-26T19:34:09.3250780Z [2595/5160] 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-08-26T19:34:09.3469960Z [2596/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2025-08-26T19:34:09.3580670Z [2597/5160] 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-08-26T19:34:09.4277290Z [2598/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u16.c.o 2025-08-26T19:34:09.4371030Z [2599/5160] 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-08-26T19:34:09.4384940Z [2600/5160] 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-08-26T19:34:09.4413160Z [2601/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c16.c.o 2025-08-26T19:34:09.4498670Z [2602/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c64.c.o 2025-08-26T19:34:09.4514480Z [2603/5160] 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-08-26T19:34:09.4530180Z [2604/5160] 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-08-26T19:34:09.4546420Z [2605/5160] 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-08-26T19:34:09.5030950Z [2606/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc2.c.o 2025-08-26T19:34:09.5164760Z [2607/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2025-08-26T19:34:09.5765000Z [2608/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc4.c.o 2025-08-26T19:34:09.5807960Z [2609/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2025-08-26T19:34:09.5858130Z [2610/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2025-08-26T19:34:09.5869500Z [2611/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2025-08-26T19:34:09.5878130Z [2612/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2025-08-26T19:34:09.5883230Z [2613/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2025-08-26T19:34:09.6043510Z [2614/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2025-08-26T19:34:09.6213660Z [2615/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2025-08-26T19:34:09.6751230Z [2616/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2025-08-26T19:34:09.6851420Z [2617/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2025-08-26T19:34:09.6996590Z [2618/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2025-08-26T19:34:09.7059560Z [2619/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2025-08-26T19:34:09.7130850Z [2620/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-08-26T19:34:09.7145070Z [2621/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-08-26T19:34:09.7334460Z [2622/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-08-26T19:34:09.7439810Z [2623/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-08-26T19:34:09.7546270Z [2624/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:09.7548660Z [2625/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-08-26T19:34:09.8065060Z [2626/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-08-26T19:34:09.8067540Z [2627/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-08-26T19:34:09.8271460Z [2628/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-08-26T19:34:09.8380900Z [2629/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:09.8744380Z [2630/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-08-26T19:34:09.8849370Z [2631/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:09.9053060Z [2632/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:09.9144840Z [2633/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-08-26T19:34:09.9147100Z [2634/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:09.9263590Z [2635/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:09.9292650Z [2636/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:09.9415470Z [2637/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:09.9417990Z [2638/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:09.9593340Z [2639/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.0285940Z [2640/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.0373120Z [2641/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.0569870Z [2642/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.0570770Z [2643/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.0595530Z [2644/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.0695970Z [2645/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.0699980Z [2646/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.0801660Z [2647/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.0804020Z [2648/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.1024850Z [2649/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.1823860Z [2650/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.1888850Z [2651/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.1988790Z [2652/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.2092770Z [2653/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.2194510Z [2654/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.2197420Z [2655/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.2200770Z [2656/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.2322240Z [2657/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.2412660Z [2658/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.2501190Z [2659/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.3268930Z [2660/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.3395670Z [2661/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.3571140Z [2662/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.3670790Z [2663/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.3706270Z [2664/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.3708440Z [2665/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.3772880Z [2666/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.3912020Z [2667/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.3965050Z [2668/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.3986340Z [2669/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.4885280Z [2670/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-08-26T19:34:10.4896040Z [2671/5160] 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-08-26T19:34:10.4917090Z [2672/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2025-08-26T19:34:10.5073920Z [2673/5160] 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-08-26T19:34:10.5083090Z [2674/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2025-08-26T19:34:10.5108410Z [2675/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2025-08-26T19:34:10.5241970Z [2676/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-08-26T19:34:10.5249860Z [2677/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2025-08-26T19:34:10.5831050Z [2678/5160] 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-08-26T19:34:10.6279210Z [2679/5160] 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-08-26T19:34:10.6412880Z [2680/5160] 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-08-26T19:34:10.6441400Z [2681/5160] 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-08-26T19:34:10.6561000Z [2682/5160] 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-08-26T19:34:10.6584920Z [2683/5160] 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-08-26T19:34:10.6597970Z [2684/5160] 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-08-26T19:34:10.6781250Z [2685/5160] 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-08-26T19:34:10.6801940Z [2686/5160] 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-08-26T19:34:10.6813340Z [2687/5160] 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-08-26T19:34:10.7256200Z [2688/5160] 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-08-26T19:34:10.7691240Z [2689/5160] 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-08-26T19:34:10.7710220Z [2690/5160] 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-08-26T19:34:10.7803460Z [2691/5160] 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-08-26T19:34:10.7973360Z [2692/5160] 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-08-26T19:34:10.7975920Z [2693/5160] 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-08-26T19:34:10.8005500Z [2694/5160] 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-08-26T19:34:10.8153910Z [2695/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u16.c.o 2025-08-26T19:34:10.8270570Z [2696/5160] 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-08-26T19:34:10.8346640Z [2697/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u64.c.o 2025-08-26T19:34:10.8544490Z [2698/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc2.c.o 2025-08-26T19:34:10.9031840Z [2699/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2025-08-26T19:34:10.9084400Z [2700/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc4.c.o 2025-08-26T19:34:10.9194030Z [2701/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2025-08-26T19:34:10.9297340Z [2702/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2025-08-26T19:34:10.9299150Z [2703/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2025-08-26T19:34:10.9371290Z [2704/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2025-08-26T19:34:10.9454410Z [2705/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2025-08-26T19:34:10.9537740Z [2706/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2025-08-26T19:34:10.9780450Z [2707/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2025-08-26T19:34:10.9892890Z [2708/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2025-08-26T19:34:11.0510990Z [2709/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-08-26T19:34:11.0520520Z [2710/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-08-26T19:34:11.0612870Z [2711/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-08-26T19:34:11.0656320Z [2712/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-08-26T19:34:11.0666690Z [2713/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-08-26T19:34:11.0823750Z [2714/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-08-26T19:34:11.0825590Z [2715/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-08-26T19:34:11.0856540Z [2716/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-08-26T19:34:11.1220660Z [2717/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-08-26T19:34:11.1524750Z [2718/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-08-26T19:34:11.1828360Z [2719/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2025-08-26T19:34:11.1920890Z [2720/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2025-08-26T19:34:11.1945500Z [2721/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2025-08-26T19:34:11.1968490Z [2722/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2025-08-26T19:34:11.2084830Z [2723/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2025-08-26T19:34:11.2129390Z [2724/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2025-08-26T19:34:11.2183040Z [2725/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2025-08-26T19:34:11.2391910Z [2726/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2025-08-26T19:34:11.2847790Z [2727/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2025-08-26T19:34:11.2943620Z [2728/5160] 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-08-26T19:34:11.3089970Z [2729/5160] 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-08-26T19:34:11.3104160Z [2730/5160] 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-08-26T19:34:11.3126570Z [2731/5160] 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-08-26T19:34:11.3308180Z [2732/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2025-08-26T19:34:11.3434050Z [2733/5160] 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-08-26T19:34:11.3617630Z [2734/5160] 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-08-26T19:34:11.3634380Z [2735/5160] 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-08-26T19:34:11.3816560Z [2736/5160] 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-08-26T19:34:11.4047540Z [2737/5160] 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-08-26T19:34:11.4202680Z [2738/5160] 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-08-26T19:34:11.4256710Z [2739/5160] 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-08-26T19:34:11.4406640Z [2740/5160] 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-08-26T19:34:11.4420110Z [2741/5160] 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-08-26T19:34:11.4602860Z [2742/5160] 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-08-26T19:34:11.4635260Z [2743/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2025-08-26T19:34:11.4956690Z [2744/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2025-08-26T19:34:11.5091180Z [2745/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2025-08-26T19:34:11.5215770Z [2746/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2025-08-26T19:34:11.5228030Z [2747/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2025-08-26T19:34:11.5464220Z [2748/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2025-08-26T19:34:11.5761420Z [2749/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2025-08-26T19:34:11.5885350Z [2750/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2025-08-26T19:34:11.5905290Z [2751/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2025-08-26T19:34:11.6010550Z [2752/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2025-08-26T19:34:11.6046490Z [2753/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2025-08-26T19:34:11.6331570Z [2754/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2025-08-26T19:34:11.6336640Z [2755/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2025-08-26T19:34:11.6400750Z [2756/5160] 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-08-26T19:34:11.6637330Z [2757/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2025-08-26T19:34:11.6727700Z [2758/5160] 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-08-26T19:34:11.6994230Z [2759/5160] 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-08-26T19:34:11.7176680Z [2760/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-gio-neon-u2.c.o 2025-08-26T19:34:11.7246460Z [2761/5160] 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-08-26T19:34:11.7472550Z [2762/5160] 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-08-26T19:34:11.7486020Z [2763/5160] 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-08-26T19:34:11.7693410Z [2764/5160] 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-08-26T19:34:11.7721480Z [2765/5160] 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-08-26T19:34:11.7933420Z [2766/5160] 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-08-26T19:34:11.7967990Z [2767/5160] 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-08-26T19:34:11.8004910Z [2768/5160] 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-08-26T19:34:11.8204070Z [2769/5160] 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-08-26T19:34:11.8763550Z [2770/5160] 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-08-26T19:34:11.8770510Z [2771/5160] 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-08-26T19:34:11.8858870Z [2772/5160] 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-08-26T19:34:11.8967980Z [2773/5160] 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-08-26T19:34:11.9000490Z [2774/5160] 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-08-26T19:34:11.9009010Z [2775/5160] 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-08-26T19:34:11.9438750Z [2776/5160] 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-08-26T19:34:11.9507490Z [2777/5160] 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-08-26T19:34:11.9748830Z [2778/5160] 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-08-26T19:34:11.9832690Z [2779/5160] 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-08-26T19:34:12.0219880Z [2780/5160] 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-08-26T19:34:12.0266020Z [2781/5160] 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-08-26T19:34:12.0289560Z [2782/5160] 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-08-26T19:34:12.0331750Z [2783/5160] 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-08-26T19:34:12.0513130Z [2784/5160] 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-08-26T19:34:12.0806850Z [2785/5160] 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-08-26T19:34:12.0864230Z [2786/5160] 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-08-26T19:34:12.1089880Z [2787/5160] 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-08-26T19:34:12.1240150Z [2788/5160] 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-08-26T19:34:12.1438240Z [2789/5160] 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-08-26T19:34:12.1453180Z [2790/5160] 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-08-26T19:34:12.1475170Z [2791/5160] 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-08-26T19:34:12.1685380Z [2792/5160] 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-08-26T19:34:12.1793700Z [2793/5160] 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-08-26T19:34:12.1811220Z [2794/5160] 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-08-26T19:34:12.2393350Z [2795/5160] 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-08-26T19:34:12.2493780Z [2796/5160] 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-08-26T19:34:12.2613600Z [2797/5160] 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-08-26T19:34:12.2623640Z [2798/5160] 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-08-26T19:34:12.2865700Z [2799/5160] 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-08-26T19:34:12.3099870Z [2800/5160] 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-08-26T19:34:12.3332290Z [2801/5160] 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-08-26T19:34:12.3395070Z [2802/5160] 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-08-26T19:34:12.3565500Z [2803/5160] 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-08-26T19:34:12.3589960Z [2804/5160] 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-08-26T19:34:12.3674310Z [2805/5160] 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-08-26T19:34:12.3726890Z [2806/5160] 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-08-26T19:34:12.3897340Z [2807/5160] 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-08-26T19:34:12.4469540Z [2808/5160] 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-08-26T19:34:12.4568510Z [2809/5160] 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-08-26T19:34:12.4687330Z [2810/5160] 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-08-26T19:34:12.4723940Z [2811/5160] 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-08-26T19:34:12.4871480Z [2812/5160] 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-08-26T19:34:12.4921370Z [2813/5160] 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-08-26T19:34:12.5053870Z [2814/5160] 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-08-26T19:34:12.5157390Z [2815/5160] 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-08-26T19:34:12.5328380Z [2816/5160] 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-08-26T19:34:12.5821920Z [2817/5160] 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-08-26T19:34:12.5909780Z [2818/5160] 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-08-26T19:34:12.5924420Z [2819/5160] 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-08-26T19:34:12.5993710Z [2820/5160] 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-08-26T19:34:12.6118350Z [2821/5160] 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-08-26T19:34:12.6190160Z [2822/5160] 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-08-26T19:34:12.6339420Z [2823/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2025-08-26T19:34:12.6420260Z [2824/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2025-08-26T19:34:12.6722500Z [2825/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2025-08-26T19:34:12.6876240Z [2826/5160] 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-08-26T19:34:12.7071920Z [2827/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.7090110Z [2828/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.7159390Z [2829/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.7319470Z [2830/5160] 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-08-26T19:34:12.7323050Z [2831/5160] 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-08-26T19:34:12.7671940Z [2832/5160] 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-08-26T19:34:12.7682450Z [2833/5160] 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-08-26T19:34:12.8355580Z [2834/5160] 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-08-26T19:34:12.8505150Z [2835/5160] 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-08-26T19:34:12.8552020Z [2836/5160] 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-08-26T19:34:12.8620320Z [2837/5160] 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-08-26T19:34:12.8686800Z [2838/5160] 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-08-26T19:34:12.8787520Z [2839/5160] 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-08-26T19:34:12.8792090Z [2840/5160] 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-08-26T19:34:12.9082830Z [2841/5160] 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-08-26T19:34:12.9204470Z [2842/5160] 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-08-26T19:34:12.9364210Z [2843/5160] 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-08-26T19:34:12.9743170Z [2844/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.9840790Z [2845/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.9853780Z [2846/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.9860350Z [2847/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.9903720Z [2848/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:12.9955210Z [2849/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:13.0097980Z [2850/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:13.0556940Z [2851/5160] 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-08-26T19:34:13.0577780Z [2852/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2025-08-26T19:34:13.0780630Z [2853/5160] 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-08-26T19:34:13.1009530Z [2854/5160] 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-08-26T19:34:13.1229520Z [2855/5160] 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-08-26T19:34:13.1235260Z [2856/5160] 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-08-26T19:34:13.1443180Z [2857/5160] 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-08-26T19:34:13.1483100Z [2858/5160] 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-08-26T19:34:13.1567320Z [2859/5160] 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-08-26T19:34:13.1688950Z [2860/5160] 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-08-26T19:34:13.2007680Z [2861/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u1.c.o 2025-08-26T19:34:13.2017350Z [2862/5160] 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-08-26T19:34:13.2345410Z [2863/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u2.c.o 2025-08-26T19:34:13.2641710Z [2864/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u4.c.o 2025-08-26T19:34:13.2690140Z [2865/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u1.c.o 2025-08-26T19:34:13.2768680Z [2866/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u4.c.o 2025-08-26T19:34:13.2874830Z [2867/5160] 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-08-26T19:34:13.2889280Z [2868/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u1.c.o 2025-08-26T19:34:13.2893510Z [2869/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:13.2951140Z [2870/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u2.c.o 2025-08-26T19:34:13.3543960Z [2871/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u4.c.o 2025-08-26T19:34:13.3921870Z [2872/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2025-08-26T19:34:13.3932200Z [2873/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2025-08-26T19:34:13.3937920Z [2874/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u1.c.o 2025-08-26T19:34:13.4070660Z [2875/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u4.c.o 2025-08-26T19:34:13.4073790Z [2876/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:13.4076750Z [2877/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2025-08-26T19:34:13.4247870Z [2878/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2025-08-26T19:34:13.4249180Z [2879/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2025-08-26T19:34:13.4742920Z [2880/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2025-08-26T19:34:13.4928620Z [2881/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2025-08-26T19:34:13.5287060Z [2882/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2025-08-26T19:34:13.5289800Z [2883/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2025-08-26T19:34:13.5381450Z [2884/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2025-08-26T19:34:13.5424970Z [2885/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u1.c.o 2025-08-26T19:34:13.5557440Z [2886/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2025-08-26T19:34:13.5643400Z [2887/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u4.c.o 2025-08-26T19:34:13.5677510Z [2888/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u2.c.o 2025-08-26T19:34:13.5949400Z [2889/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u2.c.o 2025-08-26T19:34:13.5963970Z [2890/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u1.c.o 2025-08-26T19:34:13.6271820Z [2891/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2025-08-26T19:34:13.6515640Z [2892/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u4.c.o 2025-08-26T19:34:13.6635210Z [2893/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u1.c.o 2025-08-26T19:34:13.6676980Z [2894/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u4.c.o 2025-08-26T19:34:13.6869610Z [2895/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2025-08-26T19:34:13.6890850Z [2896/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u4.c.o 2025-08-26T19:34:13.7125050Z [2897/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u1.c.o 2025-08-26T19:34:13.7125980Z [2898/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u2.c.o 2025-08-26T19:34:13.7404790Z [2899/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2025-08-26T19:34:13.7407830Z [2900/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2025-08-26T19:34:13.7842300Z [2901/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2025-08-26T19:34:13.7889700Z [2902/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2025-08-26T19:34:13.8006960Z [2903/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u1.c.o 2025-08-26T19:34:13.8023000Z [2904/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2025-08-26T19:34:13.8153320Z [2905/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u2.c.o 2025-08-26T19:34:13.8154930Z [2906/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u4.c.o 2025-08-26T19:34:13.8407180Z [2907/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u1.c.o 2025-08-26T19:34:13.8747520Z [2908/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:13.8850830Z [2909/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u4.c.o 2025-08-26T19:34:13.9168750Z [2910/5160] 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-08-26T19:34:13.9184370Z [2911/5160] 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-08-26T19:34:13.9364460Z [2912/5160] 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-08-26T19:34:13.9395580Z [2913/5160] 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-08-26T19:34:13.9399400Z [2914/5160] 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-08-26T19:34:13.9568230Z [2915/5160] 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-08-26T19:34:13.9663710Z [2916/5160] 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-08-26T19:34:13.9680650Z [2917/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u2.c.o 2025-08-26T19:34:14.0061780Z [2918/5160] 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-08-26T19:34:14.0080190Z [2919/5160] 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-08-26T19:34:14.0637980Z [2920/5160] 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-08-26T19:34:14.0644790Z [2921/5160] 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-08-26T19:34:14.0679350Z [2922/5160] 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-08-26T19:34:14.0845950Z [2923/5160] 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-08-26T19:34:14.0848090Z [2924/5160] 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-08-26T19:34:14.0852080Z [2925/5160] 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-08-26T19:34:14.0902860Z [2926/5160] 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-08-26T19:34:14.1210250Z [2927/5160] 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-08-26T19:34:14.1366790Z [2928/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2025-08-26T19:34:14.1445560Z [2929/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2025-08-26T19:34:14.2045000Z [2930/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2025-08-26T19:34:14.2106140Z [2931/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2025-08-26T19:34:14.2191700Z [2932/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2025-08-26T19:34:14.2217590Z [2933/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2025-08-26T19:34:14.2237020Z [2934/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2025-08-26T19:34:14.2345220Z [2935/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2025-08-26T19:34:14.2434820Z [2936/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2025-08-26T19:34:14.2439230Z [2937/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2025-08-26T19:34:14.2672380Z [2938/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2025-08-26T19:34:14.2682710Z [2939/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2025-08-26T19:34:14.3541530Z [2940/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2025-08-26T19:34:14.3581710Z [2941/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2025-08-26T19:34:14.3592840Z [2942/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2025-08-26T19:34:14.3604650Z [2943/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2025-08-26T19:34:14.3674210Z [2944/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2025-08-26T19:34:14.4010310Z [2945/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2025-08-26T19:34:14.4018010Z [2946/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2025-08-26T19:34:14.4173320Z [2947/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2025-08-26T19:34:14.4327770Z [2948/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2025-08-26T19:34:14.4412260Z [2949/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.4771620Z [2950/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.4808640Z [2951/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.4828570Z [2952/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2025-08-26T19:34:14.4951330Z [2953/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.5076240Z [2954/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.5488880Z [2955/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.5496310Z [2956/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.5510630Z [2957/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.5767070Z [2958/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.5828340Z [2959/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.6217600Z [2960/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.6243060Z [2961/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.6273740Z [2962/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.6474270Z [2963/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.6667120Z [2964/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:14.7073560Z [2965/5160] 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-08-26T19:34:14.7110070Z [2966/5160] 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-08-26T19:34:14.7125810Z [2967/5160] 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-08-26T19:34:14.7231590Z [2968/5160] 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-08-26T19:34:14.7352490Z [2969/5160] 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-08-26T19:34:14.7527350Z [2970/5160] 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-08-26T19:34:14.7705360Z [2971/5160] 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-08-26T19:34:14.7812430Z [2972/5160] 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-08-26T19:34:14.7865660Z [2973/5160] 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-08-26T19:34:14.8478980Z [2974/5160] 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-08-26T19:34:14.8581680Z [2975/5160] 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-08-26T19:34:14.8606890Z [2976/5160] 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-08-26T19:34:14.8699290Z [2977/5160] 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-08-26T19:34:14.8748530Z [2978/5160] 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-08-26T19:34:14.8881820Z [2979/5160] 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-08-26T19:34:14.9168510Z [2980/5160] 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-08-26T19:34:14.9236930Z [2981/5160] 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-08-26T19:34:14.9257020Z [2982/5160] 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-08-26T19:34:14.9392920Z [2983/5160] 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-08-26T19:34:14.9708600Z [2984/5160] 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-08-26T19:34:14.9985630Z [2985/5160] 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-08-26T19:34:15.0039140Z [2986/5160] 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-08-26T19:34:15.0049440Z [2987/5160] 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-08-26T19:34:15.0186820Z [2988/5160] 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-08-26T19:34:15.0360500Z [2989/5160] 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-08-26T19:34:15.0613460Z [2990/5160] 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-08-26T19:34:15.0699260Z [2991/5160] 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-08-26T19:34:15.0714530Z [2992/5160] 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-08-26T19:34:15.0819570Z [2993/5160] 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-08-26T19:34:15.0881680Z [2994/5160] 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-08-26T19:34:15.1623250Z [2995/5160] 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-08-26T19:34:15.1630460Z [2996/5160] 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-08-26T19:34:15.1711780Z [2997/5160] 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-08-26T19:34:15.1793430Z [2998/5160] 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-08-26T19:34:15.1958290Z [2999/5160] 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-08-26T19:34:15.1962050Z [3000/5160] 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-08-26T19:34:15.2073720Z [3001/5160] 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-08-26T19:34:15.2285110Z [3002/5160] 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-08-26T19:34:15.2440600Z [3003/5160] 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-08-26T19:34:15.2532080Z [3004/5160] 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-08-26T19:34:15.3047240Z [3005/5160] 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-08-26T19:34:15.3068550Z [3006/5160] 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-08-26T19:34:15.3115800Z [3007/5160] 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-08-26T19:34:15.3218020Z [3008/5160] 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-08-26T19:34:15.3325820Z [3009/5160] 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-08-26T19:34:15.3600030Z [3010/5160] 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-08-26T19:34:15.3814430Z [3011/5160] 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-08-26T19:34:15.4021820Z [3012/5160] 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-08-26T19:34:15.4252390Z [3013/5160] 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-08-26T19:34:15.4345620Z [3014/5160] 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-08-26T19:34:15.4470540Z [3015/5160] 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-08-26T19:34:15.4472530Z [3016/5160] 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-08-26T19:34:15.4642530Z [3017/5160] 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-08-26T19:34:15.4862690Z [3018/5160] 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-08-26T19:34:15.4896170Z [3019/5160] 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-08-26T19:34:15.5008370Z [3020/5160] 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-08-26T19:34:15.5573450Z [3021/5160] 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-08-26T19:34:15.5608800Z [3022/5160] 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-08-26T19:34:15.5727920Z [3023/5160] 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-08-26T19:34:15.5927940Z [3024/5160] 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-08-26T19:34:15.5946210Z [3025/5160] 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-08-26T19:34:15.5950570Z [3026/5160] 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-08-26T19:34:15.6230580Z [3027/5160] 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-08-26T19:34:15.6429720Z [3028/5160] 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-08-26T19:34:15.6432150Z [3029/5160] 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-08-26T19:34:15.6434320Z [3030/5160] 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-08-26T19:34:15.7170180Z [3031/5160] 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-08-26T19:34:15.7222360Z [3032/5160] 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-08-26T19:34:15.7230180Z [3033/5160] 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-08-26T19:34:15.7258680Z [3034/5160] 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-08-26T19:34:15.7316540Z [3035/5160] 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-08-26T19:34:15.7411150Z [3036/5160] 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-08-26T19:34:15.7615230Z [3037/5160] 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-08-26T19:34:15.8038680Z [3038/5160] 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-08-26T19:34:15.8145070Z [3039/5160] 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-08-26T19:34:15.8286460Z [3040/5160] 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-08-26T19:34:15.8695680Z [3041/5160] 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-08-26T19:34:15.8788740Z [3042/5160] 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-08-26T19:34:15.8823710Z [3043/5160] 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-08-26T19:34:15.8830810Z [3044/5160] 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-08-26T19:34:15.8884280Z [3045/5160] 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-08-26T19:34:15.9002810Z [3046/5160] 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-08-26T19:34:15.9106830Z [3047/5160] 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-08-26T19:34:15.9864790Z [3048/5160] 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-08-26T19:34:15.9990980Z [3049/5160] 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-08-26T19:34:16.0038820Z [3050/5160] 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-08-26T19:34:16.0066300Z [3051/5160] 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-08-26T19:34:16.0210960Z [3052/5160] 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-08-26T19:34:16.0388880Z [3053/5160] 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-08-26T19:34:16.0397470Z [3054/5160] 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-08-26T19:34:16.0502730Z [3055/5160] 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-08-26T19:34:16.0642210Z [3056/5160] 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-08-26T19:34:16.0648140Z [3057/5160] 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-08-26T19:34:16.1392350Z [3058/5160] 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-08-26T19:34:16.1432680Z [3059/5160] 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-08-26T19:34:16.1444390Z [3060/5160] 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-08-26T19:34:16.1594840Z [3061/5160] 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-08-26T19:34:16.1737390Z [3062/5160] 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-08-26T19:34:16.1757270Z [3063/5160] 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-08-26T19:34:16.2001660Z [3064/5160] 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-08-26T19:34:16.2107090Z [3065/5160] 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-08-26T19:34:16.2307300Z [3066/5160] 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-08-26T19:34:16.2518370Z [3067/5160] 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-08-26T19:34:16.2717360Z [3068/5160] 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-08-26T19:34:16.2855840Z [3069/5160] 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-08-26T19:34:16.2960830Z [3070/5160] 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-08-26T19:34:16.3062120Z [3071/5160] 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-08-26T19:34:16.3112800Z [3072/5160] 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-08-26T19:34:16.3451060Z [3073/5160] 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-08-26T19:34:16.3672460Z [3074/5160] 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-08-26T19:34:16.3707470Z [3075/5160] 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-08-26T19:34:16.3915410Z [3076/5160] 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-08-26T19:34:16.3918070Z [3077/5160] 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-08-26T19:34:16.4186810Z [3078/5160] 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-08-26T19:34:16.4211670Z [3079/5160] 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-08-26T19:34:16.4225500Z [3080/5160] 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-08-26T19:34:16.4376050Z [3081/5160] 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-08-26T19:34:16.4556010Z [3082/5160] 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-08-26T19:34:16.4859910Z [3083/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.4970060Z [3084/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-26T19:34:16.5018090Z [3085/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-26T19:34:16.5291620Z [3086/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.5429720Z [3087/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-26T19:34:16.5722110Z [3088/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-26T19:34:16.5736500Z [3089/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-26T19:34:16.5757980Z [3090/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.5934970Z [3091/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.5947220Z [3092/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-26T19:34:16.6426060Z [3093/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.6533060Z [3094/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.6572760Z [3095/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.6865990Z [3096/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.6889340Z [3097/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.7094180Z [3098/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.7146870Z [3099/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.7213930Z [3100/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.7235640Z [3101/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.7427770Z [3102/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.7949100Z [3103/5160] 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-08-26T19:34:16.7984610Z [3104/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-08-26T19:34:16.8028810Z [3105/5160] 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-08-26T19:34:16.8228380Z [3106/5160] 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-08-26T19:34:16.8403810Z [3107/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-26T19:34:16.8589350Z [3108/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-26T19:34:16.8594390Z [3109/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-26T19:34:16.8647180Z [3110/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-08-26T19:34:16.8767460Z [3111/5160] 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-08-26T19:34:16.8783150Z [3112/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-08-26T19:34:16.9311640Z [3113/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u4.c.o 2025-08-26T19:34:16.9350410Z [3114/5160] 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-08-26T19:34:16.9409980Z [3115/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u4.c.o 2025-08-26T19:34:16.9530210Z [3116/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-08-26T19:34:16.9597120Z [3117/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u4.c.o 2025-08-26T19:34:17.0001630Z [3118/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2025-08-26T19:34:17.0226680Z [3119/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2025-08-26T19:34:17.0282350Z [3120/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2025-08-26T19:34:17.0443940Z [3121/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2025-08-26T19:34:17.0498390Z [3122/5160] 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-08-26T19:34:17.0544770Z [3123/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2025-08-26T19:34:17.0626640Z [3124/5160] 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-08-26T19:34:17.0677980Z [3125/5160] 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-08-26T19:34:17.0754790Z [3126/5160] 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-08-26T19:34:17.0768180Z [3127/5160] 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-08-26T19:34:17.1385810Z [3128/5160] 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-08-26T19:34:17.1619690Z [3129/5160] 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-08-26T19:34:17.1695080Z [3130/5160] 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-08-26T19:34:17.1808740Z [3131/5160] 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-08-26T19:34:17.1881230Z [3132/5160] 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-08-26T19:34:17.1911460Z [3133/5160] 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-08-26T19:34:17.2003800Z [3134/5160] 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-08-26T19:34:17.2041650Z [3135/5160] 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-08-26T19:34:17.2123530Z [3136/5160] 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-08-26T19:34:17.2199360Z [3137/5160] 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-08-26T19:34:17.2908210Z [3138/5160] 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-08-26T19:34:17.2995430Z [3139/5160] 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-08-26T19:34:17.3141060Z [3140/5160] 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-08-26T19:34:17.3152120Z [3141/5160] 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-08-26T19:34:17.3183670Z [3142/5160] 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-08-26T19:34:17.3321200Z [3143/5160] 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-08-26T19:34:17.3410810Z [3144/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2025-08-26T19:34:17.3429510Z [3145/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2025-08-26T19:34:17.3746040Z [3146/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2025-08-26T19:34:17.3997430Z [3147/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2025-08-26T19:34:17.4205570Z [3148/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2025-08-26T19:34:17.4241190Z [3149/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2025-08-26T19:34:17.4279250Z [3150/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2025-08-26T19:34:17.4396050Z [3151/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2025-08-26T19:34:17.4470540Z [3152/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2025-08-26T19:34:17.4546400Z [3153/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2025-08-26T19:34:17.4767710Z [3154/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u8.c.o 2025-08-26T19:34:17.4801330Z [3155/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5134850Z [3156/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5561910Z [3157/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5664150Z [3158/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5672380Z [3159/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5800090Z [3160/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5804450Z [3161/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5808130Z [3162/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u8.c.o 2025-08-26T19:34:17.5812680Z [3163/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.6342890Z [3164/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.6450170Z [3165/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.6638810Z [3166/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2025-08-26T19:34:17.6929970Z [3167/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2025-08-26T19:34:17.7032220Z [3168/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2025-08-26T19:34:17.7036690Z [3169/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.7043810Z [3170/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u8.c.o 2025-08-26T19:34:17.7091360Z [3171/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2025-08-26T19:34:17.7292340Z [3172/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2025-08-26T19:34:17.7349300Z [3173/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u8.c.o 2025-08-26T19:34:17.7854030Z [3174/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2025-08-26T19:34:17.8077840Z [3175/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2025-08-26T19:34:17.8087570Z [3176/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2025-08-26T19:34:17.8248280Z [3177/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2025-08-26T19:34:17.8255100Z [3178/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2025-08-26T19:34:17.8306150Z [3179/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2025-08-26T19:34:17.8355080Z [3180/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2025-08-26T19:34:17.8509680Z [3181/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u8.c.o 2025-08-26T19:34:17.8617000Z [3182/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2025-08-26T19:34:17.8641980Z [3183/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2025-08-26T19:34:17.9226490Z [3184/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u32.c.o 2025-08-26T19:34:17.9233760Z [3185/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2025-08-26T19:34:17.9378410Z [3186/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2025-08-26T19:34:17.9479280Z [3187/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2025-08-26T19:34:17.9756550Z [3188/5160] 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-08-26T19:34:17.9814990Z [3189/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2025-08-26T19:34:17.9890660Z [3190/5160] 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-08-26T19:34:17.9997970Z [3191/5160] 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-08-26T19:34:18.0096780Z [3192/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2025-08-26T19:34:18.0102250Z [3193/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2025-08-26T19:34:18.0429810Z [3194/5160] 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-08-26T19:34:18.0745130Z [3195/5160] 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-08-26T19:34:18.0803770Z [3196/5160] 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-08-26T19:34:18.0838160Z [3197/5160] 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-08-26T19:34:18.0895480Z [3198/5160] 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-08-26T19:34:18.0978200Z [3199/5160] 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-08-26T19:34:18.1050020Z [3200/5160] 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-08-26T19:34:18.1166840Z [3201/5160] 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-08-26T19:34:18.1172000Z [3202/5160] 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-08-26T19:34:18.1804680Z [3203/5160] 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-08-26T19:34:18.1914750Z [3204/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2025-08-26T19:34:18.2339630Z [3205/5160] 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-08-26T19:34:18.2342120Z [3206/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2025-08-26T19:34:18.2407130Z [3207/5160] 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-08-26T19:34:18.2543390Z [3208/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2025-08-26T19:34:18.2556980Z [3209/5160] 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-08-26T19:34:18.2579410Z [3210/5160] 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-08-26T19:34:18.2599520Z [3211/5160] 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-08-26T19:34:18.3145080Z [3212/5160] 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-08-26T19:34:18.3461590Z [3213/5160] 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-08-26T19:34:18.3519310Z [3214/5160] 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-08-26T19:34:18.3687200Z [3215/5160] 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-08-26T19:34:18.3758470Z [3216/5160] 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-08-26T19:34:18.3766510Z [3217/5160] 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-08-26T19:34:18.3810470Z [3218/5160] 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-08-26T19:34:18.3985800Z [3219/5160] 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-08-26T19:34:18.4456520Z [3220/5160] 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-08-26T19:34:18.4657500Z [3221/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2025-08-26T19:34:18.4694050Z [3222/5160] 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-08-26T19:34:18.4747960Z [3223/5160] 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-08-26T19:34:18.4853570Z [3224/5160] 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-08-26T19:34:18.4996620Z [3225/5160] 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-08-26T19:34:18.5175300Z [3226/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2025-08-26T19:34:18.5188030Z [3227/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u16.c.o 2025-08-26T19:34:18.5351950Z [3228/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2025-08-26T19:34:18.5385610Z [3229/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u16.c.o 2025-08-26T19:34:18.5636600Z [3230/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u16.c.o 2025-08-26T19:34:18.5945430Z [3231/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2025-08-26T19:34:18.5950020Z [3232/5160] 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-08-26T19:34:18.6094630Z [3233/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2025-08-26T19:34:18.6231700Z [3234/5160] 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-08-26T19:34:18.6270530Z [3235/5160] 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-08-26T19:34:18.6449950Z [3236/5160] 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-08-26T19:34:18.6504850Z [3237/5160] 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-08-26T19:34:18.6761570Z [3238/5160] 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-08-26T19:34:18.7039960Z [3239/5160] 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-08-26T19:34:18.7067600Z [3240/5160] 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-08-26T19:34:18.7590480Z [3241/5160] 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-08-26T19:34:18.7619750Z [3242/5160] 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-08-26T19:34:18.7635280Z [3243/5160] 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-08-26T19:34:18.7666240Z [3244/5160] 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-08-26T19:34:18.7872460Z [3245/5160] 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-08-26T19:34:18.7882370Z [3246/5160] 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-08-26T19:34:18.8009720Z [3247/5160] 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-08-26T19:34:18.8399860Z [3248/5160] 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-08-26T19:34:18.8521620Z [3249/5160] 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-08-26T19:34:18.8973110Z [3250/5160] 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-08-26T19:34:18.9126170Z [3251/5160] 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-08-26T19:34:18.9150750Z [3252/5160] 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-08-26T19:34:18.9277620Z [3253/5160] 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-08-26T19:34:18.9370690Z [3254/5160] 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-08-26T19:34:18.9372930Z [3255/5160] 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-08-26T19:34:18.9385520Z [3256/5160] 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-08-26T19:34:18.9568030Z [3257/5160] 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-08-26T19:34:18.9944810Z [3258/5160] 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-08-26T19:34:19.0069800Z [3259/5160] 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-08-26T19:34:19.0269070Z [3260/5160] 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-08-26T19:34:19.0468260Z [3261/5160] 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-08-26T19:34:19.0908450Z [3262/5160] 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-08-26T19:34:19.0936990Z [3263/5160] 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-08-26T19:34:19.0944850Z [3264/5160] 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-08-26T19:34:19.0991150Z [3265/5160] 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-08-26T19:34:19.0994110Z [3266/5160] 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-08-26T19:34:19.1222910Z [3267/5160] 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-08-26T19:34:19.1285540Z [3268/5160] 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-08-26T19:34:19.1554600Z [3269/5160] 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-08-26T19:34:19.1659110Z [3270/5160] 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-08-26T19:34:19.1884680Z [3271/5160] 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-08-26T19:34:19.2385740Z [3272/5160] 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-08-26T19:34:19.2392230Z [3273/5160] 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-08-26T19:34:19.2402850Z [3274/5160] 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-08-26T19:34:19.2456390Z [3275/5160] 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-08-26T19:34:19.2640770Z [3276/5160] 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-08-26T19:34:19.2643210Z [3277/5160] 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-08-26T19:34:19.3170040Z [3278/5160] 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-08-26T19:34:19.3462360Z [3279/5160] 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-08-26T19:34:19.3558450Z [3280/5160] 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-08-26T19:34:19.3761140Z [3281/5160] 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-08-26T19:34:19.3762560Z [3282/5160] 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-08-26T19:34:19.3822750Z [3283/5160] 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-08-26T19:34:19.4049440Z [3284/5160] 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-08-26T19:34:19.4061380Z [3285/5160] 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-08-26T19:34:19.4062230Z [3286/5160] 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-08-26T19:34:19.4187770Z [3287/5160] 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-08-26T19:34:19.4831970Z [3288/5160] 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-08-26T19:34:19.4875740Z [3289/5160] 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-08-26T19:34:19.5077340Z [3290/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u16.c.o 2025-08-26T19:34:19.5093760Z [3291/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc2.c.o 2025-08-26T19:34:19.5219440Z [3292/5160] 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-08-26T19:34:19.5319260Z [3293/5160] 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-08-26T19:34:19.5339310Z [3294/5160] 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-08-26T19:34:19.5430960Z [3295/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc4.c.o 2025-08-26T19:34:19.5540030Z [3296/5160] 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-08-26T19:34:19.5542190Z [3297/5160] 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-08-26T19:34:19.6014860Z [3298/5160] 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-08-26T19:34:19.6187060Z [3299/5160] 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-08-26T19:34:19.6200420Z [3300/5160] 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-08-26T19:34:19.6214160Z [3301/5160] 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-08-26T19:34:19.6381040Z [3302/5160] 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-08-26T19:34:19.6398380Z [3303/5160] 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-08-26T19:34:19.6416060Z [3304/5160] 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-08-26T19:34:19.6437170Z [3305/5160] 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-08-26T19:34:19.6593920Z [3306/5160] 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-08-26T19:34:19.6603550Z [3307/5160] 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-08-26T19:34:19.6816280Z [3308/5160] 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-08-26T19:34:19.7091710Z [3309/5160] 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-08-26T19:34:19.7192520Z [3310/5160] 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-08-26T19:34:19.7300170Z [3311/5160] 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-08-26T19:34:19.7302690Z [3312/5160] 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-08-26T19:34:19.7339530Z [3313/5160] 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-08-26T19:34:19.7372360Z [3314/5160] 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-08-26T19:34:19.7375730Z [3315/5160] 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-08-26T19:34:19.7399130Z [3316/5160] 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-08-26T19:34:19.7509980Z [3317/5160] 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-08-26T19:34:19.7718500Z [3318/5160] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-08-26T19:34:19.8227800Z [3319/5160] 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-08-26T19:34:19.8329310Z [3320/5160] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-08-26T19:34:19.8342570Z [3321/5160] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2025-08-26T19:34:19.8350610Z [3322/5160] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-08-26T19:34:19.8358500Z [3323/5160] 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-08-26T19:34:19.8365540Z [3324/5160] 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-08-26T19:34:19.8482610Z [3325/5160] 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-08-26T19:34:19.8483590Z [3326/5160] 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-08-26T19:34:19.8486400Z [3327/5160] 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-08-26T19:34:19.8545240Z [3328/5160] 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-08-26T19:34:19.9170370Z [3329/5160] 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-08-26T19:34:19.9209310Z [3330/5160] 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-08-26T19:34:19.9275590Z [3331/5160] 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-08-26T19:34:19.9890780Z [3332/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2025-08-26T19:34:19.9996680Z [3333/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2025-08-26T19:34:20.0001300Z [3334/5160] 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-08-26T19:34:20.0003620Z [3335/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2025-08-26T19:34:20.0006980Z [3336/5160] 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-08-26T19:34:20.0070660Z [3337/5160] 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-08-26T19:34:20.0090240Z [3338/5160] 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-08-26T19:34:20.0623870Z [3339/5160] 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-08-26T19:34:20.0867280Z [3340/5160] 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-08-26T19:34:20.0973100Z [3341/5160] 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-08-26T19:34:20.1356330Z [3342/5160] 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-08-26T19:34:20.1472940Z [3343/5160] 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-08-26T19:34:20.1476400Z [3344/5160] 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-08-26T19:34:20.1507660Z [3345/5160] 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-08-26T19:34:20.1536420Z [3346/5160] 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-08-26T19:34:20.1589430Z [3347/5160] 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-08-26T19:34:20.1819620Z [3348/5160] 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-08-26T19:34:20.2546690Z [3349/5160] 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-08-26T19:34:20.2585930Z [3350/5160] 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-08-26T19:34:20.2816300Z [3351/5160] 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-08-26T19:34:20.2891090Z [3352/5160] 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-08-26T19:34:20.2978380Z [3353/5160] 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-08-26T19:34:20.3000210Z [3354/5160] 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-08-26T19:34:20.3085160Z [3355/5160] 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-08-26T19:34:20.3266170Z [3356/5160] 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-08-26T19:34:20.3298590Z [3357/5160] 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-08-26T19:34:20.3593190Z [3358/5160] 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-08-26T19:34:20.3885920Z [3359/5160] 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-08-26T19:34:20.3922010Z [3360/5160] 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-08-26T19:34:20.4178330Z [3361/5160] 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-08-26T19:34:20.4210490Z [3362/5160] 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-08-26T19:34:20.4452310Z [3363/5160] 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-08-26T19:34:20.4455020Z [3364/5160] 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-08-26T19:34:20.4465060Z [3365/5160] 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-08-26T19:34:20.4706550Z [3366/5160] 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-08-26T19:34:20.4746290Z [3367/5160] 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-08-26T19:34:20.5158550Z [3368/5160] 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-08-26T19:34:20.5463570Z [3369/5160] 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-08-26T19:34:20.5658860Z [3370/5160] 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-08-26T19:34:20.5715840Z [3371/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.5790850Z [3372/5160] 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-08-26T19:34:20.5892890Z [3373/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.6061720Z [3374/5160] 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-08-26T19:34:20.6178820Z [3375/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.6200300Z [3376/5160] 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-08-26T19:34:20.6204410Z [3377/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.6425840Z [3378/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.6672210Z [3379/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.7089960Z [3380/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.7192660Z [3381/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.7218810Z [3382/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.7348790Z [3383/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.7498510Z [3384/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.7527820Z [3385/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.7719400Z [3386/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.7773690Z [3387/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.7777410Z [3388/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.8285760Z [3389/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.8456400Z [3390/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.8497670Z [3391/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.8518610Z [3392/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.8704400Z [3393/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.8754430Z [3394/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.8897140Z [3395/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.9605840Z [3396/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.9717910Z [3397/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.9720380Z [3398/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.9758590Z [3399/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.9773110Z [3400/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:20.9898420Z [3401/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2025-08-26T19:34:20.9930620Z [3402/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:21.0047610Z [3403/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:21.0057430Z [3404/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:21.0238430Z [3405/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:21.0978210Z [3406/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2025-08-26T19:34:21.0992790Z [3407/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2025-08-26T19:34:21.1150880Z [3408/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2025-08-26T19:34:21.1154150Z [3409/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2025-08-26T19:34:21.1181480Z [3410/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2025-08-26T19:34:21.1322350Z [3411/5160] 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-08-26T19:34:21.1416580Z [3412/5160] 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-08-26T19:34:21.1535080Z [3413/5160] 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-08-26T19:34:21.1612660Z [3414/5160] 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-08-26T19:34:21.1734880Z [3415/5160] 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-08-26T19:34:21.2398880Z [3416/5160] 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-08-26T19:34:21.2401360Z [3417/5160] 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-08-26T19:34:21.2405100Z [3418/5160] 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-08-26T19:34:21.2610570Z [3419/5160] 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-08-26T19:34:21.2685230Z [3420/5160] 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-08-26T19:34:21.2797140Z [3421/5160] 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-08-26T19:34:21.2990520Z [3422/5160] 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-08-26T19:34:21.3200990Z [3423/5160] 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-08-26T19:34:21.3365650Z [3424/5160] 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-08-26T19:34:21.3478550Z [3425/5160] 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-08-26T19:34:21.3821800Z [3426/5160] 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-08-26T19:34:21.3834880Z [3427/5160] 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-08-26T19:34:21.4051270Z [3428/5160] 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-08-26T19:34:21.4152720Z [3429/5160] 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-08-26T19:34:21.4277350Z [3430/5160] 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-08-26T19:34:21.4304290Z [3431/5160] 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-08-26T19:34:21.4312670Z [3432/5160] 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-08-26T19:34:21.4529740Z [3433/5160] 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-08-26T19:34:21.4555450Z [3434/5160] 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-08-26T19:34:21.4749820Z [3435/5160] 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-08-26T19:34:21.5399640Z [3436/5160] 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-08-26T19:34:21.5431490Z [3437/5160] 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-08-26T19:34:21.5591890Z [3438/5160] 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-08-26T19:34:21.5595290Z [3439/5160] 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-08-26T19:34:21.5647670Z [3440/5160] 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-08-26T19:34:21.5753880Z [3441/5160] 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-08-26T19:34:21.5759640Z [3442/5160] 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-08-26T19:34:21.5929420Z [3443/5160] 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-08-26T19:34:21.5933970Z [3444/5160] 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-08-26T19:34:21.6425700Z [3445/5160] 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-08-26T19:34:21.6821340Z [3446/5160] 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-08-26T19:34:21.6940930Z [3447/5160] 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-08-26T19:34:21.7062910Z [3448/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u4.c.o 2025-08-26T19:34:21.7068100Z [3449/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u16-acc2.c.o 2025-08-26T19:34:21.7073350Z [3450/5160] 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-08-26T19:34:21.7079510Z [3451/5160] 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-08-26T19:34:21.7106510Z [3452/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u24-acc3.c.o 2025-08-26T19:34:21.7272900Z [3453/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc2.c.o 2025-08-26T19:34:21.7816690Z [3454/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u8.c.o 2025-08-26T19:34:21.7824680Z [3455/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.8148960Z [3456/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.8361350Z [3457/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.8364880Z [3458/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.8580370Z [3459/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.8764770Z [3460/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.8801060Z [3461/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.8963490Z [3462/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.9088120Z [3463/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.9144120Z [3464/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2025-08-26T19:34:21.9151530Z [3465/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2025-08-26T19:34:21.9329220Z [3466/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:21.9917390Z [3467/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2025-08-26T19:34:22.0078300Z [3468/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:22.0184400Z [3469/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:22.0285800Z [3470/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-08-26T19:34:22.0287310Z [3471/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2025-08-26T19:34:22.0303350Z [3472/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2025-08-26T19:34:22.0323550Z [3473/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2025-08-26T19:34:22.0429680Z [3474/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2025-08-26T19:34:22.0570080Z [3475/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2025-08-26T19:34:22.0572970Z [3476/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2025-08-26T19:34:22.1191830Z [3477/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2025-08-26T19:34:22.1524980Z [3478/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2025-08-26T19:34:22.1582500Z [3479/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2025-08-26T19:34:22.1631870Z [3480/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2025-08-26T19:34:22.1636540Z [3481/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2025-08-26T19:34:22.1871920Z [3482/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2025-08-26T19:34:22.1947920Z [3483/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2025-08-26T19:34:22.2151520Z [3484/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2025-08-26T19:34:22.2241110Z [3485/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2025-08-26T19:34:22.2250970Z [3486/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2025-08-26T19:34:22.2440350Z [3487/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2025-08-26T19:34:22.2733840Z [3488/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2025-08-26T19:34:22.2757810Z [3489/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2025-08-26T19:34:22.2985530Z [3490/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2025-08-26T19:34:22.3332960Z [3491/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2025-08-26T19:34:22.3404250Z [3492/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2025-08-26T19:34:22.3510220Z [3493/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2025-08-26T19:34:22.3621680Z [3494/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2025-08-26T19:34:22.3626300Z [3495/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2025-08-26T19:34:22.3630970Z [3496/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2025-08-26T19:34:22.3796420Z [3497/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2025-08-26T19:34:22.3802900Z [3498/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2025-08-26T19:34:22.4010650Z [3499/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2025-08-26T19:34:22.4202730Z [3500/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2025-08-26T19:34:22.4546760Z [3501/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2025-08-26T19:34:22.4753610Z [3502/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2025-08-26T19:34:22.4896540Z [3503/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2025-08-26T19:34:22.5005990Z [3504/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2025-08-26T19:34:22.5203020Z [3505/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2025-08-26T19:34:22.5207360Z [3506/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2025-08-26T19:34:22.5363000Z [3507/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2025-08-26T19:34:22.5415300Z [3508/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2025-08-26T19:34:22.5576350Z [3509/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2025-08-26T19:34:22.5633600Z [3510/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2025-08-26T19:34:22.5756170Z [3511/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2025-08-26T19:34:22.6156630Z [3512/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2025-08-26T19:34:22.6175310Z [3513/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2025-08-26T19:34:22.6364250Z [3514/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2025-08-26T19:34:22.6381970Z [3515/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2025-08-26T19:34:22.6536390Z [3516/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2025-08-26T19:34:22.6743900Z [3517/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2025-08-26T19:34:22.6866390Z [3518/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2025-08-26T19:34:22.6945050Z [3519/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2025-08-26T19:34:22.6986730Z [3520/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2025-08-26T19:34:22.7091470Z [3521/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2025-08-26T19:34:22.7469460Z [3522/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2025-08-26T19:34:22.7636400Z [3523/5160] 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-08-26T19:34:22.7644630Z [3524/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2025-08-26T19:34:22.7656020Z [3525/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2025-08-26T19:34:22.7717890Z [3526/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2025-08-26T19:34:22.7720990Z [3527/5160] 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-08-26T19:34:22.7734560Z [3528/5160] 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-08-26T19:34:22.7851080Z [3529/5160] 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-08-26T19:34:22.7964790Z [3530/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2025-08-26T19:34:22.8201800Z [3531/5160] 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-08-26T19:34:22.8452860Z [3532/5160] 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-08-26T19:34:22.8556310Z [3533/5160] 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-08-26T19:34:22.8557380Z [3534/5160] 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-08-26T19:34:22.8564100Z [3535/5160] 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-08-26T19:34:22.8575130Z [3536/5160] 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-08-26T19:34:22.8667210Z [3537/5160] 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-08-26T19:34:22.8768340Z [3538/5160] 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-08-26T19:34:22.8803710Z [3539/5160] 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-08-26T19:34:22.9067830Z [3540/5160] 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-08-26T19:34:22.9475010Z [3541/5160] 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-08-26T19:34:22.9494680Z [3542/5160] 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-08-26T19:34:22.9600190Z [3543/5160] 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-08-26T19:34:22.9705590Z [3544/5160] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2025-08-26T19:34:22.9715700Z [3545/5160] 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-08-26T19:34:22.9726190Z [3546/5160] 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-08-26T19:34:22.9741370Z [3547/5160] 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-08-26T19:34:22.9765150Z [3548/5160] 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-08-26T19:34:22.9838790Z [3549/5160] 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-08-26T19:34:22.9941080Z [3550/5160] 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-08-26T19:34:23.0400640Z [3551/5160] 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-08-26T19:34:23.0439290Z [3552/5160] 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-08-26T19:34:23.0448060Z [3553/5160] 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-08-26T19:34:23.0462130Z [3554/5160] 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-08-26T19:34:23.0470930Z [3555/5160] 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-08-26T19:34:23.0519390Z [3556/5160] 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-08-26T19:34:23.0524110Z [3557/5160] 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-08-26T19:34:23.0726800Z [3558/5160] 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-08-26T19:34:23.0937520Z [3559/5160] 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-08-26T19:34:23.0967020Z [3560/5160] 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-08-26T19:34:23.1476950Z [3561/5160] 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-08-26T19:34:23.1599430Z [3562/5160] 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-08-26T19:34:23.1606500Z [3563/5160] 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-08-26T19:34:23.1615800Z [3564/5160] 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-08-26T19:34:23.1620380Z [3565/5160] 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-08-26T19:34:23.1626760Z [3566/5160] 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-08-26T19:34:23.1632410Z [3567/5160] 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-08-26T19:34:23.1640380Z [3568/5160] 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-08-26T19:34:23.1860760Z [3569/5160] 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-08-26T19:34:23.1881050Z [3570/5160] 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-08-26T19:34:23.2494180Z [3571/5160] 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-08-26T19:34:23.2547230Z [3572/5160] 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-08-26T19:34:23.2551840Z [3573/5160] 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-08-26T19:34:23.2560320Z [3574/5160] 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-08-26T19:34:23.2567490Z [3575/5160] 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-08-26T19:34:23.2583170Z [3576/5160] 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-08-26T19:34:23.2601300Z [3577/5160] 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-08-26T19:34:23.2615220Z [3578/5160] 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-08-26T19:34:23.2628550Z [3579/5160] 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-08-26T19:34:23.2639330Z [3580/5160] 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-08-26T19:34:23.3462270Z [3581/5160] 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-08-26T19:34:23.3496120Z [3582/5160] 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-08-26T19:34:23.3514700Z [3583/5160] 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-08-26T19:34:23.3529750Z [3584/5160] 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-08-26T19:34:23.3534830Z [3585/5160] 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-08-26T19:34:23.3540810Z [3586/5160] 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-08-26T19:34:23.3554190Z [3587/5160] 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-08-26T19:34:23.3639550Z [3588/5160] 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-08-26T19:34:23.3650620Z [3589/5160] 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-08-26T19:34:23.3670870Z [3590/5160] 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-08-26T19:34:23.4430030Z [3591/5160] 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-08-26T19:34:23.4444860Z [3592/5160] 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-08-26T19:34:23.4451110Z [3593/5160] 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-08-26T19:34:23.4455240Z [3594/5160] 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-08-26T19:34:23.4504510Z [3595/5160] 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-08-26T19:34:23.4523350Z [3596/5160] 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-08-26T19:34:23.4536610Z [3597/5160] 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-08-26T19:34:23.4601390Z [3598/5160] 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-08-26T19:34:23.4605740Z [3599/5160] 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-08-26T19:34:23.4614420Z [3600/5160] 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-08-26T19:34:23.5380300Z [3601/5160] 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-08-26T19:34:23.5402590Z [3602/5160] 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-08-26T19:34:23.5405020Z [3603/5160] 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-08-26T19:34:23.5439220Z [3604/5160] 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-08-26T19:34:23.5452500Z [3605/5160] 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-08-26T19:34:23.5478230Z [3606/5160] 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-08-26T19:34:23.5600940Z [3607/5160] 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-08-26T19:34:23.5601940Z [3608/5160] 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-08-26T19:34:23.5605760Z [3609/5160] 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-08-26T19:34:23.5608980Z [3610/5160] 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-08-26T19:34:23.6259460Z [3611/5160] 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-08-26T19:34:23.6284340Z [3612/5160] 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-08-26T19:34:23.6356180Z [3613/5160] 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-08-26T19:34:23.6376430Z [3614/5160] 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-08-26T19:34:23.6477310Z [3615/5160] 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-08-26T19:34:23.6493610Z [3616/5160] 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-08-26T19:34:23.6560570Z [3617/5160] 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-08-26T19:34:23.6620510Z [3618/5160] 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-08-26T19:34:23.6631570Z [3619/5160] 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-08-26T19:34:23.6636670Z [3620/5160] 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-08-26T19:34:23.7284920Z [3621/5160] 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-08-26T19:34:23.7316430Z [3622/5160] 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-08-26T19:34:23.7319110Z [3623/5160] 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-08-26T19:34:23.7373880Z [3624/5160] 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-08-26T19:34:23.7384790Z [3625/5160] 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-08-26T19:34:23.7399530Z [3626/5160] 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-08-26T19:34:23.7495900Z [3627/5160] 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-08-26T19:34:23.7507040Z [3628/5160] 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-08-26T19:34:23.7545050Z [3629/5160] 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-08-26T19:34:23.7707010Z [3630/5160] 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-08-26T19:34:23.8299480Z [3631/5160] 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-08-26T19:34:23.8330970Z [3632/5160] 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-08-26T19:34:23.8334460Z [3633/5160] 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-08-26T19:34:23.8341280Z [3634/5160] 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-08-26T19:34:23.8372960Z [3635/5160] 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-08-26T19:34:23.8382920Z [3636/5160] 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-08-26T19:34:23.8387470Z [3637/5160] 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-08-26T19:34:23.8565820Z [3638/5160] 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-08-26T19:34:23.8585000Z [3639/5160] 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-08-26T19:34:23.8589290Z [3640/5160] 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-08-26T19:34:23.9308600Z [3641/5160] 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-08-26T19:34:23.9314160Z [3642/5160] 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-08-26T19:34:23.9319720Z [3643/5160] 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-08-26T19:34:23.9323330Z [3644/5160] 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-08-26T19:34:23.9329470Z [3645/5160] 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-08-26T19:34:23.9337040Z [3646/5160] 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-08-26T19:34:23.9390440Z [3647/5160] 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-08-26T19:34:23.9953360Z [3648/5160] Running gen_proto.py on onnx/onnx-data.in.proto 2025-08-26T19:34:24.0056160Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2025-08-26T19:34:24.0057510Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-26T19:34:24.0058120Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2025-08-26T19:34:24.0058660Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2025-08-26T19:34:24.0059840Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2025-08-26T19:34:24.0066660Z [3649/5160] 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-08-26T19:34:24.0176240Z [3650/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.c.o 2025-08-26T19:34:24.0576390Z [3651/5160] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-08-26T19:34:24.0605800Z [3652/5160] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-08-26T19:34:24.0606870Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2025-08-26T19:34:24.0607680Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-08-26T19:34:24.0608310Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2025-08-26T19:34:24.0608910Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2025-08-26T19:34:24.0609440Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2025-08-26T19:34:24.0778400Z [3653/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c.o 2025-08-26T19:34:24.0792410Z [3654/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.c.o 2025-08-26T19:34:24.0822270Z [3655/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c.o 2025-08-26T19:34:24.0979560Z [3656/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.c.o 2025-08-26T19:34:24.1009810Z [3657/5160] 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-08-26T19:34:24.1145650Z [3658/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.c.o 2025-08-26T19:34:24.1249860Z [3659/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.c.o 2025-08-26T19:34:24.1254600Z [3660/5160] 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-08-26T19:34:24.1729750Z [3661/5160] 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-08-26T19:34:24.1959460Z [3662/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.c.o 2025-08-26T19:34:24.2132750Z [3663/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.c.o 2025-08-26T19:34:24.2234140Z [3664/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.c.o 2025-08-26T19:34:24.2543790Z [3665/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.c.o 2025-08-26T19:34:24.3801170Z [3666/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2025-08-26T19:34:24.3937660Z [3667/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2025-08-26T19:34:24.4079810Z [3668/5160] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2025-08-26T19:34:24.4140920Z [3669/5160] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2025-08-26T19:34:24.4373730Z [3670/5160] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2025-08-26T19:34:24.4539350Z [3671/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2025-08-26T19:34:24.4710330Z [3672/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2025-08-26T19:34:24.4873330Z [3673/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2025-08-26T19:34:24.5152690Z [3674/5160] Linking CXX static library lib/libonnx_proto.a 2025-08-26T19:34:24.5468200Z [3675/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2025-08-26T19:34:24.6214370Z [3676/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2025-08-26T19:34:24.6910800Z [3677/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2025-08-26T19:34:24.7092790Z [3678/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2025-08-26T19:34:24.7145410Z [3679/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2025-08-26T19:34:24.7277280Z [3680/5160] Linking C static library lib/libmicrokernels-all.a 2025-08-26T19:34:24.7387620Z [3681/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2025-08-26T19:34:24.7415030Z [3682/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2025-08-26T19:34:24.7894630Z [3683/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2025-08-26T19:34:24.8055630Z [3684/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2025-08-26T19:34:24.8881970Z [3685/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2025-08-26T19:34:24.9612220Z [3686/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2025-08-26T19:34:24.9831280Z [3687/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2025-08-26T19:34:24.9915670Z [3688/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2025-08-26T19:34:25.0067680Z [3689/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2025-08-26T19:34:25.0083950Z [3690/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2025-08-26T19:34:25.0613860Z [3691/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2025-08-26T19:34:25.0827960Z [3692/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2025-08-26T19:34:25.1189470Z [3693/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2025-08-26T19:34:25.2201030Z [3694/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2025-08-26T19:34:25.2315690Z [3695/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2025-08-26T19:34:25.2342270Z [3696/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2025-08-26T19:34:25.2808100Z [3697/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2025-08-26T19:34:25.3196230Z [3698/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2025-08-26T19:34:25.3215120Z [3699/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2025-08-26T19:34:25.3317550Z [3700/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2025-08-26T19:34:25.4154720Z [3701/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2025-08-26T19:34:25.4456350Z [3702/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2025-08-26T19:34:25.4503020Z [3703/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2025-08-26T19:34:25.4928010Z [3704/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2025-08-26T19:34:25.5130590Z [3705/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2025-08-26T19:34:25.6068570Z [3706/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2025-08-26T19:34:25.6281650Z [3707/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2025-08-26T19:34:25.6619260Z [3708/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2025-08-26T19:34:25.6816670Z [3709/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2025-08-26T19:34:25.6932090Z [3710/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2025-08-26T19:34:25.7109700Z [3711/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2025-08-26T19:34:25.7244420Z [3712/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2025-08-26T19:34:25.7913750Z [3713/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2025-08-26T19:34:25.8146960Z [3714/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2025-08-26T19:34:25.8240860Z [3715/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2025-08-26T19:34:25.9318600Z [3716/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2025-08-26T19:34:25.9355140Z [3717/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2025-08-26T19:34:25.9479790Z [3718/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.c.o 2025-08-26T19:34:25.9550790Z [3719/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2025-08-26T19:34:25.9720520Z [3720/5160] 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-08-26T19:34:25.9823370Z [3721/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2025-08-26T19:34:26.0296180Z [3722/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2025-08-26T19:34:26.0536430Z [3723/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.c.o 2025-08-26T19:34:26.0629260Z [3724/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.c.o 2025-08-26T19:34:26.0634760Z [3725/5160] 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-08-26T19:34:26.0642560Z [3726/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.c.o 2025-08-26T19:34:26.0833960Z [3727/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2025-08-26T19:34:26.0937250Z [3728/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2025-08-26T19:34:26.1028470Z [3729/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.c.o 2025-08-26T19:34:26.1177990Z [3730/5160] 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-08-26T19:34:26.1400700Z [3731/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.c.o 2025-08-26T19:34:26.1527940Z [3732/5160] 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-08-26T19:34:26.1636390Z [3733/5160] 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-08-26T19:34:26.1738280Z [3734/5160] 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-08-26T19:34:26.1916550Z [3735/5160] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2025-08-26T19:34:26.2029940Z [3736/5160] 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-08-26T19:34:26.2134260Z [3737/5160] 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-08-26T19:34:26.2244550Z [3738/5160] 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-08-26T19:34:26.2252830Z [3739/5160] 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-08-26T19:34:26.2340670Z [3740/5160] 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-08-26T19:34:26.2351570Z [3741/5160] 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-08-26T19:34:26.2514020Z [3742/5160] 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-08-26T19:34:26.2624590Z [3743/5160] 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-08-26T19:34:26.2907910Z [3744/5160] 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-08-26T19:34:26.2981640Z [3745/5160] 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-08-26T19:34:26.3163910Z [3746/5160] 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-08-26T19:34:26.3207450Z [3747/5160] 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-08-26T19:34:26.3353460Z [3748/5160] 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-08-26T19:34:26.3569990Z [3749/5160] 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-08-26T19:34:26.3637140Z [3750/5160] 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-08-26T19:34:26.3647120Z [3751/5160] 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-08-26T19:34:26.3864240Z [3752/5160] 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-08-26T19:34:26.4203890Z [3753/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.c.o 2025-08-26T19:34:26.4211400Z [3754/5160] 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-08-26T19:34:26.4396730Z [3755/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.c.o 2025-08-26T19:34:26.4407910Z [3756/5160] 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-08-26T19:34:26.4809930Z [3757/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.c.o 2025-08-26T19:34:26.4818810Z [3758/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.c.o 2025-08-26T19:34:26.4857960Z [3759/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.c.o 2025-08-26T19:34:26.5050310Z [3760/5160] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.c.o 2025-08-26T19:34:26.5055940Z [3761/5160] 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-08-26T19:34:26.5060000Z [3762/5160] 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-08-26T19:34:26.5104270Z [3763/5160] 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-08-26T19:34:26.5520060Z [3764/5160] 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-08-26T19:34:26.5575960Z [3765/5160] 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-08-26T19:34:26.5683720Z [3766/5160] 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-08-26T19:34:26.5711310Z [3767/5160] 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-08-26T19:34:26.5814070Z [3768/5160] 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-08-26T19:34:26.6076630Z [3769/5160] 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-08-26T19:34:26.6163410Z [3770/5160] 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-08-26T19:34:26.6403260Z [3771/5160] 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-08-26T19:34:26.6460940Z [3772/5160] 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-08-26T19:34:26.6552310Z [3773/5160] 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-08-26T19:34:26.6660040Z [3774/5160] Linking CXX static library lib/libonnx.a 2025-08-26T19:34:26.6665830Z [3775/5160] 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-08-26T19:34:26.7167140Z [3776/5160] 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-08-26T19:34:26.7221180Z [3777/5160] 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-08-26T19:34:26.7314570Z [3778/5160] 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-08-26T19:34:26.7339840Z [3779/5160] 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-08-26T19:34:26.7392970Z [3780/5160] 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-08-26T19:34:26.7792720Z [3781/5160] 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-08-26T19:34:26.7797140Z [3782/5160] 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-08-26T19:34:26.7863820Z [3783/5160] 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-08-26T19:34:26.7887390Z [3784/5160] 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-08-26T19:34:26.7995940Z [3785/5160] 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-08-26T19:34:26.8203650Z [3786/5160] 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-08-26T19:34:26.8529410Z [3787/5160] 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-08-26T19:34:26.8549620Z [3788/5160] 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-08-26T19:34:26.8591500Z [3789/5160] 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-08-26T19:34:26.8615290Z [3790/5160] 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-08-26T19:34:26.8738140Z [3791/5160] Generating alias_ADVSIMD_sp.h.tmp 2025-08-26T19:34:26.8824220Z [3792/5160] 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-08-26T19:34:26.8857210Z [3793/5160] 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-08-26T19:34:26.8965150Z [3794/5160] 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-08-26T19:34:26.9018160Z [3795/5160] Generating include/alias_advsimd.h 2025-08-26T19:34:26.9263970Z [3796/5160] 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-08-26T19:34:26.9274580Z [3797/5160] 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-08-26T19:34:26.9343910Z [3798/5160] 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-08-26T19:34:26.9409170Z [3799/5160] Generating dispscalar.c.body 2025-08-26T19:34:26.9693110Z [3800/5160] Generating dispscalar.c 2025-08-26T19:34:26.9708690Z [3801/5160] 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-08-26T19:34:26.9947110Z [3802/5160] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2025-08-26T19:34:27.0002830Z [3803/5160] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2025-08-26T19:34:27.0145360Z [3804/5160] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2025-08-26T19:34:27.0224570Z [3805/5160] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2025-08-26T19:34:27.0353130Z [3806/5160] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2025-08-26T19:34:27.0798720Z [3807/5160] Linking C executable sleef/bin/mkrename 2025-08-26T19:34:27.0902550Z [3808/5160] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-08-26T19:34:27.0944360Z [3809/5160] Linking C executable sleef/bin/addSuffix 2025-08-26T19:34:27.1119190Z [3810/5160] Linking C executable sleef/bin/mkrename_gnuabi 2025-08-26T19:34:27.1243660Z [3811/5160] Generating include/renamepurecfma_scalar.h 2025-08-26T19:34:27.1244230Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2025-08-26T19:34:27.1244740Z [3812/5160] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-08-26T19:34:27.1245940Z [3813/5160] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-08-26T19:34:27.1248250Z [3814/5160] Generating include/renamecuda.h 2025-08-26T19:34:27.1248750Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2025-08-26T19:34:27.1250170Z [3815/5160] Generating sleeflibm_ADVSIMD_.h.tmp 2025-08-26T19:34:27.1262730Z [3816/5160] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-08-26T19:34:27.1292410Z [3817/5160] Generating include/renamepurec_scalar.h 2025-08-26T19:34:27.1292920Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2025-08-26T19:34:27.1295050Z [3818/5160] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2025-08-26T19:34:27.1307340Z [3819/5160] Generating sleeflibm_ADVSIMD.h.tmp 2025-08-26T19:34:27.1313040Z [3820/5160] Generating include/renameadvsimd.h 2025-08-26T19:34:27.1313490Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2025-08-26T19:34:27.1322970Z [3821/5160] Generating include/renameadvsimdnofma.h 2025-08-26T19:34:27.1324050Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2025-08-26T19:34:27.1327630Z [3822/5160] Generating sleeflibm_SVENOFMA.h.tmp 2025-08-26T19:34:27.1352690Z [3823/5160] Generating sleeflibm_SVE.h.tmp 2025-08-26T19:34:27.1533440Z [3824/5160] Linking C static library lib/libkleidiai.a 2025-08-26T19:34:27.1638730Z [3825/5160] Generating ../../../include/sleef.h 2025-08-26T19:34:27.2563430Z [3826/5160] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.2632640Z [3827/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.2810420Z [3828/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.2969660Z [3829/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2025-08-26T19:34:27.3124180Z [3830/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2025-08-26T19:34:27.3219390Z [3831/5160] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2025-08-26T19:34:27.3661970Z [3832/5160] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2025-08-26T19:34:27.3670200Z [3833/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2025-08-26T19:34:27.3947620Z [3834/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.3987400Z [3835/5160] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.4092900Z [3836/5160] Generating include/renamedspscalar.h 2025-08-26T19:34:27.4340560Z [3837/5160] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2025-08-26T19:34:27.4352090Z [3838/5160] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.4353910Z [3839/5160] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.4741610Z [3840/5160] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2025-08-26T19:34:27.4945500Z [3841/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2025-08-26T19:34:27.5095660Z [3842/5160] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2025-08-26T19:34:27.5121530Z [3843/5160] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2025-08-26T19:34:27.5163040Z [3844/5160] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2025-08-26T19:34:27.6200860Z [3845/5160] Linking C static library sleef/lib/libsleef.a 2025-08-26T19:34:27.8440960Z [3846/5160] Regenerating version file... 2025-08-26T19:34:29.8463380Z [3847/5160] 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-08-26T19:34:31.0655420Z [3848/5160] 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/inductor/aoti_torch/generated/c_shim_aten.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-08-26T19:34:31.3460800Z [3849/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2025-08-26T19:34:31.3734780Z [3850/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HPUHooksInterface.cpp.o 2025-08-26T19:34:31.3847640Z [3851/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2025-08-26T19:34:31.3917900Z [3852/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2025-08-26T19:34:31.4057370Z [3853/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2025-08-26T19:34:31.4515590Z [3854/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2025-08-26T19:34:31.5634360Z [3855/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2025-08-26T19:34:31.5969620Z [3856/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2025-08-26T19:34:31.5985000Z [3857/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2025-08-26T19:34:31.9187340Z [3858/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2025-08-26T19:34:32.1071250Z [3859/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2025-08-26T19:34:32.1418660Z [3860/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2025-08-26T19:34:32.1547210Z [3861/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2025-08-26T19:34:32.1748760Z [3862/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2025-08-26T19:34:32.1904570Z [3863/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2025-08-26T19:34:32.2105210Z [3864/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2025-08-26T19:34:32.2681910Z [3865/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2025-08-26T19:34:32.6052410Z [3866/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2025-08-26T19:34:32.8059210Z [3867/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2025-08-26T19:34:32.8374670Z [3868/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2025-08-26T19:34:32.8505490Z [3869/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2025-08-26T19:34:32.8750940Z [3870/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2025-08-26T19:34:32.8853440Z [3871/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2025-08-26T19:34:32.9047950Z [3872/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2025-08-26T19:34:32.9379750Z [3873/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2025-08-26T19:34:33.1736580Z [3874/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2025-08-26T19:34:33.2179190Z [3875/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2025-08-26T19:34:33.2737970Z [3876/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2025-08-26T19:34:33.3045580Z [3877/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2025-08-26T19:34:33.5078690Z [3878/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2025-08-26T19:34:33.5480060Z [3879/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2025-08-26T19:34:33.5617780Z [3880/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2025-08-26T19:34:33.6009670Z [3881/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2025-08-26T19:34:33.6449520Z [3882/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2025-08-26T19:34:33.6546750Z [3883/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2025-08-26T19:34:33.6827180Z [3884/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2025-08-26T19:34:33.8392290Z [3885/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/CachingHostAllocator.cpp.o 2025-08-26T19:34:33.8703970Z [3886/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2025-08-26T19:34:33.8907610Z [3887/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2025-08-26T19:34:33.8949530Z [3888/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2025-08-26T19:34:33.9501280Z [3889/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2025-08-26T19:34:33.9949230Z [3890/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2025-08-26T19:34:34.0217270Z [3891/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2025-08-26T19:34:34.0398430Z [3892/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2025-08-26T19:34:34.0550770Z [3893/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2025-08-26T19:34:34.1889910Z [3894/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2025-08-26T19:34:34.2126810Z [3895/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2025-08-26T19:34:34.2338250Z [3896/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2025-08-26T19:34:34.2702490Z [3897/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2025-08-26T19:34:34.3593000Z [3898/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2025-08-26T19:34:34.3992840Z [3899/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2025-08-26T19:34:34.4095420Z [3900/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2025-08-26T19:34:34.4330920Z [3901/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2025-08-26T19:34:34.4433530Z [3902/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2025-08-26T19:34:34.4559210Z [3903/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2025-08-26T19:34:34.5080210Z [3904/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2025-08-26T19:34:34.6541720Z [3905/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2025-08-26T19:34:34.7028540Z [3906/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2025-08-26T19:34:34.7112840Z [3907/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2025-08-26T19:34:34.7177030Z [3908/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2025-08-26T19:34:34.7283230Z [3909/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2025-08-26T19:34:34.7433340Z [3910/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2025-08-26T19:34:34.7452820Z [3911/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2025-08-26T19:34:34.8451500Z [3912/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2025-08-26T19:34:34.8686320Z [3913/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2025-08-26T19:34:34.9934480Z [3914/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2025-08-26T19:34:35.0197140Z [3915/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2025-08-26T19:34:35.0890830Z [3916/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2025-08-26T19:34:35.1113630Z [3917/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2025-08-26T19:34:35.1229430Z [3918/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2025-08-26T19:34:35.1243570Z [3919/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2025-08-26T19:34:35.1615920Z [3920/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2025-08-26T19:34:35.2136190Z [3921/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2025-08-26T19:34:35.2610750Z [3922/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2025-08-26T19:34:35.3320010Z [3923/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2025-08-26T19:34:35.3915150Z [3924/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2025-08-26T19:34:35.4479000Z [3925/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2025-08-26T19:34:35.4582490Z [3926/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2025-08-26T19:34:35.4746850Z [3927/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2025-08-26T19:34:35.5337190Z [3928/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2025-08-26T19:34:35.5737910Z [3929/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2025-08-26T19:34:35.6041020Z [3930/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2025-08-26T19:34:35.6862660Z [3931/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2025-08-26T19:34:35.6884210Z [3932/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2025-08-26T19:34:35.6928600Z [3933/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2025-08-26T19:34:35.7474470Z [3934/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2025-08-26T19:34:35.7959460Z [3935/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2025-08-26T19:34:35.8237670Z [3936/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2025-08-26T19:34:35.9047160Z [3937/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2025-08-26T19:34:35.9452020Z [3938/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2025-08-26T19:34:36.0470170Z [3939/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2025-08-26T19:34:36.0548080Z [3940/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2025-08-26T19:34:36.0686810Z [3941/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2025-08-26T19:34:36.0729670Z [3942/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2025-08-26T19:34:36.1059260Z [3943/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2025-08-26T19:34:36.1247780Z [3944/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2025-08-26T19:34:36.1717580Z [3945/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2025-08-26T19:34:36.1985960Z [3946/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2025-08-26T19:34:36.4003150Z [3947/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2025-08-26T19:34:36.4103670Z [3948/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2025-08-26T19:34:36.4935470Z [3949/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2025-08-26T19:34:36.4956020Z [3950/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2025-08-26T19:34:36.5256950Z [3951/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2025-08-26T19:34:36.5479000Z [3952/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2025-08-26T19:34:36.5785480Z [3953/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2025-08-26T19:34:36.6046480Z [3954/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2025-08-26T19:34:36.7166530Z [3955/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2025-08-26T19:34:36.7268990Z [3956/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2025-08-26T19:34:36.7808490Z [3957/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2025-08-26T19:34:36.8497570Z [3958/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2025-08-26T19:34:36.9496640Z [3959/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2025-08-26T19:34:36.9871510Z [3960/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2025-08-26T19:34:36.9966320Z [3961/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2025-08-26T19:34:37.0174140Z [3962/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2025-08-26T19:34:37.0326400Z [3963/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2025-08-26T19:34:37.0401650Z [3964/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2025-08-26T19:34:37.0604120Z [3965/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2025-08-26T19:34:37.1148600Z [3966/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2025-08-26T19:34:37.2457830Z [3967/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2025-08-26T19:34:37.2663620Z [3968/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2025-08-26T19:34:37.3060230Z [3969/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2025-08-26T19:34:37.3544230Z [3970/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2025-08-26T19:34:37.4322790Z [3971/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2025-08-26T19:34:37.5574410Z [3972/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2025-08-26T19:34:37.5685620Z [3973/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2025-08-26T19:34:37.5837930Z [3974/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2025-08-26T19:34:37.5856660Z [3975/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2025-08-26T19:34:37.5873840Z [3976/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2025-08-26T19:34:37.6412210Z [3977/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2025-08-26T19:34:37.7013620Z [3978/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2025-08-26T19:34:37.7237490Z [3979/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2025-08-26T19:34:37.8635850Z [3980/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2025-08-26T19:34:37.9197640Z [3981/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2025-08-26T19:34:37.9279670Z [3982/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2025-08-26T19:34:37.9441920Z [3983/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2025-08-26T19:34:37.9486690Z [3984/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2025-08-26T19:34:37.9710570Z [3985/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2025-08-26T19:34:37.9757480Z [3986/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2025-08-26T19:34:38.1990270Z [3987/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2025-08-26T19:34:38.2469020Z [3988/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2025-08-26T19:34:38.3097860Z [3989/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2025-08-26T19:34:38.3112020Z [3990/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2025-08-26T19:34:38.3503100Z [3991/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2025-08-26T19:34:38.4586960Z [3992/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2025-08-26T19:34:38.4904210Z [3993/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2025-08-26T19:34:38.5540330Z [3994/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2025-08-26T19:34:38.5789710Z [3995/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2025-08-26T19:34:38.5927810Z [3996/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2025-08-26T19:34:38.6205710Z [3997/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2025-08-26T19:34:38.6808060Z [3998/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2025-08-26T19:34:38.6828460Z [3999/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2025-08-26T19:34:38.7120760Z [4000/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2025-08-26T19:34:38.9267800Z [4001/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2025-08-26T19:34:38.9541730Z [4002/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2025-08-26T19:34:38.9623180Z [4003/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2025-08-26T19:34:38.9662500Z [4004/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2025-08-26T19:34:39.0157350Z [4005/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2025-08-26T19:34:39.0260380Z [4006/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2025-08-26T19:34:39.1790480Z [4007/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2025-08-26T19:34:39.1935280Z [4008/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2025-08-26T19:34:39.1997790Z [4009/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2025-08-26T19:34:39.2034500Z [4010/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2025-08-26T19:34:39.2336640Z [4011/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2025-08-26T19:34:39.4200060Z [4012/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2025-08-26T19:34:39.4404070Z [4013/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2025-08-26T19:34:39.4506880Z [4014/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2025-08-26T19:34:39.5038190Z [4015/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2025-08-26T19:34:39.5341290Z [4016/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2025-08-26T19:34:39.5619130Z [4017/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2025-08-26T19:34:39.5674620Z [4018/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2025-08-26T19:34:39.6985900Z [4019/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2025-08-26T19:34:39.7888200Z [4020/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2025-08-26T19:34:39.7988680Z [4021/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2025-08-26T19:34:39.8494350Z [4022/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2025-08-26T19:34:39.8617060Z [4023/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2025-08-26T19:34:39.8953660Z [4024/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2025-08-26T19:34:39.9200370Z [4025/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2025-08-26T19:34:39.9843540Z [4026/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2025-08-26T19:34:40.0634080Z [4027/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2025-08-26T19:34:40.0844800Z [4028/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2025-08-26T19:34:40.0960680Z [4029/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2025-08-26T19:34:40.1041210Z [4030/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2025-08-26T19:34:40.1147290Z [4031/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2025-08-26T19:34:40.1368020Z [4032/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2025-08-26T19:34:40.1399720Z [4033/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2025-08-26T19:34:40.3632370Z [4034/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2025-08-26T19:34:40.3666130Z [4035/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2025-08-26T19:34:40.4529520Z [4036/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2025-08-26T19:34:40.4844080Z [4037/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2025-08-26T19:34:40.6377560Z [4038/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2025-08-26T19:34:40.6582690Z [4039/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2025-08-26T19:34:40.6685500Z [4040/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2025-08-26T19:34:40.7379880Z [4041/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2025-08-26T19:34:40.8034410Z [4042/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2025-08-26T19:34:40.8132270Z [4043/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2025-08-26T19:34:40.9636750Z [4044/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2025-08-26T19:34:40.9826380Z [4045/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ACLUtils.cpp.o 2025-08-26T19:34:41.1629260Z [4046/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2025-08-26T19:34:41.2292860Z [4047/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2025-08-26T19:34:41.2727370Z [4048/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2025-08-26T19:34:41.2858820Z [4049/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2025-08-26T19:34:41.3061560Z [4050/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2025-08-26T19:34:41.3214140Z [4051/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2025-08-26T19:34:41.3420270Z [4052/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2025-08-26T19:34:41.5609340Z [4053/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2025-08-26T19:34:41.5832290Z [4054/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2025-08-26T19:34:41.5940790Z [4055/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2025-08-26T19:34:41.6009330Z [4056/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2025-08-26T19:34:41.6438870Z [4057/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2025-08-26T19:34:41.6563790Z [4058/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2025-08-26T19:34:41.6803180Z [4059/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2025-08-26T19:34:41.7310320Z [4060/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2025-08-26T19:34:41.8736200Z [4061/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2025-08-26T19:34:41.9256640Z [4062/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2025-08-26T19:34:41.9387780Z [4063/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2025-08-26T19:34:42.0121280Z [4064/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2025-08-26T19:34:42.0264310Z [4065/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2025-08-26T19:34:42.0427080Z [4066/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2025-08-26T19:34:42.0605780Z [4067/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2025-08-26T19:34:42.0719160Z [4068/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2025-08-26T19:34:42.0828690Z [4069/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2025-08-26T19:34:42.1936860Z [4070/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2025-08-26T19:34:42.2945640Z [4071/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2025-08-26T19:34:42.3771780Z [4072/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2025-08-26T19:34:42.4038900Z [4073/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2025-08-26T19:34:42.4784820Z [4074/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2025-08-26T19:34:42.5194110Z [4075/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2025-08-26T19:34:42.5412580Z [4076/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2025-08-26T19:34:42.5448620Z [4077/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2025-08-26T19:34:42.6257630Z [4078/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2025-08-26T19:34:42.6713490Z [4079/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2025-08-26T19:34:42.8453410Z [4080/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2025-08-26T19:34:42.8592480Z [4081/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2025-08-26T19:34:42.8974020Z [4082/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2025-08-26T19:34:42.9125770Z [4083/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2025-08-26T19:34:42.9238000Z [4084/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2025-08-26T19:34:42.9401670Z [4085/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2025-08-26T19:34:42.9735460Z [4086/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2025-08-26T19:34:43.0607040Z [4087/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2025-08-26T19:34:43.2656630Z [4088/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2025-08-26T19:34:43.2810130Z [4089/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2025-08-26T19:34:43.3326590Z [4090/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2025-08-26T19:34:43.3343800Z [4091/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2025-08-26T19:34:43.3396300Z [4092/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2025-08-26T19:34:43.3598660Z [4093/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2025-08-26T19:34:43.3669970Z [4094/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2025-08-26T19:34:43.5241560Z [4095/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2025-08-26T19:34:43.5550050Z [4096/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/MklAllocationHelper.cpp.o 2025-08-26T19:34:43.6026320Z [4097/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2025-08-26T19:34:43.6975880Z [4098/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2025-08-26T19:34:43.7007250Z [4099/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2025-08-26T19:34:43.7146850Z [4100/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2025-08-26T19:34:43.7279710Z [4101/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2025-08-26T19:34:43.9048810Z [4102/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2025-08-26T19:34:43.9380740Z [4103/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2025-08-26T19:34:43.9396390Z [4104/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2025-08-26T19:34:43.9842780Z [4105/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2025-08-26T19:34:44.0345960Z [4106/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2025-08-26T19:34:44.0547550Z [4107/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2025-08-26T19:34:44.0748390Z [4108/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2025-08-26T19:34:44.1014990Z [4109/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2025-08-26T19:34:44.1968220Z [4110/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2025-08-26T19:34:44.2376220Z [4111/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2025-08-26T19:34:44.3803880Z [4112/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2025-08-26T19:34:44.4047410Z [4113/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2025-08-26T19:34:44.4151730Z [4114/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2025-08-26T19:34:44.4180230Z [4115/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2025-08-26T19:34:44.4376300Z [4116/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2025-08-26T19:34:44.4562290Z [4117/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2025-08-26T19:34:44.4787050Z [4118/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2025-08-26T19:34:44.5780370Z [4119/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2025-08-26T19:34:44.7493900Z [4120/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2025-08-26T19:34:44.7618740Z [4121/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2025-08-26T19:34:44.7690980Z [4122/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2025-08-26T19:34:44.7740410Z [4123/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2025-08-26T19:34:44.8476400Z [4124/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2025-08-26T19:34:44.8681810Z [4125/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2025-08-26T19:34:44.9734250Z [4126/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2025-08-26T19:34:45.0337010Z [4127/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2025-08-26T19:34:45.0670180Z [4128/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2025-08-26T19:34:45.2013570Z [4129/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2025-08-26T19:34:45.2254260Z [4130/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2025-08-26T19:34:45.2355650Z [4131/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2025-08-26T19:34:45.2357570Z [4132/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2025-08-26T19:34:45.3519640Z [4133/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2025-08-26T19:34:45.3670020Z [4134/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2025-08-26T19:34:45.4175600Z [4135/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2025-08-26T19:34:45.5177740Z [4136/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2025-08-26T19:34:45.5476720Z [4137/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2025-08-26T19:34:45.5692890Z [4138/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2025-08-26T19:34:45.5742790Z [4139/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2025-08-26T19:34:45.6679720Z [4140/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2025-08-26T19:34:45.7668770Z [4141/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2025-08-26T19:34:45.8340500Z [4142/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2025-08-26T19:34:45.8524740Z [4143/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2025-08-26T19:34:45.8732510Z [4144/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2025-08-26T19:34:46.0003030Z [4145/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2025-08-26T19:34:46.0237890Z [4146/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2025-08-26T19:34:46.0257970Z [4147/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2025-08-26T19:34:46.0550970Z [4148/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2025-08-26T19:34:46.1012770Z [4149/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2025-08-26T19:34:46.1898120Z [4150/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2025-08-26T19:34:46.2077510Z [4151/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2025-08-26T19:34:46.2203630Z [4152/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2025-08-26T19:34:46.3458460Z [4153/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2025-08-26T19:34:46.3728140Z [4154/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2025-08-26T19:34:46.4695950Z [4155/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2025-08-26T19:34:46.4893760Z [4156/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2025-08-26T19:34:46.5021770Z [4157/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2025-08-26T19:34:46.5723130Z [4158/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2025-08-26T19:34:46.5825750Z [4159/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2025-08-26T19:34:46.5950440Z [4160/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2025-08-26T19:34:46.6633810Z [4161/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2025-08-26T19:34:46.6702770Z [4162/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2025-08-26T19:34:46.8727450Z [4163/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2025-08-26T19:34:46.8954120Z [4164/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2025-08-26T19:34:46.9068280Z [4165/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2025-08-26T19:34:46.9115640Z [4166/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2025-08-26T19:34:46.9133880Z [4167/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2025-08-26T19:34:46.9177020Z [4168/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2025-08-26T19:34:46.9610670Z [4169/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2025-08-26T19:34:46.9819990Z [4170/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2025-08-26T19:34:47.1936280Z [4171/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2025-08-26T19:34:47.2475510Z [4172/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2025-08-26T19:34:47.2629780Z [4173/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2025-08-26T19:34:47.3251310Z [4174/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2025-08-26T19:34:47.3295880Z [4175/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2025-08-26T19:34:47.3326260Z [4176/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2025-08-26T19:34:47.3588490Z [4177/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2025-08-26T19:34:47.3879570Z [4178/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2025-08-26T19:34:47.5201170Z [4179/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2025-08-26T19:34:47.5531560Z [4180/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2025-08-26T19:34:47.6939370Z [4181/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2025-08-26T19:34:47.7511780Z [4182/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2025-08-26T19:34:47.7661050Z [4183/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2025-08-26T19:34:47.7739490Z [4184/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2025-08-26T19:34:47.8169160Z [4185/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2025-08-26T19:34:47.9704790Z [4186/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2025-08-26T19:34:48.0163470Z [4187/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2025-08-26T19:34:48.0938760Z [4188/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2025-08-26T19:34:48.1054020Z [4189/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2025-08-26T19:34:48.1569080Z [4190/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2025-08-26T19:34:48.1948190Z [4191/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2025-08-26T19:34:48.2049850Z [4192/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2025-08-26T19:34:48.2315610Z [4193/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2025-08-26T19:34:48.3498250Z [4194/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2025-08-26T19:34:48.3568920Z [4195/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2025-08-26T19:34:48.4207270Z [4196/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2025-08-26T19:34:48.4307540Z [4197/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2025-08-26T19:34:48.4935870Z [4198/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2025-08-26T19:34:48.5252600Z [4199/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2025-08-26T19:34:48.6205050Z [4200/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2025-08-26T19:34:48.6421800Z [4201/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2025-08-26T19:34:48.7260870Z [4202/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2025-08-26T19:34:48.7651890Z [4203/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2025-08-26T19:34:48.7950090Z [4204/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2025-08-26T19:34:48.8150780Z [4205/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2025-08-26T19:34:48.8296000Z [4206/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2025-08-26T19:34:48.9325580Z [4207/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2025-08-26T19:34:48.9468190Z [4208/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2025-08-26T19:34:48.9894430Z [4209/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2025-08-26T19:34:49.0458840Z [4210/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2025-08-26T19:34:49.0756840Z [4211/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2025-08-26T19:34:49.1116750Z [4212/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2025-08-26T19:34:49.1168620Z [4213/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2025-08-26T19:34:49.1367500Z [4214/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2025-08-26T19:34:49.2233310Z [4215/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2025-08-26T19:34:49.3320390Z [4216/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2025-08-26T19:34:49.4231770Z [4217/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2025-08-26T19:34:49.4377660Z [4218/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2025-08-26T19:34:49.4484240Z [4219/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2025-08-26T19:34:49.4879940Z [4220/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2025-08-26T19:34:49.5390710Z [4221/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2025-08-26T19:34:49.5728180Z [4222/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2025-08-26T19:34:49.8035270Z [4223/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2025-08-26T19:34:49.8320110Z [4224/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2025-08-26T19:34:49.8464430Z [4225/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2025-08-26T19:34:49.8490120Z [4226/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2025-08-26T19:34:49.8510460Z [4227/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2025-08-26T19:34:49.8731230Z [4228/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2025-08-26T19:34:49.8996600Z [4229/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2025-08-26T19:34:49.9741800Z [4230/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2025-08-26T19:34:50.1544080Z [4231/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2025-08-26T19:34:50.1727920Z [4232/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2025-08-26T19:34:50.1840760Z [4233/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2025-08-26T19:34:50.2523530Z [4234/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2025-08-26T19:34:50.3034220Z [4235/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2025-08-26T19:34:50.3733730Z [4236/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2025-08-26T19:34:50.5506450Z [4237/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2025-08-26T19:34:50.6394600Z [4238/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2025-08-26T19:34:50.6730940Z [4239/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2025-08-26T19:34:50.7124130Z [4240/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2025-08-26T19:34:50.7525970Z [4241/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2025-08-26T19:34:50.7626260Z [4242/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2025-08-26T19:34:50.7879370Z [4243/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2025-08-26T19:34:50.8625820Z [4244/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2025-08-26T19:34:50.8925010Z [4245/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2025-08-26T19:34:51.0577330Z [4246/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2025-08-26T19:34:51.0909980Z [4247/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2025-08-26T19:34:51.1105700Z [4248/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2025-08-26T19:34:51.2031950Z [4249/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2025-08-26T19:34:51.2393450Z [4250/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2025-08-26T19:34:51.4187920Z [4251/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2025-08-26T19:34:51.4679050Z [4252/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2025-08-26T19:34:51.4968410Z [4253/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2025-08-26T19:34:51.5793180Z [4254/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2025-08-26T19:34:51.5851430Z [4255/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2025-08-26T19:34:51.6319040Z [4256/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2025-08-26T19:34:51.8056210Z [4257/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2025-08-26T19:34:51.8301800Z [4258/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2025-08-26T19:34:51.8717740Z [4259/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2025-08-26T19:34:51.8835870Z [4260/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2025-08-26T19:34:51.9737060Z [4261/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2025-08-26T19:34:51.9852080Z [4262/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2025-08-26T19:34:52.0140260Z [4263/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2025-08-26T19:34:52.1749880Z [4264/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2025-08-26T19:34:52.2186240Z [4265/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2025-08-26T19:34:52.2400080Z [4266/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2025-08-26T19:34:52.2601030Z [4267/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2025-08-26T19:34:52.4986700Z [4268/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2025-08-26T19:34:52.5188330Z [4269/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2025-08-26T19:34:52.5849790Z [4270/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2025-08-26T19:34:52.6373700Z [4271/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler_helper.cpp.o 2025-08-26T19:34:52.7726600Z [4272/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2025-08-26T19:34:52.8064410Z [4273/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2025-08-26T19:34:52.8280770Z [4274/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2025-08-26T19:34:52.9206460Z [4275/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2025-08-26T19:34:53.1487640Z [4276/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2025-08-26T19:34:53.1678160Z [4277/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2025-08-26T19:34:53.2160850Z [4278/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2025-08-26T19:34:53.2620120Z [4279/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2025-08-26T19:34:53.2896790Z [4280/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2025-08-26T19:34:53.2919700Z [4281/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2025-08-26T19:34:53.2942140Z [4282/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2025-08-26T19:34:53.3496830Z [4283/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2025-08-26T19:34:53.4089090Z [4284/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2025-08-26T19:34:53.4233180Z [4285/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2025-08-26T19:34:53.6843050Z [4286/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2025-08-26T19:34:53.6949520Z [4287/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2025-08-26T19:34:53.8105040Z [4288/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2025-08-26T19:34:53.8218500Z [4289/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2025-08-26T19:34:53.9058000Z [4290/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2025-08-26T19:34:53.9216690Z [4291/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2025-08-26T19:34:53.9366450Z [4292/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2025-08-26T19:34:53.9595170Z [4293/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2025-08-26T19:34:53.9651940Z [4294/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2025-08-26T19:34:53.9882200Z [4295/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2025-08-26T19:34:54.3666770Z [4296/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2025-08-26T19:34:54.4896670Z [4297/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2025-08-26T19:34:54.5097360Z [4298/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2025-08-26T19:34:54.5640000Z [4299/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2025-08-26T19:34:54.6148400Z [4300/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2025-08-26T19:34:54.6311660Z [4301/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2025-08-26T19:34:54.6529120Z [4302/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2025-08-26T19:34:54.7709820Z [4303/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2025-08-26T19:34:54.9207010Z [4304/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2025-08-26T19:34:55.0172850Z [4305/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2025-08-26T19:34:55.0671270Z [4306/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2025-08-26T19:34:55.0805930Z [4307/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2025-08-26T19:34:55.1433060Z [4308/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2025-08-26T19:34:55.2064420Z [4309/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2025-08-26T19:34:55.2312850Z [4310/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2025-08-26T19:34:55.2544410Z [4311/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2025-08-26T19:34:55.2572030Z [4312/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2025-08-26T19:34:55.2909260Z [4313/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2025-08-26T19:34:55.4042920Z [4314/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2025-08-26T19:34:55.4728750Z [4315/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2025-08-26T19:34:55.4842770Z [4316/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2025-08-26T19:34:55.5147720Z [4317/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2025-08-26T19:34:55.5358050Z [4318/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2025-08-26T19:34:55.5617060Z [4319/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2025-08-26T19:34:55.6644070Z [4320/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2025-08-26T19:34:55.7822400Z [4321/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2025-08-26T19:34:55.8075340Z [4322/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2025-08-26T19:34:55.8110450Z [4323/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2025-08-26T19:34:55.8461660Z [4324/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2025-08-26T19:34:55.9257150Z [4325/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2025-08-26T19:34:55.9388140Z [4326/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2025-08-26T19:34:55.9425530Z [4327/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2025-08-26T19:34:56.0545330Z [4328/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2025-08-26T19:34:56.0676620Z [4329/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2025-08-26T19:34:56.0976160Z [4330/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2025-08-26T19:34:56.1935750Z [4331/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2025-08-26T19:34:56.2120280Z [4332/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2025-08-26T19:34:56.3290980Z [4333/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2025-08-26T19:34:56.3366560Z [4334/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2025-08-26T19:34:56.3662090Z [4335/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2025-08-26T19:34:56.3810330Z [4336/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2025-08-26T19:34:56.3995110Z [4337/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2025-08-26T19:34:56.5248620Z [4338/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2025-08-26T19:34:56.5380710Z [4339/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2025-08-26T19:34:56.6677980Z [4340/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2025-08-26T19:34:56.6810510Z [4341/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2025-08-26T19:34:56.6930580Z [4342/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/mtia/profiler/MTIAMemoryProfiler.cpp.o 2025-08-26T19:34:56.7719420Z [4343/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2025-08-26T19:34:56.7865240Z [4344/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2025-08-26T19:34:56.8003680Z [4345/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2025-08-26T19:34:56.8310940Z [4346/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2025-08-26T19:34:56.8448630Z [4347/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2025-08-26T19:34:56.9846490Z [4348/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2025-08-26T19:34:57.0373400Z [4349/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2025-08-26T19:34:57.0504410Z [4350/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2025-08-26T19:34:57.0905790Z [4351/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2025-08-26T19:34:57.1259000Z [4352/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2025-08-26T19:34:57.1327210Z [4353/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2025-08-26T19:34:57.1515620Z [4354/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2025-08-26T19:34:57.1531800Z [4355/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2025-08-26T19:34:57.1839240Z [4356/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2025-08-26T19:34:57.1855710Z [4357/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2025-08-26T19:34:57.1899550Z [4358/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2025-08-26T19:34:57.3542770Z [4359/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2025-08-26T19:34:57.5346030Z [4360/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2025-08-26T19:34:57.5396170Z [4361/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2025-08-26T19:34:57.5594710Z [4362/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2025-08-26T19:34:57.6879910Z [4363/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2025-08-26T19:34:57.7240090Z [4364/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2025-08-26T19:34:57.7490300Z [4365/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2025-08-26T19:34:57.7827490Z [4366/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2025-08-26T19:34:57.8375640Z [4367/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2025-08-26T19:34:57.9469120Z [4368/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2025-08-26T19:34:58.1412490Z [4369/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphSignature.cpp.o 2025-08-26T19:34:58.1540440Z [4370/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphPasses.cpp.o 2025-08-26T19:34:58.1653370Z [4371/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/ModelRunner.cpp.o 2025-08-26T19:34:58.1810510Z [4372/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2025-08-26T19:34:58.1943710Z [4373/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Graph.cpp.o 2025-08-26T19:34:58.4205100Z [4374/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2025-08-26T19:34:58.4215640Z [4375/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/TensorMeta.cpp.o 2025-08-26T19:34:58.4384240Z [4376/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2025-08-26T19:34:58.4404580Z [4377/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Placement.cpp.o 2025-08-26T19:34:58.4748950Z [4378/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2025-08-26T19:34:58.4937630Z [4379/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Serialization.cpp.o 2025-08-26T19:34:58.5768810Z [4380/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/DelegateExecutor.cpp.o 2025-08-26T19:34:58.5881070Z [4381/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphUtils.cpp.o 2025-08-26T19:34:58.7547590Z [4382/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionPlanner.cpp.o 2025-08-26T19:34:58.7652650Z [4383/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/PlacementUtils.cpp.o 2025-08-26T19:34:58.7937310Z [4384/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionFrame.cpp.o 2025-08-26T19:34:58.8792590Z [4385/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Executor.cpp.o 2025-08-26T19:34:58.8808150Z [4386/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/OpKernel.cpp.o 2025-08-26T19:34:58.8938890Z [4387/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ConstantFolder.cpp.o 2025-08-26T19:34:58.9149690Z [4388/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/GraphExecutorBase.cpp.o 2025-08-26T19:34:58.9916980Z [4389/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/SerialGraphExecutor.cpp.o 2025-08-26T19:34:59.0445040Z [4390/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/common/FileUtil.cpp.o 2025-08-26T19:34:59.0583780Z [4391/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/FunctionSchema.cpp.o 2025-08-26T19:34:59.1976950Z [4392/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Weights.cpp.o 2025-08-26T19:34:59.2079430Z [4393/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/Bump.cpp.o 2025-08-26T19:34:59.2184630Z [4394/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/detail/ITree.cpp.o 2025-08-26T19:34:59.2415790Z [4395/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/C10Kernel.cpp.o 2025-08-26T19:34:59.2484680Z [4396/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/GreedyBySize.cpp.o 2025-08-26T19:34:59.3540950Z [4397/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/AutoFunctionalizeKernel.cpp.o 2025-08-26T19:34:59.3920990Z [4398/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/HigherOrderKernel.cpp.o 2025-08-26T19:34:59.4748800Z [4399/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ParallelGraphExecutor.cpp.o 2025-08-26T19:34:59.5447730Z [4400/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/CallTorchBindKernel.cpp.o 2025-08-26T19:34:59.5924980Z [4401/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/DisjointStorageGroups.cpp.o 2025-08-26T19:34:59.6759200Z [4402/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/AliasAnalyzer.cpp.o 2025-08-26T19:34:59.7174400Z [4403/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutPlanner.cpp.o 2025-08-26T19:34:59.8382990Z [4404/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/pass_manager/GraphPasses.cpp.o 2025-08-26T19:34:59.8402730Z [4405/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutManager.cpp.o 2025-08-26T19:34:59.9952310Z [4406/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelFactory.cpp.o 2025-08-26T19:34:59.9971170Z [4407/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2025-08-26T19:35:00.1667050Z [4408/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/NativeKernels.cpp.o 2025-08-26T19:35:00.1896700Z [4409/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/PrimKernelRegistry.cpp.o 2025-08-26T19:35:00.2120330Z [4410/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/SubgraphRewriter.cpp.o 2025-08-26T19:35:00.2665170Z [4411/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2025-08-26T19:35:00.3355650Z [4412/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/pass_manager/PassManager.cpp.o 2025-08-26T19:35:00.4228180Z [4413/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp.o 2025-08-26T19:35:00.4957950Z [4414/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2025-08-26T19:35:00.5286870Z [4415/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp.o 2025-08-26T19:35:00.6382320Z [4416/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2025-08-26T19:35:00.6731340Z [4417/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelHandlerRegistry.cpp.o 2025-08-26T19:35:00.6956190Z [4418/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelRegistry.cpp.o 2025-08-26T19:35:00.7061260Z [4419/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2025-08-26T19:35:00.7180700Z [4420/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2025-08-26T19:35:00.8712250Z [4421/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2025-08-26T19:35:00.9846300Z [4422/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2025-08-26T19:35:01.0191660Z [4423/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2025-08-26T19:35:01.1035340Z [4424/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2025-08-26T19:35:01.1378090Z [4425/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2025-08-26T19:35:01.1593390Z [4426/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2025-08-26T19:35:01.3488440Z [4427/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2025-08-26T19:35:01.3590890Z [4428/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2025-08-26T19:35:01.3869080Z [4429/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2025-08-26T19:35:01.5160160Z [4430/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2025-08-26T19:35:01.6052950Z [4431/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2025-08-26T19:35:01.6256160Z [4432/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2025-08-26T19:35:01.6507690Z [4433/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2025-08-26T19:35:01.6908680Z [4434/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2025-08-26T19:35:01.8400750Z [4435/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2025-08-26T19:35:01.8500970Z [4436/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2025-08-26T19:35:01.8804930Z [4437/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2025-08-26T19:35:01.9798660Z [4438/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2025-08-26T19:35:02.0428980Z [4439/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2025-08-26T19:35:02.0737610Z [4440/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2025-08-26T19:35:02.1580030Z [4441/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2025-08-26T19:35:02.1764100Z [4442/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2025-08-26T19:35:02.1862510Z [4443/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2025-08-26T19:35:02.3090290Z [4444/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2025-08-26T19:35:02.3369950Z [4445/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2025-08-26T19:35:02.4802840Z [4446/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2025-08-26T19:35:02.5941270Z [4447/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2025-08-26T19:35:02.6238820Z [4448/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2025-08-26T19:35:02.6679610Z [4449/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2025-08-26T19:35:02.8181110Z [4450/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2025-08-26T19:35:02.8423530Z [4451/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2025-08-26T19:35:02.8578340Z [4452/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2025-08-26T19:35:02.8824740Z [4453/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2025-08-26T19:35:02.9111520Z [4454/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2025-08-26T19:35:02.9426970Z [4455/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2025-08-26T19:35:03.0355790Z [4456/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2025-08-26T19:35:03.2146670Z [4457/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2025-08-26T19:35:03.4837690Z [4458/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2025-08-26T19:35:03.5092750Z [4459/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2025-08-26T19:35:03.5217260Z [4460/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2025-08-26T19:35:03.5357480Z [4461/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2025-08-26T19:35:03.5570250Z [4462/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2025-08-26T19:35:03.5938790Z [4463/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2025-08-26T19:35:03.6263600Z [4464/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2025-08-26T19:35:03.8424260Z [4465/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2025-08-26T19:35:04.0298380Z [4466/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2025-08-26T19:35:04.0617290Z [4467/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2025-08-26T19:35:04.2031210Z [4468/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2025-08-26T19:35:04.2400490Z [4469/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2025-08-26T19:35:04.2608330Z [4470/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2025-08-26T19:35:04.2851820Z [4471/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2025-08-26T19:35:04.3197940Z [4472/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2025-08-26T19:35:04.4346100Z [4473/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2025-08-26T19:35:04.6815430Z [4474/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2025-08-26T19:35:04.7061840Z [4475/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2025-08-26T19:35:04.8615380Z [4476/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2025-08-26T19:35:04.8830100Z [4477/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2025-08-26T19:35:04.9278030Z [4478/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2025-08-26T19:35:04.9888810Z [4479/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2025-08-26T19:35:05.0277240Z [4480/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2025-08-26T19:35:05.0427690Z [4481/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2025-08-26T19:35:05.2858330Z [4482/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2025-08-26T19:35:05.3999910Z [4483/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2025-08-26T19:35:05.4151070Z [4484/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2025-08-26T19:35:05.4442600Z [4485/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2025-08-26T19:35:05.5345110Z [4486/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2025-08-26T19:35:05.5634840Z [4487/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2025-08-26T19:35:05.5782840Z [4488/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2025-08-26T19:35:05.8531480Z [4489/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2025-08-26T19:35:05.8995730Z [4490/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2025-08-26T19:35:05.9944240Z [4491/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2025-08-26T19:35:06.0255230Z [4492/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2025-08-26T19:35:06.1936850Z [4493/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2025-08-26T19:35:06.2187380Z [4494/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2025-08-26T19:35:06.2304800Z [4495/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2025-08-26T19:35:06.2589740Z [4496/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2025-08-26T19:35:06.2693630Z [4497/5160] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-3.0.2/miniz.c.o 2025-08-26T19:35:06.3964360Z [4498/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2025-08-26T19:35:06.4020400Z [4499/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2025-08-26T19:35:06.4277710Z [4500/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2025-08-26T19:35:06.4334710Z [4501/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2025-08-26T19:35:06.5084980Z [4502/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2025-08-26T19:35:06.5461200Z [4503/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2025-08-26T19:35:06.5633890Z [4504/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2025-08-26T19:35:06.5758230Z [4505/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2025-08-26T19:35:06.6029940Z [4506/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2025-08-26T19:35:06.6241900Z [4507/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2025-08-26T19:35:06.7198190Z [4508/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2025-08-26T19:35:06.7300350Z [4509/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2025-08-26T19:35:06.8686700Z [4510/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2025-08-26T19:35:06.8722670Z [4511/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2025-08-26T19:35:06.9696940Z [4512/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2025-08-26T19:35:07.0587850Z [4513/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2025-08-26T19:35:07.0627720Z [4514/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2025-08-26T19:35:07.4609040Z [4515/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2025-08-26T19:35:07.4644500Z [4516/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2025-08-26T19:35:07.4913760Z [4517/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2025-08-26T19:35:07.4968530Z [4518/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2025-08-26T19:35:07.5298490Z [4519/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2025-08-26T19:35:07.5554280Z [4520/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2025-08-26T19:35:07.6257650Z [4521/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2025-08-26T19:35:07.6524210Z [4522/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2025-08-26T19:35:07.7652900Z [4523/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2025-08-26T19:35:07.8162600Z [4524/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2025-08-26T19:35:07.9398950Z [4525/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2025-08-26T19:35:07.9483710Z [4526/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2025-08-26T19:35:07.9688170Z [4527/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2025-08-26T19:35:07.9792190Z [4528/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.cpp.o 2025-08-26T19:35:07.9957590Z [4529/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2025-08-26T19:35:08.0400520Z [4530/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2025-08-26T19:35:08.1345390Z [4531/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2025-08-26T19:35:08.2424940Z [4532/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp.o 2025-08-26T19:35:08.2994120Z [4533/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2025-08-26T19:35:08.3200950Z [4534/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2025-08-26T19:35:08.3409920Z [4535/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2025-08-26T19:35:08.3604170Z [4536/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2025-08-26T19:35:08.4177340Z [4537/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2025-08-26T19:35:08.4865090Z [4538/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2025-08-26T19:35:08.6113070Z [4539/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2025-08-26T19:35:08.6614370Z [4540/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2025-08-26T19:35:08.7315590Z [4541/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2025-08-26T19:35:08.8651170Z [4542/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2025-08-26T19:35:08.8896920Z [4543/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2025-08-26T19:35:08.9368860Z [4544/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2025-08-26T19:35:08.9743800Z [4545/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2025-08-26T19:35:09.0241180Z [4546/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2025-08-26T19:35:09.0453590Z [4547/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2025-08-26T19:35:09.0695860Z [4548/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2025-08-26T19:35:09.1714300Z [4549/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2025-08-26T19:35:09.2147180Z [4550/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2025-08-26T19:35:09.2259940Z [4551/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2025-08-26T19:35:09.2371970Z [4552/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2025-08-26T19:35:09.3547660Z [4553/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2025-08-26T19:35:09.3786520Z [4554/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2025-08-26T19:35:09.4930690Z [4555/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/dynamo/compiled_autograd.cpp.o 2025-08-26T19:35:09.5102840Z [4556/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2025-08-26T19:35:09.6150800Z [4557/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_package/model_package_loader.cpp.o 2025-08-26T19:35:09.6204530Z [4558/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2025-08-26T19:35:09.6369910Z [4559/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_cpu.cpp.o 2025-08-26T19:35:09.7041600Z [4560/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2025-08-26T19:35:09.7269200Z [4561/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2025-08-26T19:35:09.7689200Z [4562/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2025-08-26T19:35:09.9149060Z [4563/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/oss_proxy_executor.cpp.o 2025-08-26T19:35:09.9253940Z [4564/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2025-08-26T19:35:09.9531060Z [4565/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2025-08-26T19:35:10.0578160Z [4566/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2025-08-26T19:35:10.0878750Z [4567/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2025-08-26T19:35:10.1439040Z [4568/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2025-08-26T19:35:10.2209550Z [4569/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2025-08-26T19:35:10.2757120Z [4570/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2025-08-26T19:35:10.3640820Z [4571/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2025-08-26T19:35:10.3818540Z [4572/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2025-08-26T19:35:10.4742200Z [4573/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2025-08-26T19:35:10.5319120Z [4574/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2025-08-26T19:35:10.7487310Z [4575/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2025-08-26T19:35:10.7787960Z [4576/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2025-08-26T19:35:10.7910660Z [4577/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2025-08-26T19:35:10.8012870Z [4578/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2025-08-26T19:35:10.8458040Z [4579/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2025-08-26T19:35:10.8647220Z [4580/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2025-08-26T19:35:10.9583050Z [4581/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2025-08-26T19:35:10.9760060Z [4582/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2025-08-26T19:35:10.9945740Z [4583/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2025-08-26T19:35:11.0659040Z [4584/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2025-08-26T19:35:11.1733550Z [4585/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2025-08-26T19:35:11.1871490Z [4586/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2025-08-26T19:35:11.2567860Z [4587/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2025-08-26T19:35:11.2628450Z [4588/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2025-08-26T19:35:11.2993970Z [4589/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2025-08-26T19:35:11.3251390Z [4590/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2025-08-26T19:35:11.4232530Z [4591/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2025-08-26T19:35:11.4461050Z [4592/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2025-08-26T19:35:11.5125200Z [4593/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2025-08-26T19:35:11.5621060Z [4594/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2025-08-26T19:35:11.6198290Z [4595/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2025-08-26T19:35:11.6890210Z [4596/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2025-08-26T19:35:11.7530050Z [4597/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2025-08-26T19:35:11.7757100Z [4598/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2025-08-26T19:35:11.8530590Z [4599/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2025-08-26T19:35:11.8696390Z [4600/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2025-08-26T19:35:11.9185510Z [4601/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2025-08-26T19:35:12.0275040Z [4602/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2025-08-26T19:35:12.0416360Z [4603/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2025-08-26T19:35:12.0916080Z [4604/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2025-08-26T19:35:12.1151730Z [4605/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2025-08-26T19:35:12.1475110Z [4606/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2025-08-26T19:35:12.1727280Z [4607/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2025-08-26T19:35:12.1753930Z [4608/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2025-08-26T19:35:12.3488910Z [4609/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2025-08-26T19:35:12.3692870Z [4610/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2025-08-26T19:35:12.4841640Z [4611/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2025-08-26T19:35:12.5098860Z [4612/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2025-08-26T19:35:12.5109940Z [4613/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2025-08-26T19:35:12.6027890Z [4614/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2025-08-26T19:35:12.6487170Z [4615/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2025-08-26T19:35:12.7311920Z [4616/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2025-08-26T19:35:12.7843460Z [4617/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2025-08-26T19:35:12.8062910Z [4618/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2025-08-26T19:35:12.8201190Z [4619/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2025-08-26T19:35:12.8922990Z [4620/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2025-08-26T19:35:12.9317080Z [4621/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2025-08-26T19:35:13.0550820Z [4622/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2025-08-26T19:35:13.0610030Z [4623/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2025-08-26T19:35:13.0781140Z [4624/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2025-08-26T19:35:13.0847360Z [4625/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2025-08-26T19:35:13.0989950Z [4626/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2025-08-26T19:35:13.1784470Z [4627/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2025-08-26T19:35:13.3194030Z [4628/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2025-08-26T19:35:13.3406210Z [4629/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2025-08-26T19:35:13.3801820Z [4630/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2025-08-26T19:35:13.4550110Z [4631/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2025-08-26T19:35:13.5210550Z [4632/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2025-08-26T19:35:13.5412420Z [4633/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2025-08-26T19:35:13.6378530Z [4634/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2025-08-26T19:35:13.7395990Z [4635/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2025-08-26T19:35:13.7505290Z [4636/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2025-08-26T19:35:13.8048200Z [4637/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2025-08-26T19:35:13.8308990Z [4638/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2025-08-26T19:35:13.8884380Z [4639/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2025-08-26T19:35:13.9843330Z [4640/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2025-08-26T19:35:14.0277930Z [4641/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2025-08-26T19:35:14.0585710Z [4642/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2025-08-26T19:35:14.1379290Z [4643/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2025-08-26T19:35:14.1503320Z [4644/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2025-08-26T19:35:14.1659060Z [4645/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2025-08-26T19:35:14.2160140Z [4646/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2025-08-26T19:35:14.2879160Z [4647/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2025-08-26T19:35:14.3635790Z [4648/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2025-08-26T19:35:14.4305080Z [4649/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2025-08-26T19:35:14.4774790Z [4650/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2025-08-26T19:35:14.4873840Z [4651/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2025-08-26T19:35:14.4950560Z [4652/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2025-08-26T19:35:14.5678510Z [4653/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2025-08-26T19:35:14.6179150Z [4654/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2025-08-26T19:35:14.8012190Z [4655/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2025-08-26T19:35:14.8106910Z [4656/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2025-08-26T19:35:14.8234790Z [4657/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2025-08-26T19:35:14.8264480Z [4658/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2025-08-26T19:35:14.8414880Z [4659/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2025-08-26T19:35:14.8628800Z [4660/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2025-08-26T19:35:15.0357800Z [4661/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2025-08-26T19:35:15.1708850Z [4662/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2025-08-26T19:35:15.1933480Z [4663/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2025-08-26T19:35:15.2451480Z [4664/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2025-08-26T19:35:15.2627750Z [4665/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2025-08-26T19:35:15.2806260Z [4666/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2025-08-26T19:35:15.3482040Z [4667/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2025-08-26T19:35:15.4292350Z [4668/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2025-08-26T19:35:15.4498610Z [4669/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2025-08-26T19:35:15.5619830Z [4670/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2025-08-26T19:35:15.5755860Z [4671/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2025-08-26T19:35:15.6395170Z [4672/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2025-08-26T19:35:15.6500950Z [4673/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2025-08-26T19:35:15.8172490Z [4674/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2025-08-26T19:35:15.8427490Z [4675/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2025-08-26T19:35:15.8686290Z [4676/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2025-08-26T19:35:15.8774820Z [4677/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2025-08-26T19:35:16.0112350Z [4678/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2025-08-26T19:35:16.0465360Z [4679/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2025-08-26T19:35:16.0599220Z [4680/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2025-08-26T19:35:16.0907650Z [4681/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2025-08-26T19:35:16.3073640Z [4682/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2025-08-26T19:35:16.3085440Z [4683/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2025-08-26T19:35:16.3125100Z [4684/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2025-08-26T19:35:16.3626690Z [4685/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2025-08-26T19:35:16.3634860Z [4686/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2025-08-26T19:35:16.4162710Z [4687/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2025-08-26T19:35:16.4452190Z [4688/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2025-08-26T19:35:16.5713650Z [4689/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2025-08-26T19:35:16.6638380Z [4690/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2025-08-26T19:35:16.6957010Z [4691/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2025-08-26T19:35:16.7009550Z [4692/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2025-08-26T19:35:16.7594060Z [4693/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2025-08-26T19:35:16.7735010Z [4694/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2025-08-26T19:35:16.7759720Z [4695/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2025-08-26T19:35:16.8507700Z [4696/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2025-08-26T19:35:16.9896740Z [4697/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2025-08-26T19:35:16.9981280Z [4698/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2025-08-26T19:35:17.0736930Z [4699/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2025-08-26T19:35:17.1601160Z [4700/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2025-08-26T19:35:17.1748360Z [4701/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2025-08-26T19:35:17.2339680Z [4702/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2025-08-26T19:35:17.2556040Z [4703/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2025-08-26T19:35:17.2837740Z [4704/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2025-08-26T19:35:17.3054680Z [4705/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2025-08-26T19:35:17.4873290Z [4706/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2025-08-26T19:35:17.5082750Z [4707/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2025-08-26T19:35:17.5690940Z [4708/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2025-08-26T19:35:17.6350800Z [4709/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2025-08-26T19:35:17.6802830Z [4710/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2025-08-26T19:35:17.7426070Z [4711/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2025-08-26T19:35:17.7458140Z [4712/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2025-08-26T19:35:17.8745850Z [4713/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2025-08-26T19:35:17.8876700Z [4714/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2025-08-26T19:35:17.9832770Z [4715/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2025-08-26T19:35:18.0150370Z [4716/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2025-08-26T19:35:18.0948980Z [4717/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2025-08-26T19:35:18.1163790Z [4718/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2025-08-26T19:35:18.1195930Z [4719/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2025-08-26T19:35:18.1396020Z [4720/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2025-08-26T19:35:18.1436540Z [4721/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2025-08-26T19:35:18.2126410Z [4722/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2025-08-26T19:35:18.2734550Z [4723/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2025-08-26T19:35:18.3678980Z [4724/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2025-08-26T19:35:18.5065660Z [4725/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2025-08-26T19:35:18.5100860Z [4726/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2025-08-26T19:35:18.5395880Z [4727/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2025-08-26T19:35:18.5867420Z [4728/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2025-08-26T19:35:18.6231380Z [4729/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2025-08-26T19:35:18.7492800Z [4730/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2025-08-26T19:35:18.7524460Z [4731/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2025-08-26T19:35:18.7624910Z [4732/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2025-08-26T19:35:18.8225100Z [4733/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2025-08-26T19:35:18.8628230Z [4734/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2025-08-26T19:35:18.9996810Z [4735/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2025-08-26T19:35:19.0925670Z [4736/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2025-08-26T19:35:19.2353890Z [4737/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2025-08-26T19:35:19.2473960Z [4738/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2025-08-26T19:35:19.2652690Z [4739/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2025-08-26T19:35:19.2864750Z [4740/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2025-08-26T19:35:19.3437940Z [4741/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2025-08-26T19:35:19.4504460Z [4742/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2025-08-26T19:35:19.4706240Z [4743/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2025-08-26T19:35:19.4971790Z [4744/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2025-08-26T19:35:19.5873920Z [4745/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2025-08-26T19:35:19.6475910Z [4746/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2025-08-26T19:35:19.7520280Z [4747/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2025-08-26T19:35:19.9295770Z [4748/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2025-08-26T19:35:19.9720410Z [4749/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2025-08-26T19:35:20.0154140Z [4750/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2025-08-26T19:35:20.0265780Z [4751/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2025-08-26T19:35:20.0950890Z [4752/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2025-08-26T19:35:20.1154430Z [4753/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2025-08-26T19:35:20.2176490Z [4754/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2025-08-26T19:35:20.3407210Z [4755/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2025-08-26T19:35:20.4830310Z [4756/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2025-08-26T19:35:20.6128110Z [4757/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2025-08-26T19:35:20.6229470Z [4758/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2025-08-26T19:35:20.6331180Z [4759/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2025-08-26T19:35:20.6637310Z [4760/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2025-08-26T19:35:20.7152110Z [4761/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2025-08-26T19:35:20.8750660Z [4762/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2025-08-26T19:35:21.1292430Z [4763/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2025-08-26T19:35:21.1587200Z [4764/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ActivationKernel.mm.o 2025-08-26T19:35:21.2747120Z [4765/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2025-08-26T19:35:21.2813410Z [4766/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Attention.mm.o 2025-08-26T19:35:21.3198010Z [4767/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2025-08-26T19:35:21.3436710Z [4768/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Amp.mm.o 2025-08-26T19:35:21.4084460Z [4769/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2025-08-26T19:35:21.5312590Z [4770/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2025-08-26T19:35:21.7771180Z [4771/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2025-08-26T19:35:21.8052920Z [4772/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2025-08-26T19:35:21.9008040Z [4773/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2025-08-26T19:35:21.9428380Z [4774/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Col2Im.mm.o 2025-08-26T19:35:22.0350630Z [4775/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2025-08-26T19:35:22.0559870Z [4776/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2025-08-26T19:35:22.1399240Z [4777/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2025-08-26T19:35:22.1502320Z [4778/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2025-08-26T19:35:22.3134820Z [4779/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2025-08-26T19:35:22.3571240Z [4780/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2025-08-26T19:35:22.4482100Z [4781/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2025-08-26T19:35:22.5061790Z [4782/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2025-08-26T19:35:22.6410610Z [4783/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2025-08-26T19:35:22.6727670Z [4784/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2025-08-26T19:35:22.7527110Z [4785/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2025-08-26T19:35:22.8023610Z [4786/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2025-08-26T19:35:23.0078580Z [4787/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedSgdKernel.mm.o 2025-08-26T19:35:23.0338310Z [4788/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2025-08-26T19:35:23.0961320Z [4789/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2025-08-26T19:35:23.1855610Z [4790/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2025-08-26T19:35:23.3219020Z [4791/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Im2Col.mm.o 2025-08-26T19:35:23.3441480Z [4792/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2025-08-26T19:35:23.3847740Z [4793/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2025-08-26T19:35:23.4262640Z [4794/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2025-08-26T19:35:23.4263710Z /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-08-26T19:35:23.4264540Z [kernel encodeToCommandEncoder:computeEncoder 2025-08-26T19:35:23.4264770Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:35:23.4265570Z /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-08-26T19:35:23.4266440Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-08-26T19:35:23.4266700Z ^ 2025-08-26T19:35:23.4267410Z /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-08-26T19:35:23.4268200Z [kernel encodeToCommandEncoder:computeEncoder 2025-08-26T19:35:23.4268410Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:35:23.4269440Z /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-08-26T19:35:23.4270310Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-08-26T19:35:23.4270570Z ^ 2025-08-26T19:35:23.4270690Z 2 warnings generated. 2025-08-26T19:35:23.7459700Z [4795/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2025-08-26T19:35:23.7554600Z [4796/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2025-08-26T19:35:23.7586810Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/LinearAlgebra.mm:911:21: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-08-26T19:35:23.7587860Z [matmul encodeToCommandEncoder:computeEncoder 2025-08-26T19:35:23.7588140Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-26T19:35:23.7588950Z /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-08-26T19:35:23.7589970Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-08-26T19:35:23.7590240Z ^ 2025-08-26T19:35:23.7590380Z 1 warning generated. 2025-08-26T19:35:23.8198840Z [4797/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2025-08-26T19:35:23.9553500Z [4798/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2025-08-26T19:35:23.9757730Z [4799/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2025-08-26T19:35:23.9843390Z [4800/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2025-08-26T19:35:24.0139760Z [4801/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2025-08-26T19:35:24.0330950Z [4802/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2025-08-26T19:35:24.3423850Z [4803/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RMSNorm.mm.o 2025-08-26T19:35:24.4023260Z [4804/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2025-08-26T19:35:24.5318970Z [4805/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2025-08-26T19:35:24.5444670Z [4806/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2025-08-26T19:35:24.6297540Z [4807/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2025-08-26T19:35:24.7393260Z [4808/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScanKernel.mm.o 2025-08-26T19:35:24.7584460Z [4809/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2025-08-26T19:35:24.7687720Z [4810/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2025-08-26T19:35:24.9936880Z [4811/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2025-08-26T19:35:25.0707380Z [4812/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2025-08-26T19:35:25.2164450Z [4813/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2025-08-26T19:35:25.2433880Z [4814/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2025-08-26T19:35:25.2801680Z [4815/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SpecialOps.mm.o 2025-08-26T19:35:25.3883090Z [4816/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2025-08-26T19:35:25.4163220Z [4817/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2025-08-26T19:35:25.5112450Z [4818/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2025-08-26T19:35:25.6812020Z [4819/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2025-08-26T19:35:25.7896190Z [4820/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2025-08-26T19:35:25.9103380Z [4821/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2025-08-26T19:35:25.9226000Z [4822/5160] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2025-08-26T19:35:25.9286830Z [4823/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnfoldBackward.mm.o 2025-08-26T19:35:25.9439340Z [4824/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.cpp.o 2025-08-26T19:35:25.9493910Z [4825/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2025-08-26T19:35:25.9788010Z [4826/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2025-08-26T19:35:25.9826190Z [4827/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2025-08-26T19:35:26.1767550Z [4828/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/SparseMPSTensor.mm.o 2025-08-26T19:35:26.2633590Z [4829/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_mps.cpp.o 2025-08-26T19:35:26.2766270Z [4830/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.2958220Z [4831/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.3016930Z [4832/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.3301330Z [4833/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.3627010Z [4834/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.mm.o 2025-08-26T19:35:26.3936580Z [4835/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.4993600Z [4836/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.5233820Z [4837/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.5660070Z [4838/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.6913800Z [4839/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.7126200Z [4840/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.7134900Z [4841/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.7503680Z [4842/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.7742660Z [4843/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.8185840Z [4844/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.8261070Z [4845/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.8881880Z [4846/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.9828770Z [4847/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:26.9980190Z [4848/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.0899450Z [4849/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.1039330Z [4850/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.1416490Z [4851/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.1787520Z [4852/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.2130120Z [4853/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.2858180Z [4854/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.2866260Z [4855/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.3993750Z [4856/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.4126070Z [4857/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.5346610Z [4858/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.5462910Z [4859/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.5858050Z [4860/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.5877710Z [4861/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.6108400Z [4862/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.7232300Z [4863/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.7533100Z [4864/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.7798880Z [4865/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.8545920Z [4866/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_ukernel_interface.cpp.o 2025-08-26T19:35:27.8979450Z [4867/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.9041550Z [4868/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2025-08-26T19:35:27.9437170Z [4869/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2025-08-26T19:35:27.9910830Z [4870/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:28.0013960Z [4871/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_kernels.cpp.o 2025-08-26T19:35:28.0243110Z [4872/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:28.1089500Z [4873/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2025-08-26T19:35:28.1766250Z [4874/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2025-08-26T19:35:28.2331800Z [4875/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2025-08-26T19:35:28.4417640Z [4876/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2025-08-26T19:35:28.5113520Z [4877/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2025-08-26T19:35:28.6853470Z [4878/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2025-08-26T19:35:28.7074050Z [4879/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2025-08-26T19:35:28.7932070Z [4880/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2025-08-26T19:35:28.8012690Z [4881/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2025-08-26T19:35:28.8307020Z [4882/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2025-08-26T19:35:28.8868120Z [4883/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2025-08-26T19:35:28.9381200Z [4884/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2025-08-26T19:35:29.1600270Z [4885/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2025-08-26T19:35:29.3071530Z [4886/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2025-08-26T19:35:29.4398780Z [4887/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2025-08-26T19:35:29.5515660Z [4888/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2025-08-26T19:35:29.5848580Z [4889/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2025-08-26T19:35:29.6328880Z [4890/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2025-08-26T19:35:29.6483770Z [4891/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2025-08-26T19:35:29.8577090Z [4892/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2025-08-26T19:35:29.8708890Z [4893/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2025-08-26T19:35:29.9135380Z [4894/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2025-08-26T19:35:30.1833710Z [4895/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2025-08-26T19:35:30.1933550Z [4896/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2025-08-26T19:35:30.3120360Z [4897/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2025-08-26T19:35:30.3281680Z [4898/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2025-08-26T19:35:30.4144510Z [4899/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2025-08-26T19:35:30.4430990Z [4900/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2025-08-26T19:35:30.4762330Z [4901/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2025-08-26T19:35:30.5027100Z [4902/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2025-08-26T19:35:30.5704440Z [4903/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2025-08-26T19:35:30.5843240Z [4904/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2025-08-26T19:35:30.5922380Z [4905/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2025-08-26T19:35:30.6147460Z [4906/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2025-08-26T19:35:30.7046240Z [4907/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2025-08-26T19:35:30.7067920Z [4908/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2025-08-26T19:35:30.7089740Z [4909/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2025-08-26T19:35:30.7384970Z [4910/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2025-08-26T19:35:30.8721280Z [4911/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2025-08-26T19:35:30.9222310Z [4912/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2025-08-26T19:35:30.9325070Z [4913/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2025-08-26T19:35:31.0711780Z [4914/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2025-08-26T19:35:31.1031430Z [4915/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2025-08-26T19:35:31.2203380Z [4916/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2025-08-26T19:35:31.2677950Z [4917/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2025-08-26T19:35:31.2739050Z [4918/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2025-08-26T19:35:31.2763140Z [4919/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2025-08-26T19:35:31.3660230Z [4920/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2025-08-26T19:35:31.3777610Z [4921/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2025-08-26T19:35:31.4081650Z [4922/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2025-08-26T19:35:31.4481880Z [4923/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2025-08-26T19:35:31.6895100Z [4924/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_2.cpp.o 2025-08-26T19:35:31.7601160Z [4925/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_1.cpp.o 2025-08-26T19:35:31.7701430Z [4926/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_3.cpp.o 2025-08-26T19:35:31.7803660Z [4927/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_0.cpp.o 2025-08-26T19:35:31.8584270Z [4928/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional_0.cpp.o 2025-08-26T19:35:31.8771580Z [4929/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd_0.cpp.o 2025-08-26T19:35:31.8945050Z [4930/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta_0.cpp.o 2025-08-26T19:35:31.9799940Z [4931/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd_0.cpp.o 2025-08-26T19:35:32.0536900Z [4932/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor_0.cpp.o 2025-08-26T19:35:32.1948550Z [4933/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2025-08-26T19:35:32.2803520Z [4934/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU_0.cpp.o 2025-08-26T19:35:32.2840240Z [4935/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2025-08-26T19:35:32.3063720Z [4936/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2025-08-26T19:35:32.3364910Z [4937/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2025-08-26T19:35:32.3433030Z [4938/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU_0.cpp.o 2025-08-26T19:35:32.3796590Z [4939/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorHPU_0.cpp.o 2025-08-26T19:35:32.4055270Z [4940/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS_0.cpp.o 2025-08-26T19:35:32.4738220Z [4941/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta_0.cpp.o 2025-08-26T19:35:32.5872380Z [4942/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorXPU_0.cpp.o 2025-08-26T19:35:32.6495780Z [4943/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU_0.cpp.o 2025-08-26T19:35:32.7029870Z [4944/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2025-08-26T19:35:32.7635780Z [4945/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta_0.cpp.o 2025-08-26T19:35:32.7669720Z [4946/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMPS_0.cpp.o 2025-08-26T19:35:32.8254790Z [4947/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta_0.cpp.o 2025-08-26T19:35:32.8398880Z [4948/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU_0.cpp.o 2025-08-26T19:35:32.8605010Z [4949/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU_0.cpp.o 2025-08-26T19:35:32.9799200Z [4950/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrXPU_0.cpp.o 2025-08-26T19:35:33.0180830Z [4951/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMPS_0.cpp.o 2025-08-26T19:35:33.0492180Z [4952/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta_0.cpp.o 2025-08-26T19:35:33.0718660Z [4953/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2025-08-26T19:35:33.0954250Z [4954/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2025-08-26T19:35:33.1549380Z [4955/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2025-08-26T19:35:33.1764530Z [4956/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseXPU_0.cpp.o 2025-08-26T19:35:33.2389310Z [4957/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2025-08-26T19:35:33.2736870Z [4958/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor_0.cpp.o 2025-08-26T19:35:33.3289380Z [4959/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2025-08-26T19:35:33.3464290Z [4960/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2025-08-26T19:35:33.4576180Z [4961/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.5179050Z [4962/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.5380320Z [4963/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.5825260Z [4964/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.7264420Z [4965/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.7531460Z [4966/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2025-08-26T19:35:33.7554060Z [4967/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.8011490Z [4968/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2025-08-26T19:35:33.8345220Z [4969/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2025-08-26T19:35:33.8448960Z [4970/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.8816470Z [4971/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:33.9387600Z [4972/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.0578940Z [4973/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.1154920Z [4974/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.1374580Z [4975/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.1722840Z [4976/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.2095940Z [4977/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.2733840Z [4978/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.2770310Z [4979/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.2826030Z [4980/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.3129370Z [4981/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.3207080Z [4982/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.4821380Z [4983/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.5355130Z [4984/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.5939410Z [4985/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.6229640Z [4986/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.6269150Z [4987/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.7256140Z [4988/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.7682740Z [4989/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:34.9172790Z [4990/5160] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2025-08-26T19:35:35.0752080Z [4991/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2025-08-26T19:35:35.3208070Z [4992/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2025-08-26T19:35:35.3365990Z [4993/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2025-08-26T19:35:35.3617350Z [4994/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2025-08-26T19:35:35.3819630Z [4995/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2025-08-26T19:35:35.3973590Z [4996/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2025-08-26T19:35:35.5241040Z [4997/5160] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2025-08-26T19:35:35.5505210Z [4998/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2025-08-26T19:35:35.5914040Z [4999/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2025-08-26T19:35:35.8815900Z [5000/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2025-08-26T19:35:35.9515930Z [5001/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2025-08-26T19:35:35.9547340Z [5002/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2025-08-26T19:35:35.9806910Z [5003/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2025-08-26T19:35:35.9829430Z [5004/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2025-08-26T19:35:36.0434540Z [5005/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2025-08-26T19:35:36.1390420Z [5006/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2025-08-26T19:35:36.3178280Z [5007/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2025-08-26T19:35:36.4191370Z [5008/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2025-08-26T19:35:36.4752270Z [5009/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2025-08-26T19:35:36.4769850Z [5010/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2025-08-26T19:35:36.4948390Z [5011/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DeviceAccelerator.cpp.o 2025-08-26T19:35:36.5590860Z [5012/5160] Linking CXX shared library lib/libtorch_cpu.dylib 2025-08-26T19:35:36.5603400Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2025-08-26T19:35:36.5638420Z [5013/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2025-08-26T19:35:36.5836180Z [5014/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2025-08-26T19:35:36.5859250Z [5015/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2025-08-26T19:35:36.8059650Z [5016/5160] Linking CXX shared library lib/libtorch.dylib 2025-08-26T19:35:36.9365200Z [5017/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2025-08-26T19:35:36.9399440Z [5018/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2025-08-26T19:35:36.9502440Z [5019/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2025-08-26T19:35:36.9750790Z [5020/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2025-08-26T19:35:37.1273210Z [5021/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2025-08-26T19:35:37.1879370Z [5022/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2025-08-26T19:35:37.2426840Z [5023/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreterHooks.cpp.o 2025-08-26T19:35:37.2529070Z [5024/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2025-08-26T19:35:37.4820540Z [5025/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2025-08-26T19:35:37.5739520Z [5026/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2025-08-26T19:35:37.5940330Z [5027/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2025-08-26T19:35:37.7012490Z [5028/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2025-08-26T19:35:37.7282170Z [5029/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2025-08-26T19:35:37.8796070Z [5030/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2025-08-26T19:35:37.9499030Z [5031/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2025-08-26T19:35:38.0407730Z [5032/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2025-08-26T19:35:38.0537190Z [5033/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2025-08-26T19:35:38.2535220Z [5034/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2025-08-26T19:35:38.2575730Z [5035/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2025-08-26T19:35:38.2754940Z [5036/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2025-08-26T19:35:38.3004630Z [5037/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2025-08-26T19:35:38.3392480Z [5038/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2025-08-26T19:35:38.5660640Z [5039/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2025-08-26T19:35:38.7230270Z [5040/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2025-08-26T19:35:38.7629810Z [5041/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2025-08-26T19:35:38.7937070Z [5042/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2025-08-26T19:35:38.8981850Z [5043/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2025-08-26T19:35:38.9661000Z [5044/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2025-08-26T19:35:38.9841070Z [5045/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2025-08-26T19:35:38.9850630Z [5046/5160] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2025-08-26T19:35:39.0135180Z [5047/5160] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2025-08-26T19:35:39.0755430Z [5048/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2025-08-26T19:35:39.1404520Z [5049/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2025-08-26T19:35:39.1800130Z [5050/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2025-08-26T19:35:39.1922090Z [5051/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2025-08-26T19:35:39.3750210Z [5052/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame_cpp.cpp.o 2025-08-26T19:35:39.4228300Z [5053/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/framelocals_mapping.cpp.o 2025-08-26T19:35:39.4349410Z [5054/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2025-08-26T19:35:39.4992580Z [5055/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2025-08-26T19:35:39.5296430Z [5056/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2025-08-26T19:35:39.5599970Z [5057/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2025-08-26T19:35:39.5735150Z [5058/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/utils.cpp.o 2025-08-26T19:35:39.7218270Z [5059/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2025-08-26T19:35:39.7886630Z [5060/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/upgrader.cpp.o 2025-08-26T19:35:39.8072520Z [5061/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/example_upgraders.cpp.o 2025-08-26T19:35:39.9541650Z [5062/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/static_cuda_launcher.cpp.o 2025-08-26T19:35:39.9922250Z [5063/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2025-08-26T19:35:40.0044620Z [5064/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/pybind.cpp.o 2025-08-26T19:35:40.0379530Z [5065/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_package/pybind.cpp.o 2025-08-26T19:35:40.1201980Z [5066/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2025-08-26T19:35:40.1582500Z [5067/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2025-08-26T19:35:40.1817700Z [5068/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2025-08-26T19:35:40.1838640Z [5069/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2025-08-26T19:35:40.4371880Z [5070/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2025-08-26T19:35:40.5090450Z [5071/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2025-08-26T19:35:40.6449910Z [5072/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2025-08-26T19:35:40.7556850Z [5073/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2025-08-26T19:35:40.7658330Z [5074/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2025-08-26T19:35:40.7856220Z [5075/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2025-08-26T19:35:40.8451630Z [5076/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2025-08-26T19:35:40.9014560Z [5077/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2025-08-26T19:35:40.9249520Z [5078/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2025-08-26T19:35:41.0052520Z [5079/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2025-08-26T19:35:41.0542730Z [5080/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2025-08-26T19:35:41.1523810Z [5081/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2025-08-26T19:35:41.1561190Z [5082/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2025-08-26T19:35:41.1839750Z [5083/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2025-08-26T19:35:41.2931310Z [5084/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2025-08-26T19:35:41.3064670Z [5085/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2025-08-26T19:35:41.3226660Z [5086/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2025-08-26T19:35:41.3585440Z [5087/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2025-08-26T19:35:41.4279010Z [5088/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2025-08-26T19:35:41.5045970Z [5089/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2025-08-26T19:35:41.5513940Z [5090/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2025-08-26T19:35:41.6811580Z [5091/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2025-08-26T19:35:41.6969960Z [5092/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2025-08-26T19:35:41.7658250Z [5093/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2025-08-26T19:35:41.8053340Z [5094/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2025-08-26T19:35:41.8667460Z [5095/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2025-08-26T19:35:41.9719050Z [5096/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2025-08-26T19:35:42.0065260Z [5097/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2025-08-26T19:35:42.0274260Z [5098/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2025-08-26T19:35:42.1113800Z [5099/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2025-08-26T19:35:42.2084290Z [5100/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2025-08-26T19:35:42.2363930Z [5101/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2025-08-26T19:35:42.3236580Z [5102/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2025-08-26T19:35:42.3848780Z [5103/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2025-08-26T19:35:42.5412290Z [5104/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2025-08-26T19:35:42.5850590Z [5105/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2025-08-26T19:35:42.6147060Z [5106/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2025-08-26T19:35:42.6671060Z [5107/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2025-08-26T19:35:42.7106660Z [5108/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2025-08-26T19:35:42.8105770Z [5109/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2025-08-26T19:35:42.9008330Z [5110/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2025-08-26T19:35:42.9122580Z [5111/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2025-08-26T19:35:42.9845690Z [5112/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2025-08-26T19:35:43.0120550Z [5113/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2025-08-26T19:35:43.0282590Z [5114/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2025-08-26T19:35:43.0352400Z [5115/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2025-08-26T19:35:43.2908840Z [5116/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2025-08-26T19:35:43.3266650Z [5117/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2025-08-26T19:35:43.5161690Z [5118/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2025-08-26T19:35:43.5531890Z [5119/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2025-08-26T19:35:43.5576430Z [5120/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2025-08-26T19:35:43.6921940Z [5121/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2025-08-26T19:35:43.7422110Z [5122/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2025-08-26T19:35:43.7621910Z [5123/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2025-08-26T19:35:43.7646330Z [5124/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2025-08-26T19:35:43.7960590Z [5125/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2025-08-26T19:35:43.8648390Z [5126/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2025-08-26T19:35:44.0030070Z [5127/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2025-08-26T19:35:44.0545890Z [5128/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2025-08-26T19:35:44.1643330Z [5129/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2025-08-26T19:35:44.1753150Z [5130/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2025-08-26T19:35:44.1934660Z [5131/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2025-08-26T19:35:44.2966450Z [5132/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2025-08-26T19:35:44.3389480Z [5133/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2025-08-26T19:35:44.4183770Z [5134/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2025-08-26T19:35:44.4420140Z [5135/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2025-08-26T19:35:44.4504310Z [5136/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2025-08-26T19:35:44.4875750Z [5137/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2025-08-26T19:35:44.6312460Z [5138/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2025-08-26T19:35:44.6700000Z [5139/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2025-08-26T19:35:44.8289750Z [5140/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2025-08-26T19:35:44.8907340Z [5141/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2025-08-26T19:35:44.9019560Z [5142/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2025-08-26T19:35:44.9619820Z [5143/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2025-08-26T19:35:44.9701280Z [5144/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/instruction_counter/Module.cpp.o 2025-08-26T19:35:44.9824860Z [5145/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2025-08-26T19:35:45.0624210Z [5146/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2025-08-26T19:35:45.1212380Z [5147/5160] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/dim/dim.cpp.o 2025-08-26T19:35:45.1445730Z [5148/5160] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2025-08-26T19:35:45.1463930Z [5149/5160] Building C object functorch/CMakeFiles/functorch.dir/csrc/dim/dim_opcode.c.o 2025-08-26T19:35:45.1607330Z [5150/5160] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2025-08-26T19:35:45.1948490Z [5151/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2025-08-26T19:35:45.2398750Z [5152/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/nativert/python/Bindings.cpp.o 2025-08-26T19:35:45.2440170Z [5153/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2025-08-26T19:35:45.3042730Z [5154/5160] Linking CXX shared library lib/libshm.dylib 2025-08-26T19:35:45.3554330Z [5155/5160] Linking CXX executable bin/torch_shm_manager 2025-08-26T19:35:45.4539040Z [5156/5160] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2025-08-26T19:35:45.5349980Z [5157/5160] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/init_dim_only.cpp.o 2025-08-26T19:35:45.6554890Z [5158/5160] Linking CXX shared library lib/libtorch_python.dylib 2025-08-26T19:35:45.7612870Z [5159/5160] Linking CXX shared module functorch/functorch.so 2025-08-26T19:35:45.7613620Z [5159/5160] Install the project... 2025-08-26T19:35:45.7675950Z -- Install configuration: "Release" 2025-08-26T19:35:51.0785070Z running bdist_wheel 2025-08-26T19:35:55.8467350Z running build 2025-08-26T19:35:55.8467500Z running build_py 2025-08-26T19:35:55.8497940Z creating build/lib.macosx-14.0-arm64-cpython-312 2025-08-26T19:35:55.8510760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8511090Z copying torch/_storage_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8511480Z copying torch/_meta_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8548710Z copying torch/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8549720Z copying torch/library.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8571270Z copying torch/_jit_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8592450Z copying torch/_thread_safe_fork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8593050Z copying torch/_custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8600850Z copying torch/return_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8607710Z copying torch/_size_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8614870Z copying torch/_torch_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8618310Z copying torch/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8639730Z copying torch/_utils_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8640630Z copying torch/quasirandom.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8648830Z copying torch/torch_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8656040Z copying torch/_VF.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8663110Z copying torch/_streambase.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8669870Z copying torch/_tensor_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8671460Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8686710Z copying torch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8729100Z copying torch/overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8759970Z copying torch/_namedtensor_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8767630Z copying torch/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8774850Z copying torch/_linalg_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8782710Z copying torch/__config__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8789470Z copying torch/_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8813400Z copying torch/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8821420Z copying torch/hub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8836190Z copying torch/_tensor_str.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8851510Z copying torch/_sources.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8858720Z copying torch/_vmap_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8866160Z copying torch/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8895910Z copying torch/_lowrank.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8903430Z copying torch/_appdirs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8917990Z copying torch/_environment.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8924940Z copying torch/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8946180Z copying torch/_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8953430Z copying torch/_lobpcg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8968740Z copying torch/__future__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8976660Z copying torch/_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8991000Z copying torch/_python_dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.8998650Z copying torch/_classes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.9006240Z copying torch/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.9036180Z copying torch/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:55.9053370Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9053770Z copying torchgen/native_function_generation.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9055070Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9056250Z copying torchgen/gen.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9058000Z copying torchgen/local.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9059180Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9060560Z copying torchgen/code_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9061630Z copying torchgen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9062830Z copying torchgen/yaml_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9063960Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9065210Z copying torchgen/model.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9066930Z copying torchgen/gen_schema_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9074600Z copying torchgen/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9075420Z copying torchgen/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9076740Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9078020Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-08-26T19:35:55.9080430Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-08-26T19:35:55.9080770Z copying functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-08-26T19:35:55.9091100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9091550Z copying torch/_higher_order_ops/flat_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9105880Z copying torch/_higher_order_ops/foreach_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9113670Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9121390Z copying torch/_higher_order_ops/_invoke_quant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9129000Z copying torch/_higher_order_ops/invoke_subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9144300Z copying torch/_higher_order_ops/aoti_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9151710Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9166290Z copying torch/_higher_order_ops/base_hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9174430Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9181540Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9188390Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9195480Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9209160Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9219080Z copying torch/_higher_order_ops/hints_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9228510Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9229500Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9241420Z copying torch/_higher_order_ops/executorch_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9244610Z copying torch/_higher_order_ops/scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9258570Z copying torch/_higher_order_ops/run_const_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9266320Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9280220Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9301840Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9335360Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9350240Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9358280Z copying torch/_higher_order_ops/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-08-26T19:35:55.9366250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-26T19:35:55.9366630Z copying torch/_prims/debug_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-26T19:35:55.9373740Z copying torch/_prims/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-26T19:35:55.9397240Z copying torch/_prims/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-26T19:35:55.9405950Z copying torch/_prims/rng_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-26T19:35:55.9413800Z copying torch/_prims/executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-08-26T19:35:55.9421650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-26T19:35:55.9422040Z copying torch/_logging/_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-26T19:35:55.9444450Z copying torch/_logging/scribe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-26T19:35:55.9451510Z copying torch/_logging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-26T19:35:55.9458490Z copying torch/_logging/_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-26T19:35:55.9465160Z copying torch/_logging/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-08-26T19:35:55.9475280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9475770Z copying torch/_functorch/partitioners.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9507210Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9520880Z copying torch/_functorch/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9528920Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9543280Z copying torch/_functorch/python_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9550680Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9557690Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9565850Z copying torch/_functorch/deprecated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9573850Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9586890Z copying torch/_functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9594720Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9601890Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9616100Z copying torch/_functorch/predispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9623540Z copying torch/_functorch/apis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9638140Z copying torch/_functorch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9645170Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9674680Z copying torch/_functorch/compilers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9682260Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9703710Z copying torch/_functorch/vmap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9718080Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9725810Z copying torch/_functorch/make_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9742110Z copying torch/_functorch/functional_call.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-08-26T19:35:55.9752520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9752930Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9761120Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9768420Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9775710Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9790100Z copying torch/_numpy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9797830Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9804700Z copying torch/_numpy/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9811840Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9819480Z copying torch/_numpy/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9827360Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9841770Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9849310Z copying torch/_numpy/_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9856740Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9864650Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9871980Z copying torch/_numpy/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9879330Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9900490Z copying torch/_numpy/_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-08-26T19:35:55.9909080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:55.9909440Z copying torch/_export/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:55.9917210Z copying torch/_export/tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:55.9924470Z copying torch/_export/converter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:55.9946670Z copying torch/_export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:55.9954350Z copying torch/_export/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:55.9968290Z copying torch/_export/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:55.9993770Z copying torch/_export/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:56.0001430Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:56.0015970Z copying torch/_export/verifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-08-26T19:35:56.0030030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-08-26T19:35:56.0030390Z copying torch/monitor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-08-26T19:35:56.0037530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-08-26T19:35:56.0037910Z copying torch/_dispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-08-26T19:35:56.0038700Z copying torch/_dispatch/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-08-26T19:35:56.0047840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0048280Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0062420Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0092350Z copying torch/_subclasses/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0099960Z copying torch/_subclasses/_fake_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0107930Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0125520Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0156390Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0164070Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-08-26T19:35:56.0172740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-08-26T19:35:56.0173120Z copying torch/futures/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-08-26T19:35:56.0180930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-08-26T19:35:56.0181480Z copying torch/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-08-26T19:35:56.0211310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-26T19:35:56.0211700Z copying torch/_custom_op/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-26T19:35:56.0212580Z copying torch/_custom_op/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-26T19:35:56.0221160Z copying torch/_custom_op/impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-08-26T19:35:56.0236250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0236590Z copying torch/nn/common_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0244340Z copying torch/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0251030Z copying torch/nn/_reduction.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0259210Z copying torch/nn/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0266340Z copying torch/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0309800Z copying torch/nn/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0325390Z copying torch/nn/grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0332770Z copying torch/nn/parameter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:56.0341490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-26T19:35:56.0341820Z copying torch/mps/event.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-26T19:35:56.0348420Z copying torch/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-26T19:35:56.0355860Z copying torch/mps/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-08-26T19:35:56.0365870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0366240Z copying torch/onnx/_type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0373720Z copying torch/onnx/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0381100Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0388030Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0395440Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0417230Z copying torch/onnx/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0440160Z copying torch/onnx/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0447580Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0462570Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0470490Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0478640Z copying torch/onnx/_globals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0485980Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0514230Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0556690Z copying torch/onnx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0571740Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0579590Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0586410Z copying torch/onnx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0608920Z copying torch/onnx/_experimental.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0616310Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0623560Z copying torch/onnx/errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0648390Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0671030Z copying torch/onnx/operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0677630Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0683800Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0690380Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-08-26T19:35:56.0697300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-08-26T19:35:56.0697670Z copying torch/_vendor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-08-26T19:35:56.0699020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-08-26T19:35:56.0699560Z copying torch/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-08-26T19:35:56.0708720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0709170Z copying torch/distributed/_composable_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0716210Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0723030Z copying torch/distributed/rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0730160Z copying torch/distributed/run.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0744600Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0758370Z copying torch/distributed/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0765590Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0805820Z copying torch/distributed/argparse_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0813010Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0819510Z copying torch/distributed/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0826430Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0833280Z copying torch/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0840350Z copying torch/distributed/_dist2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0847300Z copying torch/distributed/collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0857910Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0871720Z copying torch/distributed/launch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0879520Z copying torch/distributed/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0886830Z copying torch/distributed/remote_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0894500Z copying torch/distributed/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0914920Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-08-26T19:35:56.0924020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.0924410Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.0931770Z copying torch/autograd/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.0946310Z copying torch/autograd/forward_ad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.0953550Z copying torch/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.0967740Z copying torch/autograd/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.0975490Z copying torch/autograd/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.0996770Z copying torch/autograd/grad_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.1004480Z copying torch/autograd/profiler_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.1018650Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.1026340Z copying torch/autograd/gradcheck.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.1053910Z copying torch/autograd/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.1076400Z copying torch/autograd/function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-08-26T19:35:56.1092140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1092490Z copying torch/fx/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1100060Z copying torch/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1114020Z copying torch/fx/operator_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1128310Z copying torch/fx/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1135560Z copying torch/fx/proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1150370Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1158080Z copying torch/fx/traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1165560Z copying torch/fx/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1188100Z copying torch/fx/tensor_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1195600Z copying torch/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1203570Z copying torch/fx/immutable_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1210540Z copying torch/fx/annotate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1218260Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1225910Z copying torch/fx/interpreter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1241360Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1263470Z copying torch/fx/node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1278120Z copying torch/fx/_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1285600Z copying torch/fx/_graph_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1300230Z copying torch/fx/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-08-26T19:35:56.1308780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-08-26T19:35:56.1309200Z copying torch/_prims_common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-08-26T19:35:56.1332100Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-08-26T19:35:56.1347430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-26T19:35:56.1347870Z copying torch/multiprocessing/queue.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-26T19:35:56.1354810Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-26T19:35:56.1362150Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-26T19:35:56.1369260Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-26T19:35:56.1377130Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-26T19:35:56.1397100Z copying torch/multiprocessing/pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-08-26T19:35:56.1406120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1406490Z copying torch/cuda/_pin_memory_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1413560Z copying torch/cuda/gds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1421850Z copying torch/cuda/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1430570Z copying torch/cuda/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1438120Z copying torch/cuda/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1453620Z copying torch/cuda/jiterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1461140Z copying torch/cuda/nccl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1467480Z copying torch/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1488160Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1496900Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1511870Z copying torch/cuda/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1519560Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1533910Z copying torch/cuda/tunable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1547410Z copying torch/cuda/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1554150Z copying torch/cuda/nvtx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1561150Z copying torch/cuda/graphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1575840Z copying torch/cuda/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1583010Z copying torch/cuda/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-08-26T19:35:56.1591140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-08-26T19:35:56.1591580Z copying torch/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-08-26T19:35:56.1600240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-26T19:35:56.1600900Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-26T19:35:56.1609120Z copying torch/_decomp/decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-26T19:35:56.1658070Z copying torch/_decomp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-26T19:35:56.1671080Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-08-26T19:35:56.1679050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-26T19:35:56.1679480Z copying torch/xpu/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-26T19:35:56.1686090Z copying torch/xpu/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-26T19:35:56.1692730Z copying torch/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-26T19:35:56.1705890Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-26T19:35:56.1713360Z copying torch/xpu/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-26T19:35:56.1720360Z copying torch/xpu/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-08-26T19:35:56.1734850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-26T19:35:56.1735210Z copying torch/masked/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-26T19:35:56.1760150Z copying torch/masked/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-26T19:35:56.1767350Z copying torch/masked/_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-08-26T19:35:56.1790740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1791110Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1817800Z copying torch/optim/rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1831710Z copying torch/optim/_adafactor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1844430Z copying torch/optim/_muon.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1851500Z copying torch/optim/sparse_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1857940Z copying torch/optim/rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1871400Z copying torch/optim/sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1884070Z copying torch/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1897540Z copying torch/optim/adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1911470Z copying torch/optim/adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1925320Z copying torch/optim/adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1933120Z copying torch/optim/swa_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1947350Z copying torch/optim/lbfgs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1960520Z copying torch/optim/radam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1984630Z copying torch/optim/adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.1998770Z copying torch/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.2035610Z copying torch/optim/nadam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.2047520Z copying torch/optim/asgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.2054190Z copying torch/optim/_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.2059960Z copying torch/optim/adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-08-26T19:35:56.2078660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2079090Z copying torch/_inductor/dtype_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2086090Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2113460Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2142850Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2157100Z copying torch/_inductor/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2164640Z copying torch/_inductor/codecache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2204440Z copying torch/_inductor/mock_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2212070Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2218600Z copying torch/_inductor/freezing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2224750Z copying torch/_inductor/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2231720Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2252560Z copying torch/_inductor/cpu_vec_isa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2259940Z copying torch/_inductor/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2291810Z copying torch/_inductor/compile_fx_ext.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2305610Z copying torch/_inductor/comms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2325670Z copying torch/_inductor/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2344490Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2368060Z copying torch/_inductor/async_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2378500Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2399420Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2407030Z copying torch/_inductor/triton_bundler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2415280Z copying torch/_inductor/aoti_eager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2422940Z copying torch/_inductor/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2452310Z copying torch/_inductor/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2499580Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2509290Z copying torch/_inductor/test_operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2516270Z copying torch/_inductor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2523540Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2551480Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2561010Z copying torch/_inductor/sizevars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2575710Z copying torch/_inductor/ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2626470Z copying torch/_inductor/analyze_preserves_zero_mask.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2633700Z copying torch/_inductor/compile_fx_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2640710Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2647880Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2655270Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2662390Z copying torch/_inductor/virtualized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2669510Z copying torch/_inductor/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2676310Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2690440Z copying torch/_inductor/standalone_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2698470Z copying torch/_inductor/await_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2705900Z copying torch/_inductor/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2712680Z copying torch/_inductor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2755750Z copying torch/_inductor/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2771950Z copying torch/_inductor/kernel_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2779670Z copying torch/_inductor/__autotune_main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2786810Z copying torch/_inductor/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2801770Z copying torch/_inductor/comm_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2809790Z copying torch/_inductor/decomposition.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2848800Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2856970Z copying torch/_inductor/shape_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2863960Z copying torch/_inductor/compile_fx_subproc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2870700Z copying torch/_inductor/scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2909280Z copying torch/_inductor/comms_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2917240Z copying torch/_inductor/remote_gemm_autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2924970Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2939850Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2948480Z copying torch/_inductor/choices.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2969000Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2977120Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.2985130Z copying torch/_inductor/compiler_bisector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3003300Z copying torch/_inductor/extern_node_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3010290Z copying torch/_inductor/bounds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3018720Z copying torch/_inductor/template_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3027290Z copying torch/_inductor/output_code.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3041680Z copying torch/_inductor/custom_graph_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3048660Z copying torch/_inductor/freezing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3055880Z copying torch/_inductor/dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3069890Z copying torch/_inductor/tiling_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3084050Z copying torch/_inductor/loop_body.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3097440Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3104550Z copying torch/_inductor/template_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:35:56.3130820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3131180Z copying torch/utils/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3154350Z copying torch/utils/_appending_byte_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3162130Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3169810Z copying torch/utils/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3177340Z copying torch/utils/_traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3185090Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3197910Z copying torch/utils/_mode_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3205160Z copying torch/utils/checkpoint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3226640Z copying torch/utils/show_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3234730Z copying torch/utils/deterministic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3241510Z copying torch/utils/file_baton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3248700Z copying torch/utils/backend_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3262640Z copying torch/utils/module_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3270270Z copying torch/utils/model_zoo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3278450Z copying torch/utils/_zip.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3285720Z copying torch/utils/collect_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3300780Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3308210Z copying torch/utils/dlpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3316250Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3331060Z copying torch/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3339120Z copying torch/utils/_functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3346200Z copying torch/utils/_import_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3353700Z copying torch/utils/_cpp_embed_headers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3354610Z copying torch/utils/_dtype_abbrs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3362160Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3376870Z copying torch/utils/_helion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3384100Z copying torch/utils/mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3391670Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3398690Z copying torch/utils/_contextlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3406330Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3428410Z copying torch/utils/_exposed_in.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3435940Z copying torch/utils/_filelock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3443530Z copying torch/utils/_thunk.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3450870Z copying torch/utils/_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3467720Z copying torch/utils/_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3475220Z copying torch/utils/flop_counter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3490440Z copying torch/utils/_typing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3497220Z copying torch/utils/_stats.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3503860Z copying torch/utils/cpp_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3533970Z copying torch/utils/_backport_slots.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3542420Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3549460Z copying torch/utils/_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3556190Z copying torch/utils/_content_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3564330Z copying torch/utils/_ordered_set.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3572260Z copying torch/utils/weak.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3579840Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:56.3588010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-08-26T19:35:56.3588390Z copying torch/contrib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-08-26T19:35:56.3589230Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-08-26T19:35:56.3598320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3598760Z copying torch/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3612750Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3620000Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3627000Z copying torch/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3633970Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3641300Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3648790Z copying torch/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3656570Z copying torch/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3664360Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3672120Z copying torch/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3680120Z copying torch/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3687210Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3694330Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3701350Z copying torch/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3708700Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3716230Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-08-26T19:35:56.3724150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-08-26T19:35:56.3724600Z copying torch/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-08-26T19:35:56.3740820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-26T19:35:56.3741210Z copying torch/testing/_creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-26T19:35:56.3749610Z copying torch/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-26T19:35:56.3757270Z copying torch/testing/_comparison.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-26T19:35:56.3780200Z copying torch/testing/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-08-26T19:35:56.3789210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3789590Z copying torch/_library/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3797830Z copying torch/_library/fake_profile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3805560Z copying torch/_library/infer_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3813800Z copying torch/_library/simple_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3821120Z copying torch/_library/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3835630Z copying torch/_library/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3843550Z copying torch/_library/fake_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3851180Z copying torch/_library/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3859130Z copying torch/_library/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3872720Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-08-26T19:35:56.3881100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-26T19:35:56.3881520Z copying torch/accelerator/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-26T19:35:56.3889070Z copying torch/accelerator/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-26T19:35:56.3896390Z copying torch/accelerator/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-08-26T19:35:56.3904610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-26T19:35:56.3904970Z copying torch/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-26T19:35:56.3920030Z copying torch/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-26T19:35:56.3934040Z copying torch/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-08-26T19:35:56.3943780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.3944250Z copying torch/jit/_ir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.3959380Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.3966950Z copying torch/jit/_decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.3974210Z copying torch/jit/_recursive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.3989690Z copying torch/jit/_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.3997500Z copying torch/jit/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4004800Z copying torch/jit/quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4012970Z copying torch/jit/_script.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4034510Z copying torch/jit/_shape_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4049240Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4056410Z copying torch/jit/_freeze.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4067740Z copying torch/jit/_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4077900Z copying torch/jit/_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4085810Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4093570Z copying torch/jit/frontend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4107900Z copying torch/jit/supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4116000Z copying torch/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4123830Z copying torch/jit/_fuser.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4130930Z copying torch/jit/_builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4138490Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4145400Z copying torch/jit/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4167020Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4174680Z copying torch/jit/_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4182720Z copying torch/jit/_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4190660Z copying torch/jit/annotations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4205030Z copying torch/jit/_await.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:56.4217150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4217520Z copying torch/_dynamo/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4233780Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4249630Z copying torch/_dynamo/callback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4257550Z copying torch/_dynamo/comptime.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4265760Z copying torch/_dynamo/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4281040Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4288860Z copying torch/_dynamo/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4296940Z copying torch/_dynamo/precompile_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4306070Z copying torch/_dynamo/graph_break_hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4313590Z copying torch/_dynamo/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4371370Z copying torch/_dynamo/guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4409920Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4419560Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4426400Z copying torch/_dynamo/graph_region_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4441380Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4455860Z copying torch/_dynamo/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4463080Z copying torch/_dynamo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4470500Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4477840Z copying torch/_dynamo/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4485680Z copying torch/_dynamo/metrics_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4493060Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4500790Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4508300Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4515050Z copying torch/_dynamo/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4522320Z copying torch/_dynamo/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4529540Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4544250Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4545820Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4567700Z copying torch/_dynamo/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4582390Z copying torch/_dynamo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4624990Z copying torch/_dynamo/test_dont_skip_tracing_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4651940Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4669440Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4687030Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4720140Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4740760Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4741930Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4749290Z copying torch/_dynamo/testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4762080Z copying torch/_dynamo/pgo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4775620Z copying torch/_dynamo/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4783480Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4785670Z copying torch/_dynamo/codegen.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4799270Z copying torch/_dynamo/source.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4812900Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4814180Z copying torch/_dynamo/code_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4822110Z copying torch/_dynamo/graph_deduplication.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4835840Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4843350Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4857410Z copying torch/_dynamo/decorators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:35:56.4872060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4872470Z copying torch/_lazy/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4879380Z copying torch/_lazy/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4885670Z copying torch/_lazy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4891900Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4898690Z copying torch/_lazy/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4905640Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4913720Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4922050Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4929450Z copying torch/_lazy/computation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4936660Z copying torch/_lazy/closure.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4943640Z copying torch/_lazy/device_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-08-26T19:35:56.4951900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-08-26T19:35:56.4952220Z copying torch/ao/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-08-26T19:35:56.4960540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-26T19:35:56.4960900Z copying torch/mtia/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-26T19:35:56.4967910Z copying torch/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-26T19:35:56.4975850Z copying torch/mtia/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-08-26T19:35:56.4983970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-26T19:35:56.4984340Z copying torch/_refs/_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-26T19:35:56.4991090Z copying torch/_refs/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-26T19:35:56.5030870Z copying torch/_refs/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-08-26T19:35:56.5047520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-08-26T19:35:56.5047870Z copying torch/fft/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-08-26T19:35:56.5069120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5069540Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5083920Z copying torch/profiler/itt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5091300Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5105820Z copying torch/profiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5113270Z copying torch/profiler/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5127400Z copying torch/profiler/python_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5134950Z copying torch/profiler/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-08-26T19:35:56.5143510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-26T19:35:56.5143920Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-26T19:35:56.5151330Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-26T19:35:56.5159360Z copying torch/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-26T19:35:56.5173960Z copying torch/sparse/semi_structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-26T19:35:56.5188700Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-26T19:35:56.5217920Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-08-26T19:35:56.5285640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-08-26T19:35:56.5286010Z copying torch/_awaits/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-08-26T19:35:56.5295290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5295660Z copying torch/export/_safeguard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5303170Z copying torch/export/exported_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5323980Z copying torch/export/unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5345050Z copying torch/export/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5352160Z copying torch/export/custom_obj.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5359180Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5365730Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5372020Z copying torch/export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5385490Z copying torch/export/_unlift.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5398270Z copying torch/export/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5427380Z copying torch/export/graph_signature.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5442190Z copying torch/export/_wrapper_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5448980Z copying torch/export/decomp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5455810Z copying torch/export/_swap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5469450Z copying torch/export/_draft_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5483670Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5507140Z copying torch/export/_tree_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-08-26T19:35:56.5514790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-08-26T19:35:56.5515140Z copying torch/nested/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-08-26T19:35:56.5532880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-26T19:35:56.5537430Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-26T19:35:56.5540270Z copying torch/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-26T19:35:56.5541010Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-08-26T19:35:56.5549480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-08-26T19:35:56.5549910Z copying torch/numa/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-08-26T19:35:56.5550520Z copying torch/numa/binding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-08-26T19:35:56.5565050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-26T19:35:56.5565430Z copying torch/compiler/_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-26T19:35:56.5572700Z copying torch/compiler/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-26T19:35:56.5580210Z copying torch/compiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-08-26T19:35:56.5594970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-08-26T19:35:56.5595330Z copying torch/signal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-08-26T19:35:56.5607130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5607580Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5628250Z copying torch/distributions/laplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5636130Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5643840Z copying torch/distributions/categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5651730Z copying torch/distributions/transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5666360Z copying torch/distributions/dirichlet.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5674250Z copying torch/distributions/log_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5680990Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5688600Z copying torch/distributions/geometric.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5695800Z copying torch/distributions/generalized_pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5703230Z copying torch/distributions/weibull.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5709890Z copying torch/distributions/studentT.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5717370Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5725350Z copying torch/distributions/normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5733110Z copying torch/distributions/poisson.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5740610Z copying torch/distributions/beta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5747540Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5754980Z copying torch/distributions/half_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5762310Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5769570Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5776980Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5784230Z copying torch/distributions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5792250Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5799910Z copying torch/distributions/independent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5807750Z copying torch/distributions/multinomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5815460Z copying torch/distributions/exponential.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5822760Z copying torch/distributions/pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5829910Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5836920Z copying torch/distributions/cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5844150Z copying torch/distributions/von_mises.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5851380Z copying torch/distributions/distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5859020Z copying torch/distributions/gumbel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5866210Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5873620Z copying torch/distributions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5881010Z copying torch/distributions/kl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5895810Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5903680Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5911250Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5918470Z copying torch/distributions/constraints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5933710Z copying torch/distributions/uniform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5940960Z copying torch/distributions/bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5948380Z copying torch/distributions/exp_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5955530Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5962430Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5969340Z copying torch/distributions/wishart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5977400Z copying torch/distributions/gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5984830Z copying torch/distributions/chi2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.5991720Z copying torch/distributions/binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-08-26T19:35:56.6001460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6001870Z copying torch/package/package_exporter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6025670Z copying torch/package/file_structure_representation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6033290Z copying torch/package/_mock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6040850Z copying torch/package/importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6048350Z copying torch/package/_stdlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6055370Z copying torch/package/_mangling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6063470Z copying torch/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6070590Z copying torch/package/package_importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6089370Z copying torch/package/_package_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6100310Z copying torch/package/glob_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6107250Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6114740Z copying torch/package/_package_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6121310Z copying torch/package/_importlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6128240Z copying torch/package/_directory_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6134750Z copying torch/package/_digraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-08-26T19:35:56.6142430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-08-26T19:35:56.6142780Z copying torch/func/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-08-26T19:35:56.6151230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-26T19:35:56.6151860Z copying torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-26T19:35:56.6160070Z copying torch/_functorch/_activation_checkpointing/knapsack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-26T19:35:56.6167260Z copying torch/_functorch/_activation_checkpointing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-26T19:35:56.6174400Z copying torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-26T19:35:56.6181490Z copying torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-08-26T19:35:56.6190350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6190880Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6204560Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6234030Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6242880Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6257480Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6279330Z copying torch/_functorch/_aot_autograd/descriptors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6294400Z copying torch/_functorch/_aot_autograd/graph_capture_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6316240Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6337900Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6352070Z copying torch/_functorch/_aot_autograd/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6359370Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6373940Z copying torch/_functorch/_aot_autograd/frontend_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6382380Z copying torch/_functorch/_aot_autograd/graph_capture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6396450Z copying torch/_functorch/_aot_autograd/graph_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6418830Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6433180Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6441010Z copying torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-08-26T19:35:56.6449330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-08-26T19:35:56.6449760Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-08-26T19:35:56.6457790Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-08-26T19:35:56.6481240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-26T19:35:56.6481740Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-26T19:35:56.6482560Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-26T19:35:56.6490630Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-08-26T19:35:56.6499630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6500110Z copying torch/_export/passes/insert_custom_op_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6507910Z copying torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6522140Z 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-08-26T19:35:56.6529780Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6537060Z copying torch/_export/passes/replace_with_hop_pass_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6544810Z copying torch/_export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6552130Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6559510Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6574110Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6581970Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6590360Z copying torch/_export/passes/replace_autocast_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6598070Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6605700Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6613330Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-08-26T19:35:56.6622290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-26T19:35:56.6622710Z copying torch/_export/db/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-26T19:35:56.6630300Z copying torch/_export/db/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-26T19:35:56.6637510Z copying torch/_export/db/gen_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-26T19:35:56.6644420Z copying torch/_export/db/case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-08-26T19:35:56.6653100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:35:56.6653530Z copying torch/_export/serde/serialize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:35:56.6685320Z copying torch/_export/serde/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:35:56.6685900Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:35:56.6699910Z copying torch/_export/serde/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:35:56.6708190Z copying torch/_export/serde/union.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:35:56.6715750Z copying torch/_export/serde/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:35:56.6727030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6727510Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6740750Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6747950Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6755460Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6769260Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6776650Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6784530Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6791970Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6799500Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6806970Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6813990Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6821560Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6828880Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.6967220Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7146930Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7155510Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7232070Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7239940Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7248070Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7255060Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7262930Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7270980Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7278020Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7285830Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7293630Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7301550Z copying torch/_export/db/examples/unsupported_operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7309080Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7317010Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7324180Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7331530Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7338980Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7346170Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7353390Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7360670Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7368650Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7375960Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7383240Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-08-26T19:35:56.7392050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-26T19:35:56.7392470Z copying torch/nn/attention/bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-26T19:35:56.7400930Z copying torch/nn/attention/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-26T19:35:56.7408970Z copying torch/nn/attention/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-26T19:35:56.7441590Z copying torch/nn/attention/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-08-26T19:35:56.7450460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7450890Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7458810Z copying torch/nn/parallel/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7467130Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7474670Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7482180Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7488930Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7496490Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7503700Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-08-26T19:35:56.7533920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-08-26T19:35:56.7534320Z copying torch/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-08-26T19:35:56.7543390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-08-26T19:35:56.7543810Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-08-26T19:35:56.7550920Z copying torch/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-08-26T19:35:56.7558650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-08-26T19:35:56.7559470Z copying torch/nn/backends/thnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-08-26T19:35:56.7566130Z copying torch/nn/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-08-26T19:35:56.7568960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7569380Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7583700Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7591930Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7599230Z copying torch/nn/utils/stateless.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7607140Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7621940Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7630020Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7638550Z copying torch/nn/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7646200Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7654330Z copying torch/nn/utils/fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7661610Z copying torch/nn/utils/prune.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7683860Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7705570Z copying torch/nn/utils/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7713190Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7719970Z copying torch/nn/utils/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7733420Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-08-26T19:35:56.7742030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-08-26T19:35:56.7742460Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-08-26T19:35:56.7750570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-08-26T19:35:56.7750990Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-08-26T19:35:56.7761280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7761680Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7769910Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7777200Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7797940Z copying torch/nn/modules/flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7805480Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7821460Z copying torch/nn/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7829140Z copying torch/nn/modules/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7836870Z copying torch/nn/modules/pooling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7857320Z copying torch/nn/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7864820Z copying torch/nn/modules/distance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7872170Z copying torch/nn/modules/container.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7886260Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7893660Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7901690Z copying torch/nn/modules/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7932260Z copying torch/nn/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7957910Z copying torch/nn/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7967790Z copying torch/nn/modules/transformer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.7989590Z copying torch/nn/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8003060Z copying torch/nn/modules/module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8048110Z copying torch/nn/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8057120Z copying torch/nn/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8077130Z copying torch/nn/modules/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8084690Z copying torch/nn/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8091850Z copying torch/nn/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8113620Z copying torch/nn/modules/padding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8128080Z copying torch/nn/modules/fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-08-26T19:35:56.8135610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-08-26T19:35:56.8136130Z copying torch/nn/attention/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-08-26T19:35:56.8143120Z copying torch/nn/attention/experimental/_paged_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-08-26T19:35:56.8150950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-08-26T19:35:56.8151370Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-08-26T19:35:56.8159160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-26T19:35:56.8159650Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-26T19:35:56.8165790Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-26T19:35:56.8171700Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-26T19:35:56.8177980Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-08-26T19:35:56.8185210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-08-26T19:35:56.8185710Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-08-26T19:35:56.8192660Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-08-26T19:35:56.8199330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-08-26T19:35:56.8199830Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-08-26T19:35:56.8206940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-08-26T19:35:56.8207420Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-08-26T19:35:56.8215300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8215800Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8222980Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8230150Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8236630Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8243540Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8250630Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8261680Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8263080Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8270150Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8277200Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8284110Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-08-26T19:35:56.8292020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-26T19:35:56.8292580Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-26T19:35:56.8299350Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-26T19:35:56.8305970Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-26T19:35:56.8312470Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-26T19:35:56.8319810Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-26T19:35:56.8327020Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-08-26T19:35:56.8334710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-26T19:35:56.8335260Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-26T19:35:56.8342170Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-26T19:35:56.8349650Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-26T19:35:56.8356960Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-08-26T19:35:56.8365550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8366120Z 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-08-26T19:35:56.8372960Z 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-08-26T19:35:56.8380230Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8387280Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8394510Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8401950Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8410000Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8418140Z 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-08-26T19:35:56.8425670Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8432400Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-08-26T19:35:56.8444720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-26T19:35:56.8445270Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-26T19:35:56.8455570Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-26T19:35:56.8462400Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-08-26T19:35:56.8469680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-08-26T19:35:56.8470120Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-08-26T19:35:56.8477320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-08-26T19:35:56.8477820Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-08-26T19:35:56.8486000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-08-26T19:35:56.8486480Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-08-26T19:35:56.8493500Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-08-26T19:35:56.8501140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-26T19:35:56.8501670Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-26T19:35:56.8508830Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-26T19:35:56.8515960Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-26T19:35:56.8523360Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-08-26T19:35:56.8531040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-08-26T19:35:56.8531680Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-08-26T19:35:56.8539850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-26T19:35:56.8540420Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-26T19:35:56.8547180Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-26T19:35:56.8553790Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-26T19:35:56.8560640Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-08-26T19:35:56.8568190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-08-26T19:35:56.8568830Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-08-26T19:35:56.8575720Z 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-08-26T19:35:56.8584290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-26T19:35:56.8584750Z copying torch/onnx/_internal/registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-26T19:35:56.8593010Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-26T19:35:56.8593740Z copying torch/onnx/_internal/_lazy_import.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-26T19:35:56.8604540Z copying torch/onnx/_internal/onnx_proto_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-26T19:35:56.8614340Z copying torch/onnx/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-08-26T19:35:56.8622400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-26T19:35:56.8622810Z copying torch/onnx/ops/_dtype_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-26T19:35:56.8630360Z copying torch/onnx/ops/_symbolic_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-26T19:35:56.8637240Z copying torch/onnx/ops/_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-26T19:35:56.8644510Z copying torch/onnx/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-08-26T19:35:56.8659050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-26T19:35:56.8659510Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-26T19:35:56.8667190Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-26T19:35:56.8667750Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-08-26T19:35:56.8677950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8678460Z copying torch/onnx/_internal/exporter/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8685520Z copying torch/onnx/_internal/exporter/_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8693840Z copying torch/onnx/_internal/exporter/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8701380Z copying torch/onnx/_internal/exporter/_errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8707980Z copying torch/onnx/_internal/exporter/_capture_strategies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8717410Z copying torch/onnx/_internal/exporter/_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8726470Z copying torch/onnx/_internal/exporter/_dispatching.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8739040Z copying torch/onnx/_internal/exporter/_isolated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8748700Z copying torch/onnx/_internal/exporter/_decomp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8760680Z copying torch/onnx/_internal/exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8761290Z copying torch/onnx/_internal/exporter/_onnx_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8774730Z copying torch/onnx/_internal/exporter/_building.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8789670Z copying torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8797280Z copying torch/onnx/_internal/exporter/_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8810530Z copying torch/onnx/_internal/exporter/_core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8831560Z copying torch/onnx/_internal/exporter/_verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8839500Z copying torch/onnx/_internal/exporter/_reporting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8846510Z copying torch/onnx/_internal/exporter/_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8853190Z copying torch/onnx/_internal/exporter/_testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8859780Z copying torch/onnx/_internal/exporter/_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8866570Z copying torch/onnx/_internal/exporter/_ir_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8873580Z copying torch/onnx/_internal/exporter/_type_casting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8880590Z copying torch/onnx/_internal/exporter/_fx_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-08-26T19:35:56.8888060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-08-26T19:35:56.8888560Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-08-26T19:35:56.8895910Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-08-26T19:35:56.8917840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-26T19:35:56.8918430Z copying torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-26T19:35:56.8926050Z copying torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-26T19:35:56.8926750Z copying torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-08-26T19:35:56.8935250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:35:56.8935840Z copying torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:35:56.8943290Z copying torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:35:56.8951120Z copying torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:35:56.8958570Z copying torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:35:56.8965600Z copying torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:35:56.8972900Z copying torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:35:56.8980860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-26T19:35:56.8981320Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-26T19:35:56.8989330Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-26T19:35:56.8997000Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-08-26T19:35:56.9005190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-26T19:35:56.9005590Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-26T19:35:56.9013910Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-26T19:35:56.9021460Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-08-26T19:35:56.9030060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-26T19:35:56.9030520Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-26T19:35:56.9037840Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-26T19:35:56.9045600Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-08-26T19:35:56.9053330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-08-26T19:35:56.9053850Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-08-26T19:35:56.9062230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-08-26T19:35:56.9062710Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-08-26T19:35:56.9070140Z copying torch/distributed/launcher/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-08-26T19:35:56.9082020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9082610Z copying torch/distributed/checkpoint/_async_process_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9090450Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9103720Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9111120Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9118630Z copying torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9135430Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9143080Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9166950Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9174130Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9181060Z copying torch/distributed/checkpoint/_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9187750Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9195400Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9202920Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9209700Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9224210Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9239040Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9246060Z copying torch/distributed/checkpoint/_hf_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9253750Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9260820Z copying torch/distributed/checkpoint/_pg_transport.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9268160Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9275930Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9283360Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9290990Z copying torch/distributed/checkpoint/_async_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9298320Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9306940Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9322520Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9329930Z copying torch/distributed/checkpoint/_state_dict_stager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9337830Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9352400Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9360530Z copying torch/distributed/checkpoint/_async_thread_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9368130Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9383420Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9390620Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9398090Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9406040Z copying torch/distributed/checkpoint/_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9413850Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9421800Z copying torch/distributed/checkpoint/hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-08-26T19:35:56.9430060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-08-26T19:35:56.9430590Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-08-26T19:35:56.9439250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-08-26T19:35:56.9439690Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-08-26T19:35:56.9447430Z copying torch/distributed/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-08-26T19:35:56.9456180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-08-26T19:35:56.9456650Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-08-26T19:35:56.9465450Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-08-26T19:35:56.9474110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-08-26T19:35:56.9474590Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-08-26T19:35:56.9483960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9484450Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9506290Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9514180Z copying torch/distributed/pipelining/_schedule_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9521580Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9534720Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9545550Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9553030Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9559560Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9579850Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9609520Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-08-26T19:35:56.9618490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-08-26T19:35:56.9618990Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-08-26T19:35:56.9626440Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-08-26T19:35:56.9636180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9636670Z copying torch/distributed/optim/_deprecation_warning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9644250Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9651940Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9658750Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9666060Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9673630Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9681030Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9688800Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9695980Z copying torch/distributed/optim/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9702960Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9710180Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9717760Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9725540Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9732440Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9739820Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9762330Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:56.9771340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-26T19:35:56.9771850Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-26T19:35:56.9779270Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-26T19:35:56.9786940Z copying torch/distributed/_composable/replicate_with_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-26T19:35:56.9794570Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-26T19:35:56.9802450Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-08-26T19:35:56.9811850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9812320Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9827180Z copying torch/distributed/_tools/ilp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9835560Z copying torch/distributed/_tools/runtime_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9850930Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9865770Z copying torch/distributed/_tools/sac_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9880350Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9887920Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9896120Z copying torch/distributed/_tools/fake_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9903940Z copying torch/distributed/_tools/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9911020Z copying torch/distributed/_tools/sac_ilp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9918670Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-08-26T19:35:56.9928510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:56.9928990Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:56.9937260Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:56.9945170Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:56.9953780Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:56.9969540Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:56.9999970Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0008330Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0037980Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0045730Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0060580Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0067860Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0082010Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0089830Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0097070Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0110080Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0120770Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0134720Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0162860Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0170350Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0185600Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0193920Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-08-26T19:35:57.0222830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0223400Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0230300Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0236780Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0243530Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0249760Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0256690Z copying torch/distributed/_shard/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0263970Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-08-26T19:35:57.0271700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-08-26T19:35:57.0272250Z copying torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-08-26T19:35:57.0285800Z copying torch/distributed/_symmetric_memory/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-08-26T19:35:57.0309050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0309530Z copying torch/distributed/tensor/_shards_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0316940Z copying torch/distributed/tensor/_redistribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0325190Z copying torch/distributed/tensor/_sharding_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0326050Z copying torch/distributed/tensor/_collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0334390Z copying torch/distributed/tensor/_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0355360Z copying torch/distributed/tensor/_dtensor_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0363070Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0370560Z copying torch/distributed/tensor/_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0384720Z copying torch/distributed/tensor/_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0397380Z copying torch/distributed/tensor/_op_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0411030Z copying torch/distributed/tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0425820Z copying torch/distributed/tensor/_tp_conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0433450Z copying torch/distributed/tensor/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0440940Z copying torch/distributed/tensor/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-08-26T19:35:57.0450140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0450590Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0458110Z copying torch/distributed/rpc/options.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0466230Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0473870Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0481210Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0489920Z copying torch/distributed/rpc/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0505540Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0512880Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0519610Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0526850Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-08-26T19:35:57.0539560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0540160Z copying torch/distributed/checkpoint/_experimental/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0549350Z copying torch/distributed/checkpoint/_experimental/barriers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0558130Z copying torch/distributed/checkpoint/_experimental/checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0567190Z copying torch/distributed/checkpoint/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0575950Z copying torch/distributed/checkpoint/_experimental/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0582690Z copying torch/distributed/checkpoint/_experimental/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0589860Z copying torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0597400Z copying torch/distributed/checkpoint/_experimental/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0604680Z copying torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0611790Z copying torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0619370Z copying torch/distributed/checkpoint/_experimental/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-08-26T19:35:57.0627020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-08-26T19:35:57.0627510Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-08-26T19:35:57.0634160Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-08-26T19:35:57.0635490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-08-26T19:35:57.0636080Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-08-26T19:35:57.0651210Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-08-26T19:35:57.0652470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-08-26T19:35:57.0653030Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-08-26T19:35:57.0653970Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-08-26T19:35:57.0661540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-08-26T19:35:57.0662180Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-08-26T19:35:57.0668990Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-08-26T19:35:57.0677940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0678510Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0685530Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0692390Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0699700Z copying torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0706600Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0722860Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0732840Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0740210Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0746910Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0754970Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0776930Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0784600Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-08-26T19:35:57.0792400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-26T19:35:57.0793060Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-26T19:35:57.0800380Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-26T19:35:57.0808030Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-26T19:35:57.0821770Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-08-26T19:35:57.0830460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-26T19:35:57.0831000Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-26T19:35:57.0838690Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-26T19:35:57.0845200Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-26T19:35:57.0852110Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-26T19:35:57.0858680Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-08-26T19:35:57.0872690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-26T19:35:57.0873200Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-26T19:35:57.0880140Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-26T19:35:57.0887150Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-26T19:35:57.0894320Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-26T19:35:57.0900770Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-26T19:35:57.0907730Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-08-26T19:35:57.0915400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-08-26T19:35:57.0915940Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-08-26T19:35:57.0917510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-26T19:35:57.0918120Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-26T19:35:57.0925700Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-26T19:35:57.0933250Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-08-26T19:35:57.0941170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-26T19:35:57.0942030Z 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-08-26T19:35:57.0949360Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-26T19:35:57.0956860Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-26T19:35:57.0965170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-26T19:35:57.0965850Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-26T19:35:57.0973140Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-26T19:35:57.0981000Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-08-26T19:35:57.0989200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-26T19:35:57.0989820Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-26T19:35:57.0997450Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-26T19:35:57.1004430Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-08-26T19:35:57.1012420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-26T19:35:57.1013030Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-26T19:35:57.1020000Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-26T19:35:57.1027300Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-26T19:35:57.1041740Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-08-26T19:35:57.1056840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-08-26T19:35:57.1057420Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-08-26T19:35:57.1064410Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-08-26T19:35:57.1072200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-08-26T19:35:57.1072820Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-08-26T19:35:57.1080190Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-08-26T19:35:57.1081490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-26T19:35:57.1082100Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-26T19:35:57.1083070Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-26T19:35:57.1090290Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-26T19:35:57.1097660Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-08-26T19:35:57.1106930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-08-26T19:35:57.1107570Z 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-08-26T19:35:57.1115750Z 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-08-26T19:35:57.1124150Z 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-08-26T19:35:57.1131770Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-08-26T19:35:57.1140050Z 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-08-26T19:35:57.1147330Z 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-08-26T19:35:57.1161750Z 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-08-26T19:35:57.1169380Z 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-08-26T19:35:57.1176590Z 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-08-26T19:35:57.1193530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-08-26T19:35:57.1194200Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-08-26T19:35:57.1202260Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-08-26T19:35:57.1210120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-08-26T19:35:57.1210740Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-08-26T19:35:57.1217670Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-08-26T19:35:57.1218750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-08-26T19:35:57.1219390Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-08-26T19:35:57.1226930Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-08-26T19:35:57.1236100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1236650Z copying torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1244270Z copying torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1251230Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1266200Z copying torch/distributed/fsdp/_fully_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1273970Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1289370Z copying torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1297910Z copying torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1312800Z copying torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1327990Z copying torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-08-26T19:35:57.1341570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-08-26T19:35:57.1342120Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-08-26T19:35:57.1350970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1351550Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1359120Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1366100Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1380520Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1388090Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1396110Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1417760Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1425180Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.1433540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-08-26T19:35:57.1434100Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-08-26T19:35:57.1441980Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-08-26T19:35:57.1450250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-26T19:35:57.1450810Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-26T19:35:57.1458510Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-26T19:35:57.1466620Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-26T19:35:57.1475130Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-08-26T19:35:57.1483290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-08-26T19:35:57.1483850Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-08-26T19:35:57.1490850Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-08-26T19:35:57.1499570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-26T19:35:57.1500180Z 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-08-26T19:35:57.1508390Z 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-08-26T19:35:57.1515730Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-26T19:35:57.1523230Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-26T19:35:57.1529960Z 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-08-26T19:35:57.1537030Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-08-26T19:35:57.1545130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-08-26T19:35:57.1545900Z 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-08-26T19:35:57.1554310Z 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-08-26T19:35:57.1563000Z 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-08-26T19:35:57.1563950Z 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-08-26T19:35:57.1579430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-26T19:35:57.1580010Z copying torch/distributed/tensor/experimental/_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-26T19:35:57.1601250Z copying torch/distributed/tensor/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-26T19:35:57.1608770Z copying torch/distributed/tensor/experimental/_tp_transform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-26T19:35:57.1623350Z copying torch/distributed/tensor/experimental/_register_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-26T19:35:57.1631090Z copying torch/distributed/tensor/experimental/_func_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-08-26T19:35:57.1640220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1640830Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1648390Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1656390Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1670910Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1678440Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1686460Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1687480Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1695150Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-08-26T19:35:57.1703640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1704160Z copying torch/distributed/tensor/_ops/_einsum_strategy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1711650Z copying torch/distributed/tensor/_ops/_embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1719150Z copying torch/distributed/tensor/_ops/_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1733510Z copying torch/distributed/tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1741460Z copying torch/distributed/tensor/_ops/_conv_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1748870Z copying torch/distributed/tensor/_ops/_pointwise_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1763590Z copying torch/distributed/tensor/_ops/_matrix_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1778860Z copying torch/distributed/tensor/_ops/_math_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1794650Z copying torch/distributed/tensor/_ops/_common_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1803510Z copying torch/distributed/tensor/_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1811030Z copying torch/distributed/tensor/_ops/_random_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1818840Z copying torch/distributed/tensor/_ops/_view_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-08-26T19:35:57.1834090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-26T19:35:57.1834600Z copying torch/distributed/tensor/debug/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-26T19:35:57.1842210Z copying torch/distributed/tensor/debug/_op_coverage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-26T19:35:57.1848870Z copying torch/distributed/tensor/debug/_visualize_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-26T19:35:57.1856150Z copying torch/distributed/tensor/debug/_comm_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-08-26T19:35:57.1873760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-08-26T19:35:57.1874340Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-08-26T19:35:57.1881780Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-08-26T19:35:57.1889540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-26T19:35:57.1890000Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-26T19:35:57.1896570Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-26T19:35:57.1903770Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-08-26T19:35:57.1913670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1914170Z copying torch/fx/experimental/validator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1928890Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1936540Z copying torch/fx/experimental/_dynamism.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1944240Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1951730Z copying torch/fx/experimental/recording.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1966530Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1974230Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1983190Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.1997850Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2005950Z copying torch/fx/experimental/_constant_symnode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2012850Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2026540Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2033830Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2049660Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2050240Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2075210Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2082010Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2089240Z copying torch/fx/experimental/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2096800Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2103880Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2154510Z copying torch/fx/experimental/_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2163120Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2170430Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-08-26T19:35:57.2210600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2211000Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2230310Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2237360Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2244320Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2255410Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2265370Z copying torch/fx/passes/split_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2278490Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2291900Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2305320Z copying torch/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2312270Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2319470Z copying torch/fx/passes/_tensorify_python_scalars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2327010Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2333830Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2340720Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2347600Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2354150Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2367590Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2381740Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-08-26T19:35:57.2390620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2391170Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2398240Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2405750Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2412980Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2420970Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2428520Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2436180Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2443010Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-08-26T19:35:57.2451970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-26T19:35:57.2452670Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-26T19:35:57.2467720Z 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-08-26T19:35:57.2482710Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-26T19:35:57.2489560Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-26T19:35:57.2490310Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-08-26T19:35:57.2498020Z 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-08-26T19:35:57.2506080Z 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-08-26T19:35:57.2513400Z 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-08-26T19:35:57.2536110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:35:57.2536830Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:35:57.2544120Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:35:57.2551750Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:35:57.2559160Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:35:57.2566690Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:35:57.2574470Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:35:57.2582730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-26T19:35:57.2583190Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-26T19:35:57.2597790Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-26T19:35:57.2605450Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-26T19:35:57.2612700Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-08-26T19:35:57.2621350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-08-26T19:35:57.2626950Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-08-26T19:35:57.2627570Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-08-26T19:35:57.2631630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-08-26T19:35:57.2632080Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-08-26T19:35:57.2633250Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-08-26T19:35:57.2642570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-26T19:35:57.2643060Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-26T19:35:57.2650850Z 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-08-26T19:35:57.2658430Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-26T19:35:57.2665510Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-26T19:35:57.2673190Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-26T19:35:57.2686890Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-08-26T19:35:57.2694820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-08-26T19:35:57.2695280Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-08-26T19:35:57.2696640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-08-26T19:35:57.2697220Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-08-26T19:35:57.2704600Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-08-26T19:35:57.2706060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-26T19:35:57.2706790Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-26T19:35:57.2714450Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-26T19:35:57.2722110Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-26T19:35:57.2729650Z copying torch/cuda/amp/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-08-26T19:35:57.2737530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-08-26T19:35:57.2738000Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-08-26T19:35:57.2746230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-08-26T19:35:57.2746660Z copying torch/backends/mha/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-08-26T19:35:57.2754640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-08-26T19:35:57.2755120Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-08-26T19:35:57.2763460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-08-26T19:35:57.2763880Z copying torch/backends/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-08-26T19:35:57.2772650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-08-26T19:35:57.2773060Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-08-26T19:35:57.2781340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-08-26T19:35:57.2781800Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-08-26T19:35:57.2789920Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-08-26T19:35:57.2791050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-08-26T19:35:57.2791630Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-08-26T19:35:57.2817170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-08-26T19:35:57.2817860Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-08-26T19:35:57.2825260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-08-26T19:35:57.2825700Z copying torch/backends/miopen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-08-26T19:35:57.2833620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-08-26T19:35:57.2834100Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-08-26T19:35:57.2841700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-08-26T19:35:57.2842140Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-08-26T19:35:57.2852450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-08-26T19:35:57.2852920Z copying torch/backends/kleidiai/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-08-26T19:35:57.2860500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-08-26T19:35:57.2860970Z copying torch/backends/cusparselt/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-08-26T19:35:57.2868030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-08-26T19:35:57.2868470Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-08-26T19:35:57.2876780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-08-26T19:35:57.2877260Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-08-26T19:35:57.2877930Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-08-26T19:35:57.2893490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-26T19:35:57.2893930Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-26T19:35:57.2894610Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-26T19:35:57.2925310Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-08-26T19:35:57.2933010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-08-26T19:35:57.2933450Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-08-26T19:35:57.2941220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-08-26T19:35:57.2941700Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-08-26T19:35:57.2953760Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-08-26T19:35:57.2965400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.2965880Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.2972800Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.2979790Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.2994660Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.3001170Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.3007890Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.3014690Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.3021830Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-08-26T19:35:57.3028930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-26T19:35:57.3029390Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-26T19:35:57.3036540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-26T19:35:57.3037070Z copying torch/_inductor/analysis/device_info.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-26T19:35:57.3044350Z copying torch/_inductor/analysis/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-26T19:35:57.3044920Z copying torch/_inductor/analysis/profile_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-08-26T19:35:57.3060050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3060520Z copying torch/_inductor/runtime/cache_dir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3067070Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3097000Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3105040Z copying torch/_inductor/runtime/halide_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3112350Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3119800Z copying torch/_inductor/runtime/triton_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3127200Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3127840Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3135840Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3149750Z copying torch/_inductor/runtime/autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3163460Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3171080Z copying torch/_inductor/runtime/static_cuda_launcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3178940Z copying torch/_inductor/runtime/benchmarking.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3186220Z copying torch/_inductor/runtime/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-08-26T19:35:57.3197630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3198140Z copying torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3212210Z copying torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3226440Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3263480Z copying torch/_inductor/codegen/mps_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3270570Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3277570Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3314650Z copying torch/_inductor/codegen/cpp_bmm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3322880Z copying torch/_inductor/codegen/mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3337260Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3344330Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3373010Z copying torch/_inductor/codegen/triton_combo_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3387390Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3402220Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3402830Z copying torch/_inductor/codegen/cpp_flex_attention_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3416680Z copying torch/_inductor/codegen/wrapper_fxir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3431070Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3452760Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3494930Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3528100Z copying torch/_inductor/codegen/block_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3535930Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3563930Z copying torch/_inductor/codegen/cpp_wrapper_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3571870Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3584910Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3605260Z copying torch/_inductor/codegen/segmented_tree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3612890Z copying torch/_inductor/codegen/cpu_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3620590Z copying torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3635760Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3644400Z copying torch/_inductor/codegen/halide.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3664620Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3671950Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3678820Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3692840Z copying torch/_inductor/codegen/subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3699940Z copying torch/_inductor/codegen/python_wrapper_mtia.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3707240Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3721200Z copying torch/_inductor/codegen/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3728410Z copying torch/_inductor/codegen/simd_kernel_features.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-08-26T19:35:57.3743290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-26T19:35:57.3743830Z copying torch/_inductor/compile_worker/tracked_process_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-26T19:35:57.3750770Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-26T19:35:57.3751370Z copying torch/_inductor/compile_worker/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-26T19:35:57.3758750Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-26T19:35:57.3766520Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-08-26T19:35:57.3774440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-26T19:35:57.3774960Z copying torch/_inductor/autoheuristic/autoheuristic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-26T19:35:57.3782410Z copying torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-26T19:35:57.3790160Z copying torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-26T19:35:57.3797690Z copying torch/_inductor/autoheuristic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-26T19:35:57.3798360Z copying torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-08-26T19:35:57.3808600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3809070Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3831930Z copying torch/_inductor/fx_passes/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3839800Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3846700Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3871090Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3878360Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3885760Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3899430Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3929910Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3960380Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3968440Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3976370Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3977030Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.3999050Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4013280Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4027350Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4041670Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4056280Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4070790Z copying torch/_inductor/fx_passes/bucketing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4085180Z copying torch/_inductor/fx_passes/b2b_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4099500Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4122050Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4140080Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4147540Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-08-26T19:35:57.4155870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4156430Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4163960Z copying torch/_inductor/kernel/mm_grouped.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4178040Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4185020Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4199150Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4207470Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4221380Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-08-26T19:35:57.4228990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-26T19:35:57.4229440Z copying torch/_inductor/package/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-26T19:35:57.4237050Z copying torch/_inductor/package/build_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-26T19:35:57.4244210Z copying torch/_inductor/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-08-26T19:35:57.4252570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-08-26T19:35:57.4253080Z copying torch/_inductor/codegen/cutedsl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-08-26T19:35:57.4261780Z copying torch/_inductor/codegen/cutedsl/cutedsl_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-08-26T19:35:57.4269470Z copying torch/_inductor/codegen/cutedsl/cutedsl_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-08-26T19:35:57.4276760Z copying torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-08-26T19:35:57.4285680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4286240Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4300660Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4308560Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4316400Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4339570Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4340220Z copying torch/_inductor/codegen/cuda/cutlass_presets.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4348410Z copying torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4355500Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4363310Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4370670Z copying torch/_inductor/codegen/cuda/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4384730Z copying torch/_inductor/codegen/cuda/cutlass_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4392240Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-08-26T19:35:57.4407800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-08-26T19:35:57.4408280Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-08-26T19:35:57.4409020Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-08-26T19:35:57.4417320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-08-26T19:35:57.4417810Z copying torch/_inductor/codegen/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-08-26T19:35:57.4418540Z copying torch/_inductor/codegen/mtia/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-08-26T19:35:57.4428040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4428560Z copying torch/_inductor/codegen/rocm/ck_tile_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4435880Z copying torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4443400Z copying torch/_inductor/codegen/rocm/rocm_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4450870Z copying torch/_inductor/codegen/rocm/rocm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4458340Z copying torch/_inductor/codegen/rocm/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4458970Z copying torch/_inductor/codegen/rocm/compile_command.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4467070Z copying torch/_inductor/codegen/rocm/rocm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4474480Z copying torch/_inductor/codegen/rocm/ck_conv_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4488950Z copying torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4496920Z copying torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4511070Z copying torch/_inductor/codegen/rocm/ck_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4518620Z copying torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4526280Z copying torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-08-26T19:35:57.4540890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-08-26T19:35:57.4541610Z 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-08-26T19:35:57.4555810Z 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-08-26T19:35:57.4556650Z 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-08-26T19:35:57.4564830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-08-26T19:35:57.4565650Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-08-26T19:35:57.4566750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:35:57.4567610Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:35:57.4574790Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:35:57.4582200Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:35:57.4589710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-08-26T19:35:57.4590560Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-08-26T19:35:57.4598150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-26T19:35:57.4599010Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-26T19:35:57.4606730Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-26T19:35:57.4616010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:35:57.4616650Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:35:57.4624240Z copying torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:35:57.4632170Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:35:57.4648870Z copying torch/_inductor/autoheuristic/artifacts/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:35:57.4649650Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:35:57.4664370Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:35:57.4675690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-26T19:35:57.4676320Z 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-08-26T19:35:57.4683590Z 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-08-26T19:35:57.4696790Z 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-08-26T19:35:57.4704090Z 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-08-26T19:35:57.4718400Z 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-08-26T19:35:57.4726270Z 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-08-26T19:35:57.4735460Z 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-08-26T19:35:57.4755170Z 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-08-26T19:35:57.4762990Z 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-08-26T19:35:57.4770260Z 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-08-26T19:35:57.4776790Z 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-08-26T19:35:57.4791320Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-08-26T19:35:57.4792070Z 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-08-26T19:35:57.4800250Z 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-08-26T19:35:57.4807960Z 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-08-26T19:35:57.4815820Z 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-08-26T19:35:57.4823620Z 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-08-26T19:35:57.4837030Z 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-08-26T19:35:57.4844790Z 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-08-26T19:35:57.4851850Z 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-08-26T19:35:57.4859600Z 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-08-26T19:35:57.4866580Z 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-08-26T19:35:57.4874330Z 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-08-26T19:35:57.4881660Z 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-08-26T19:35:57.4889470Z 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-08-26T19:35:57.4896880Z 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-08-26T19:35:57.4904890Z 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-08-26T19:35:57.4912800Z 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-08-26T19:35:57.4921300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-26T19:35:57.4921800Z copying torch/_inductor/kernel/flex/flex_decoding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-26T19:35:57.4929770Z copying torch/_inductor/kernel/flex/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-26T19:35:57.4936960Z copying torch/_inductor/kernel/flex/flex_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-26T19:35:57.4944620Z copying torch/_inductor/kernel/flex/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-26T19:35:57.4952680Z copying torch/_inductor/kernel/flex/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-08-26T19:35:57.4968430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-08-26T19:35:57.4968870Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-08-26T19:35:57.4977540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.4977980Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5000500Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5001150Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5009170Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5017720Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5025540Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5033070Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5047820Z copying torch/utils/_sympy/printers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5062520Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5070010Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-08-26T19:35:57.5077670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-08-26T19:35:57.5078150Z copying torch/utils/serialization/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-08-26T19:35:57.5085980Z copying torch/utils/serialization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-08-26T19:35:57.5093200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-08-26T19:35:57.5093640Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-08-26T19:35:57.5102610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-26T19:35:57.5103030Z copying torch/utils/hipify/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-26T19:35:57.5110270Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-26T19:35:57.5162960Z copying torch/utils/hipify/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-26T19:35:57.5171980Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-26T19:35:57.5179800Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-08-26T19:35:57.5194740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-08-26T19:35:57.5195180Z copying torch/utils/bottleneck/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-08-26T19:35:57.5195930Z copying torch/utils/bottleneck/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-08-26T19:35:57.5204580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-08-26T19:35:57.5204970Z copying torch/utils/viz/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-08-26T19:35:57.5205670Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-08-26T19:35:57.5222580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-08-26T19:35:57.5222970Z copying torch/utils/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-08-26T19:35:57.5223690Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-08-26T19:35:57.5232940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5233420Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5240530Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5247920Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5254870Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5262070Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5269050Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5283260Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5290580Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5305900Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-08-26T19:35:57.5316590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-26T19:35:57.5317040Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-26T19:35:57.5331400Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-26T19:35:57.5340110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5340700Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5348590Z copying torch/utils/data/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5355930Z copying torch/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5363030Z copying torch/utils/data/dataset.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5377840Z copying torch/utils/data/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5385390Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5393030Z copying torch/utils/data/dataloader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5416370Z copying torch/utils/data/sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-08-26T19:35:57.5425960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-08-26T19:35:57.5426470Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-08-26T19:35:57.5433940Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-08-26T19:35:57.5435600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-26T19:35:57.5436250Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-26T19:35:57.5444600Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-26T19:35:57.5452070Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-26T19:35:57.5459510Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-26T19:35:57.5460150Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-26T19:35:57.5467800Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-08-26T19:35:57.5476460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5476940Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5494280Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5494900Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5502270Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5509990Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5517220Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5531290Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5537940Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5545260Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:35:57.5553650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-26T19:35:57.5554180Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-26T19:35:57.5561430Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-26T19:35:57.5562080Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-26T19:35:57.5569200Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-26T19:35:57.5576780Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-26T19:35:57.5583820Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-08-26T19:35:57.5592460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-26T19:35:57.5593110Z 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-08-26T19:35:57.5608270Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-26T19:35:57.5609750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-26T19:35:57.5610340Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-26T19:35:57.5618550Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-26T19:35:57.5626600Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-26T19:35:57.5634640Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-26T19:35:57.5641870Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-26T19:35:57.5649300Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-08-26T19:35:57.5659450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:57.5659950Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:57.5669190Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:57.5678060Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:57.5685880Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:57.5699420Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:57.5706670Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:57.5708940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-26T19:35:57.5709510Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-26T19:35:57.5716500Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-26T19:35:57.5724070Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-26T19:35:57.5730930Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-26T19:35:57.5737820Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-08-26T19:35:57.5746230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5746780Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5747990Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5749120Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5750310Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5751430Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5759550Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5760340Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5761620Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5762760Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5770270Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5770960Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5772170Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-08-26T19:35:57.5774520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-26T19:35:57.5775060Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-26T19:35:57.5782410Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-26T19:35:57.5783040Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-26T19:35:57.5790150Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-08-26T19:35:57.5798310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-26T19:35:57.5798840Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-26T19:35:57.5799940Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-26T19:35:57.5800990Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-26T19:35:57.5808340Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-26T19:35:57.5809200Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-26T19:35:57.5816480Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-08-26T19:35:57.5819060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5819510Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5826840Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5833700Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5841120Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5848860Z copying torch/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5856040Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5863480Z copying torch/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5870630Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5878320Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5885710Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5892900Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5899940Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-08-26T19:35:57.5912210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5912670Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5920540Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5928780Z copying torch/testing/_internal/fake_config_module3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5936150Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5943750Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5959360Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5967290Z copying torch/testing/_internal/subclasses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.5975550Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6177840Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6467530Z copying torch/testing/_internal/fake_config_module2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6482540Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6550760Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6578950Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6586940Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6594460Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6623360Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6645860Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6661630Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6668580Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6676060Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6697250Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6698130Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6792720Z copying torch/testing/_internal/custom_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6804030Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6814630Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6821770Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6828670Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6857200Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6897070Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6905070Z copying torch/testing/_internal/common_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6919130Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6933100Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6940380Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6947320Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6990480Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.6999880Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7013440Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7020460Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7027490Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7041970Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7049810Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7056350Z copying torch/testing/_internal/fake_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7063330Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-08-26T19:35:57.7079110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-08-26T19:35:57.7079630Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-08-26T19:35:57.7080440Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-08-26T19:35:57.7085370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-26T19:35:57.7085880Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-26T19:35:57.7093470Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-26T19:35:57.7125680Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-26T19:35:57.7134900Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-08-26T19:35:57.7143180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-26T19:35:57.7143710Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-26T19:35:57.7144380Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-26T19:35:57.7151500Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-08-26T19:35:57.7160510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7161100Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7178430Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7187920Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7188600Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7195510Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7202320Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7255300Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7269550Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7277250Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-08-26T19:35:57.7286390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-26T19:35:57.7286900Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-26T19:35:57.7294020Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-26T19:35:57.7301300Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-26T19:35:57.7308690Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-26T19:35:57.7315650Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-26T19:35:57.7330180Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-08-26T19:35:57.7338210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-08-26T19:35:57.7338710Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-08-26T19:35:57.7345960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-26T19:35:57.7346460Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-26T19:35:57.7353150Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-26T19:35:57.7360180Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-08-26T19:35:57.7368110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7368710Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7375920Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7383080Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7397540Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7426670Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7442960Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7457390Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7472360Z copying torch/testing/_internal/opinfo/definitions/nested.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-08-26T19:35:57.7495800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-08-26T19:35:57.7496400Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-08-26T19:35:57.7497190Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-08-26T19:35:57.7511240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-08-26T19:35:57.7511870Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-08-26T19:35:57.7513140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-08-26T19:35:57.7513740Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-08-26T19:35:57.7520850Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-08-26T19:35:57.7529230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-26T19:35:57.7529850Z 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-08-26T19:35:57.7537730Z 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-08-26T19:35:57.7545000Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-26T19:35:57.7545730Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-26T19:35:57.7576920Z 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-08-26T19:35:57.7585070Z 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-08-26T19:35:57.7592540Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-26T19:35:57.7633240Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-08-26T19:35:57.7642220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-08-26T19:35:57.7642810Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-08-26T19:35:57.7643570Z 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-08-26T19:35:57.7659190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-08-26T19:35:57.7659890Z 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-08-26T19:35:57.7667210Z 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-08-26T19:35:57.7675040Z 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-08-26T19:35:57.7683750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-08-26T19:35:57.7684420Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-08-26T19:35:57.7685320Z 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-08-26T19:35:57.7692460Z 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-08-26T19:35:57.7706740Z 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-08-26T19:35:57.7715630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-08-26T19:35:57.7716270Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-08-26T19:35:57.7717190Z 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-08-26T19:35:57.7724870Z 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-08-26T19:35:57.7732620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-08-26T19:35:57.7733070Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-08-26T19:35:57.7740140Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-08-26T19:35:57.7741310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-08-26T19:35:57.7741840Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-08-26T19:35:57.7751010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7751460Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7759400Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7759940Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7774500Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7789660Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7796740Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7804200Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7812140Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7819830Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7827280Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7834820Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-08-26T19:35:57.7844110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7844560Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7872690Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7887350Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7910890Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7925630Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7933580Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7948310Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7955920Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.7985970Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8008100Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8047300Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8069420Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8100900Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8108180Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8116120Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8123860Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8153970Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8161690Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8169080Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8201560Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8221970Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8236810Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-08-26T19:35:57.8252780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-26T19:35:57.8253210Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-26T19:35:57.8267490Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-26T19:35:57.8268150Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-26T19:35:57.8283100Z copying torch/_dynamo/repro/aoti.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-08-26T19:35:57.8299230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8299680Z copying torch/_dynamo/polyfills/functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8306930Z copying torch/_dynamo/polyfills/builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8314230Z copying torch/_dynamo/polyfills/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8321460Z copying torch/_dynamo/polyfills/os.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8329200Z copying torch/_dynamo/polyfills/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8336960Z copying torch/_dynamo/polyfills/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8345080Z copying torch/_dynamo/polyfills/_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8351890Z copying torch/_dynamo/polyfills/loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8358740Z copying torch/_dynamo/polyfills/fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8366060Z copying torch/_dynamo/polyfills/struct.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8372860Z copying torch/_dynamo/polyfills/sys.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8379530Z copying torch/_dynamo/polyfills/pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8387160Z copying torch/_dynamo/polyfills/itertools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-08-26T19:35:57.8394640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-08-26T19:35:57.8395000Z copying torch/ao/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-08-26T19:35:57.8403040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-26T19:35:57.8403410Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-26T19:35:57.8418070Z copying torch/ao/ns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-26T19:35:57.8418640Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-08-26T19:35:57.8435680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8436130Z copying torch/ao/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8459960Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8468070Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8475680Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8483260Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8490750Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8505860Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8513570Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8527980Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8543340Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8550900Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8558390Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8565790Z copying torch/ao/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8581100Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8590560Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8597850Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8604930Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8612340Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-08-26T19:35:57.8627420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-08-26T19:35:57.8627900Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-08-26T19:35:57.8635000Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-08-26T19:35:57.8642300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-08-26T19:35:57.8642740Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-08-26T19:35:57.8650780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-08-26T19:35:57.8651210Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-08-26T19:35:57.8658630Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-08-26T19:35:57.8672940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-08-26T19:35:57.8673390Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-08-26T19:35:57.8681880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-08-26T19:35:57.8682320Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-08-26T19:35:57.8691760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-08-26T19:35:57.8692170Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-08-26T19:35:57.8701380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-08-26T19:35:57.8701840Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-08-26T19:35:57.8709940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-26T19:35:57.8710390Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-26T19:35:57.8718020Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-26T19:35:57.8725220Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-26T19:35:57.8733140Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-08-26T19:35:57.8741820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-08-26T19:35:57.8742340Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-08-26T19:35:57.8749980Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-08-26T19:35:57.8757860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-08-26T19:35:57.8758370Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-08-26T19:35:57.8767710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8768220Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8776250Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8783750Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8792300Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8800640Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8809130Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8816700Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8823930Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8839370Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8846900Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8853830Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-08-26T19:35:57.8861320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-08-26T19:35:57.8861840Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-08-26T19:35:57.8870210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-26T19:35:57.8870790Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-26T19:35:57.8878200Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-26T19:35:57.8885250Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-26T19:35:57.8898870Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-08-26T19:35:57.8921200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-26T19:35:57.8921780Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-26T19:35:57.8929190Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-26T19:35:57.8936750Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-26T19:35:57.8945190Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-26T19:35:57.8952890Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-26T19:35:57.8960490Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-08-26T19:35:57.8975680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-26T19:35:57.8976200Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-26T19:35:57.8984240Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-26T19:35:57.8999270Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-08-26T19:35:57.9014340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-08-26T19:35:57.9014800Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-08-26T19:35:57.9023710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-08-26T19:35:57.9024210Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-08-26T19:35:57.9032080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-08-26T19:35:57.9032590Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-08-26T19:35:57.9039610Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-08-26T19:35:57.9048090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-08-26T19:35:57.9048720Z 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-08-26T19:35:57.9063060Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-08-26T19:35:57.9070840Z 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-08-26T19:35:57.9077890Z 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-08-26T19:35:57.9085750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-08-26T19:35:57.9086330Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-08-26T19:35:57.9094910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-08-26T19:35:57.9095480Z 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-08-26T19:35:57.9103320Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-08-26T19:35:57.9110300Z 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-08-26T19:35:57.9118230Z 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-08-26T19:35:57.9126260Z 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-08-26T19:35:57.9134770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-08-26T19:35:57.9135450Z 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-08-26T19:35:57.9143570Z 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-08-26T19:35:57.9151810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-26T19:35:57.9152380Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-26T19:35:57.9160350Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-26T19:35:57.9168520Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-08-26T19:35:57.9176820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-08-26T19:35:57.9177380Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-08-26T19:35:57.9184890Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-08-26T19:35:57.9193520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9193990Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9208200Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9216360Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9229890Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9230450Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9244910Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9252730Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9260190Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9282550Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9297030Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-08-26T19:35:57.9306840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9307450Z 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-08-26T19:35:57.9322310Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9330220Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9337680Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9345670Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9352910Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9367350Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9374950Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9382560Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9395770Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9410190Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9417560Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-08-26T19:35:57.9425830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9426330Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9433990Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9442090Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9457000Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9464720Z copying torch/ao/quantization/pt2e/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9472050Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9479390Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9480100Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9494750Z copying torch/ao/quantization/pt2e/_affine_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9509250Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9523130Z copying torch/ao/quantization/pt2e/_numeric_debugger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-08-26T19:35:57.9532910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9533390Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9542180Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9551150Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9565700Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9573220Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9595460Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9603360Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9610630Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9625390Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9634410Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9656950Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9671830Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9679210Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9687690Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9695050Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9723950Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9733790Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9750470Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9758350Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-08-26T19:35:57.9767120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9767680Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9775460Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9797030Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9805110Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9811990Z copying torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9819370Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9826380Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9833480Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9841060Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-08-26T19:35:57.9855390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-08-26T19:35:57.9856000Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-08-26T19:35:57.9863470Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-08-26T19:35:57.9878060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-08-26T19:35:57.9878630Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-08-26T19:35:57.9901980Z 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-08-26T19:35:57.9916720Z 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-08-26T19:35:57.9924400Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-08-26T19:35:57.9925090Z 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-08-26T19:35:57.9941040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-26T19:35:57.9941580Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-26T19:35:57.9949160Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-26T19:35:57.9949940Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-26T19:35:57.9957800Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-26T19:35:57.9965290Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-08-26T19:35:57.9973370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-08-26T19:35:57.9973880Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-08-26T19:35:57.9975370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-26T19:35:57.9976070Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-26T19:35:57.9983940Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-26T19:35:57.9991080Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-26T19:35:57.9991770Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-08-26T19:35:58.0000210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-08-26T19:35:58.0000870Z 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-08-26T19:35:58.0008600Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-08-26T19:35:58.0015890Z 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-08-26T19:35:58.0023520Z 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-08-26T19:35:58.0032000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0032570Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0039640Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0046270Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0053350Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0060860Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0074610Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0081710Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0088740Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-08-26T19:35:58.0097420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-08-26T19:35:58.0098150Z 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-08-26T19:35:58.0112730Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-08-26T19:35:58.0113990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-08-26T19:35:58.0114610Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-08-26T19:35:58.0122250Z 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-08-26T19:35:58.0130580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-08-26T19:35:58.0131300Z 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-08-26T19:35:58.0132760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-08-26T19:35:58.0133640Z 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-08-26T19:35:58.0140910Z 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-08-26T19:35:58.0141940Z 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-08-26T19:35:58.0149590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-08-26T19:35:58.0150000Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-08-26T19:35:58.0159420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-08-26T19:35:58.0159800Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-08-26T19:35:58.0167980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-08-26T19:35:58.0168390Z copying torch/_refs/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-08-26T19:35:58.0176500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-08-26T19:35:58.0176960Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-08-26T19:35:58.0192580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-08-26T19:35:58.0193110Z copying torch/export/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-08-26T19:35:58.0208000Z copying torch/export/experimental/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-08-26T19:35:58.0216560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-08-26T19:35:58.0217020Z copying torch/export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-08-26T19:35:58.0225350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-26T19:35:58.0225810Z copying torch/export/pt2_archive/_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-26T19:35:58.0240930Z copying torch/export/pt2_archive/_package_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-26T19:35:58.0247650Z copying torch/export/pt2_archive/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-26T19:35:58.0255760Z copying torch/export/pt2_archive/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-08-26T19:35:58.0263820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-26T19:35:58.0264280Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-26T19:35:58.0279340Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-26T19:35:58.0279990Z copying torch/nested/_internal/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-26T19:35:58.0311150Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-26T19:35:58.0328460Z copying torch/nested/_internal/nested_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-08-26T19:35:58.0338810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-08-26T19:35:58.0339240Z copying torch/signal/windows/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-08-26T19:35:58.0346570Z copying torch/signal/windows/windows.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-08-26T19:35:58.0362140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-26T19:35:58.0362690Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-26T19:35:58.0369780Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-26T19:35:58.0377210Z copying torch/package/analyze/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-26T19:35:58.0384130Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-08-26T19:35:58.0398520Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-26T19:35:58.0398990Z copying torchgen/selective_build/selector.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-26T19:35:58.0400190Z copying torchgen/selective_build/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-26T19:35:58.0401300Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-08-26T19:35:58.0402990Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-26T19:35:58.0403620Z copying torchgen/static_runtime/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-26T19:35:58.0415430Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-26T19:35:58.0415970Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-26T19:35:58.0434200Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-08-26T19:35:58.0442630Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-26T19:35:58.0443110Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-26T19:35:58.0443930Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-26T19:35:58.0451530Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-08-26T19:35:58.0459980Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-26T19:35:58.0460380Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-26T19:35:58.0461400Z copying torchgen/dest/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-26T19:35:58.0462690Z copying torchgen/dest/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-26T19:35:58.0463910Z copying torchgen/dest/native_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-26T19:35:58.0465090Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-26T19:35:58.0466410Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-08-26T19:35:58.0469850Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0470240Z copying torchgen/api/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0471050Z copying torchgen/api/translate.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0472530Z copying torchgen/api/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0473580Z copying torchgen/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0474520Z copying torchgen/api/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0475720Z copying torchgen/api/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0476840Z copying torchgen/api/unboxing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0484510Z copying torchgen/api/functionalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0485490Z copying torchgen/api/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0486790Z copying torchgen/api/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0488000Z copying torchgen/api/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0489370Z copying torchgen/api/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0490520Z copying torchgen/api/meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-08-26T19:35:58.0492670Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-08-26T19:35:58.0493050Z copying torchgen/aoti/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-08-26T19:35:58.0494050Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-08-26T19:35:58.0496260Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-26T19:35:58.0496700Z copying torchgen/api/types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-26T19:35:58.0498240Z copying torchgen/api/types/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-26T19:35:58.0499720Z copying torchgen/api/types/signatures.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-26T19:35:58.0500900Z copying torchgen/api/types/types_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-08-26T19:35:58.0503360Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-26T19:35:58.0503820Z copying functorch/experimental/control_flow.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-26T19:35:58.0510850Z copying functorch/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-26T19:35:58.0517940Z copying functorch/experimental/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-08-26T19:35:58.0525480Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-08-26T19:35:58.0525920Z copying functorch/_src/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-08-26T19:35:58.0527510Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-26T19:35:58.0528150Z copying functorch/dim/magic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-26T19:35:58.0535590Z copying functorch/dim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-26T19:35:58.0542520Z copying functorch/dim/op_properties.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-26T19:35:58.0550360Z copying functorch/dim/wrap_type.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-26T19:35:58.0556990Z copying functorch/dim/tree_map.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-08-26T19:35:58.0564930Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-08-26T19:35:58.0565330Z copying functorch/compile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-08-26T19:35:58.0573160Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-26T19:35:58.0573560Z copying functorch/einops/_parsing.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-26T19:35:58.0581910Z copying functorch/einops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-26T19:35:58.0589140Z copying functorch/einops/rearrange.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-08-26T19:35:58.0597320Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-08-26T19:35:58.0597810Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-08-26T19:35:58.0605440Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-08-26T19:35:58.0605940Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-08-26T19:35:58.0613850Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-08-26T19:35:58.0614320Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-08-26T19:35:58.0622200Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-08-26T19:35:58.0622620Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-08-26T19:35:58.3587450Z copying torch/return_types.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:58.3629910Z copying torch/_VF.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:58.3636960Z copying torch/py.typed -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:35:58.3637920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-26T19:35:58.3638520Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-26T19:35:58.3983250Z copying torch/bin/torch_shm_manager -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-26T19:35:58.4007340Z copying torch/bin/protoc -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-08-26T19:35:58.4060550Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:58.4070390Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:35:58.4071720Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:35:58.4080310Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-26T19:35:58.4086540Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:35:58.4093350Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:35:58.4094840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4095470Z copying torch/_C/_profiler.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4102670Z copying torch/_C/_onnx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4109290Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4123710Z copying torch/_C/_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4131870Z copying torch/_C/_monitor.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4138200Z copying torch/_C/_itt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4144480Z copying torch/_C/_lazy.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4151030Z copying torch/_C/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4159830Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4166400Z copying torch/_C/_cpu.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4172840Z copying torch/_C/_nn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4174020Z copying torch/_C/_cusparselt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4180880Z copying torch/_C/_instruction_counter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4187000Z copying torch/_C/_jit_tree_views.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4193240Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4199310Z copying torch/_C/_functorch.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4206130Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4213180Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4224880Z copying torch/_C/_verbose.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4234580Z copying torch/_C/_aoti.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4241510Z copying torch/_C/_functions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4247810Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4253730Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4260720Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-08-26T19:35:58.4267690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-08-26T19:35:58.4268070Z copying torch/_C/_export/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-08-26T19:35:58.4275280Z copying torch/_C/_export/pt2_archive_constants.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-08-26T19:35:58.4282350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-26T19:35:58.4282830Z copying torch/_C/_dynamo/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-26T19:35:58.4290160Z copying torch/_C/_dynamo/compiled_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-26T19:35:58.4297100Z copying torch/_C/_dynamo/guards.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-26T19:35:58.4305950Z copying torch/_C/_dynamo/eval_frame.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-08-26T19:35:58.4314120Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:35:58.4329750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-08-26T19:35:58.4330170Z copying torch/_C_flatbuffer/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-08-26T19:35:58.4341700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:35:58.4342050Z copying torch/lib/libshm.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:35:58.4360960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-08-26T19:35:58.4361420Z copying torch/lib/libshm_windows/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-08-26T19:35:58.4368430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-26T19:35:58.4368820Z copying torch/lib/libshm/err.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-26T19:35:58.4369950Z copying torch/lib/libshm/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-26T19:35:58.4371120Z copying torch/lib/libshm/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-26T19:35:58.4372540Z copying torch/lib/libshm/alloc_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-08-26T19:35:58.4373920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4374520Z copying torch/include/sleef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4382200Z copying torch/include/cpuinfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4383350Z copying torch/include/nnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4384880Z copying torch/include/xnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4387330Z copying torch/include/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4388370Z copying torch/include/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4389790Z copying torch/include/qnnpack_func.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4391130Z copying torch/include/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4392810Z copying torch/include/clog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4394240Z copying torch/include/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4395910Z copying torch/include/experiments-config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4397110Z copying torch/include/fxdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:35:58.4398430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4399000Z copying torch/include/pybind11/gil_simple.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4400380Z copying torch/include/pybind11/attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4401840Z copying torch/include/pybind11/embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4403040Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4404810Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4407110Z copying torch/include/pybind11/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4408060Z copying torch/include/pybind11/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4409300Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4410630Z copying torch/include/pybind11/gil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4412020Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4413290Z copying torch/include/pybind11/subinterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4414700Z copying torch/include/pybind11/typing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4415930Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4417900Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4418790Z copying torch/include/pybind11/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4420140Z copying torch/include/pybind11/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4421490Z copying torch/include/pybind11/native_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4422850Z copying torch/include/pybind11/stl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4424210Z copying torch/include/pybind11/critical_section.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4425630Z copying torch/include/pybind11/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4426970Z copying torch/include/pybind11/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4428200Z copying torch/include/pybind11/cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4430110Z copying torch/include/pybind11/trampoline_self_life_support.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4431260Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4432640Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4433920Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4435240Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4437020Z copying torch/include/pybind11/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-08-26T19:35:58.4438320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-08-26T19:35:58.4438950Z copying torch/include/pybind11/conduit/pybind11_platform_abi_id.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-08-26T19:35:58.4440320Z copying torch/include/pybind11/conduit/pybind11_conduit_v1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-08-26T19:35:58.4441690Z copying torch/include/pybind11/conduit/wrap_include_python_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-08-26T19:35:58.4443060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-26T19:35:58.4443600Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-26T19:35:58.4445150Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-26T19:35:58.4446410Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-08-26T19:35:58.4448000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-08-26T19:35:58.4448690Z copying torch/include/pybind11/stl/filesystem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-08-26T19:35:58.4450010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4450610Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4452350Z copying torch/include/pybind11/detail/exception_translation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4453640Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4455000Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4456300Z copying torch/include/pybind11/detail/using_smart_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4457850Z copying torch/include/pybind11/detail/function_record_pyobject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4459080Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4460560Z copying torch/include/pybind11/detail/cpp_conduit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4461890Z copying torch/include/pybind11/detail/value_and_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4463310Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4464820Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4466300Z copying torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4467580Z copying torch/include/pybind11/detail/pybind11_namespace_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4468920Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4470500Z copying torch/include/pybind11/detail/native_enum_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4471920Z copying torch/include/pybind11/detail/struct_smart_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-08-26T19:35:58.4473090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4473650Z copying torch/include/fmt/ostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4475130Z copying torch/include/fmt/format-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4476640Z copying torch/include/fmt/ranges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4478040Z copying torch/include/fmt/xchar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4479200Z copying torch/include/fmt/core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4480530Z copying torch/include/fmt/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4482100Z copying torch/include/fmt/os.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4483310Z copying torch/include/fmt/color.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4484720Z copying torch/include/fmt/args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4485970Z copying torch/include/fmt/printf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4487350Z copying torch/include/fmt/compile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4488700Z copying torch/include/fmt/format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4490970Z copying torch/include/fmt/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4492050Z copying torch/include/fmt/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-08-26T19:35:58.4494220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2 2025-08-26T19:35:58.4494570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-26T19:35:58.4495040Z copying torch/include/caffe2/core/timer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-26T19:35:58.4496430Z copying torch/include/caffe2/core/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-26T19:35:58.4497580Z copying torch/include/caffe2/core/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-08-26T19:35:58.4498960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-26T19:35:58.4499580Z copying torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-26T19:35:58.4500860Z copying torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-26T19:35:58.4502180Z copying torch/include/caffe2/perfkernels/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-08-26T19:35:58.4503510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4504050Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4505420Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4506720Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4508240Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4509640Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4510870Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4512150Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-08-26T19:35:58.4513540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-26T19:35:58.4514030Z copying torch/include/caffe2/utils/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-26T19:35:58.4515380Z copying torch/include/caffe2/utils/fixed_divisor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-26T19:35:58.4516690Z copying torch/include/caffe2/utils/proto_wrap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-08-26T19:35:58.4518050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-26T19:35:58.4518640Z copying torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-26T19:35:58.4520010Z copying torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-26T19:35:58.4521360Z copying torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-26T19:35:58.4522690Z copying torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-26T19:35:58.4524000Z copying torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-26T19:35:58.4525290Z copying torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-08-26T19:35:58.4526750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google 2025-08-26T19:35:58.4527130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4527680Z copying torch/include/google/protobuf/source_context.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4529010Z copying torch/include/google/protobuf/repeated_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4530740Z copying torch/include/google/protobuf/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4532090Z copying torch/include/google/protobuf/wire_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4533520Z copying torch/include/google/protobuf/inlined_string_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4534980Z copying torch/include/google/protobuf/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4542470Z copying torch/include/google/protobuf/arenastring.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4543130Z copying torch/include/google/protobuf/map_entry_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4543760Z copying torch/include/google/protobuf/service.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4544430Z copying torch/include/google/protobuf/struct.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4545040Z copying torch/include/google/protobuf/empty.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4545670Z copying torch/include/google/protobuf/descriptor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4546300Z copying torch/include/google/protobuf/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4546930Z copying torch/include/google/protobuf/wrappers.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4548040Z copying torch/include/google/protobuf/text_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4549340Z copying torch/include/google/protobuf/has_bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4550630Z copying torch/include/google/protobuf/arena_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4551950Z copying torch/include/google/protobuf/api.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4553550Z copying torch/include/google/protobuf/metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4554800Z copying torch/include/google/protobuf/extension_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4556380Z copying torch/include/google/protobuf/reflection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4557820Z copying torch/include/google/protobuf/generated_message_table_driven.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4559030Z copying torch/include/google/protobuf/duration.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4560530Z copying torch/include/google/protobuf/generated_message_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4561770Z copying torch/include/google/protobuf/unknown_field_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4563190Z copying torch/include/google/protobuf/type.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4564900Z copying torch/include/google/protobuf/map_field_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4566120Z copying torch/include/google/protobuf/timestamp.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4567510Z copying torch/include/google/protobuf/field_mask.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4568890Z copying torch/include/google/protobuf/descriptor.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4573180Z copying torch/include/google/protobuf/map_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4574210Z copying torch/include/google/protobuf/message_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4575710Z copying torch/include/google/protobuf/generated_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4576990Z copying torch/include/google/protobuf/descriptor_database.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4578400Z copying torch/include/google/protobuf/map_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4579960Z copying torch/include/google/protobuf/generated_enum_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4581260Z copying torch/include/google/protobuf/generated_enum_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4582820Z copying torch/include/google/protobuf/any.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4584090Z copying torch/include/google/protobuf/map_type_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4585710Z copying torch/include/google/protobuf/parse_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4587280Z copying torch/include/google/protobuf/extension_set_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4588550Z copying torch/include/google/protobuf/map_field_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4589870Z copying torch/include/google/protobuf/metadata_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4591180Z copying torch/include/google/protobuf/implicit_weak_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4592670Z copying torch/include/google/protobuf/arena.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4594130Z copying torch/include/google/protobuf/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4595660Z copying torch/include/google/protobuf/reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4597070Z copying torch/include/google/protobuf/dynamic_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4598540Z copying torch/include/google/protobuf/wire_format_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-08-26T19:35:58.4600360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4601000Z copying torch/include/google/protobuf/stubs/stringpiece.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4602490Z copying torch/include/google/protobuf/stubs/stl_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4603860Z copying torch/include/google/protobuf/stubs/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4605140Z copying torch/include/google/protobuf/stubs/status.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4606560Z copying torch/include/google/protobuf/stubs/template_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4607970Z copying torch/include/google/protobuf/stubs/map_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4609440Z copying torch/include/google/protobuf/stubs/casts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4610740Z copying torch/include/google/protobuf/stubs/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4612280Z copying torch/include/google/protobuf/stubs/bytestream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4613460Z copying torch/include/google/protobuf/stubs/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4614940Z copying torch/include/google/protobuf/stubs/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4616290Z copying torch/include/google/protobuf/stubs/platform_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4617680Z copying torch/include/google/protobuf/stubs/once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4619160Z copying torch/include/google/protobuf/stubs/fastmem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4620470Z copying torch/include/google/protobuf/stubs/mutex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4621870Z copying torch/include/google/protobuf/stubs/callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4623380Z copying torch/include/google/protobuf/stubs/strutil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4625000Z copying torch/include/google/protobuf/stubs/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-08-26T19:35:58.4626310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4626950Z copying torch/include/google/protobuf/util/time_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4628290Z copying torch/include/google/protobuf/util/field_mask_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4629690Z copying torch/include/google/protobuf/util/json_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4631010Z copying torch/include/google/protobuf/util/type_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4632330Z copying torch/include/google/protobuf/util/field_comparator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4633600Z copying torch/include/google/protobuf/util/type_resolver_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4635010Z copying torch/include/google/protobuf/util/message_differencer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4636460Z copying torch/include/google/protobuf/util/delimited_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-08-26T19:35:58.4637740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4638410Z 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-08-26T19:35:58.4639930Z copying torch/include/google/protobuf/io/printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4641010Z copying torch/include/google/protobuf/io/gzip_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4642420Z 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-08-26T19:35:58.4643940Z copying torch/include/google/protobuf/io/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4645710Z copying torch/include/google/protobuf/io/tokenizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4646810Z copying torch/include/google/protobuf/io/zero_copy_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4648090Z copying torch/include/google/protobuf/io/io_win32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4649310Z copying torch/include/google/protobuf/io/coded_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-08-26T19:35:58.4651010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-26T19:35:58.4651620Z copying torch/include/google/protobuf/compiler/code_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-26T19:35:58.4652990Z copying torch/include/google/protobuf/compiler/plugin.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-26T19:35:58.4654540Z copying torch/include/google/protobuf/compiler/plugin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-26T19:35:58.4655840Z copying torch/include/google/protobuf/compiler/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-26T19:35:58.4657280Z copying torch/include/google/protobuf/compiler/command_line_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-26T19:35:58.4658680Z copying torch/include/google/protobuf/compiler/importer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-08-26T19:35:58.4659940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-08-26T19:35:58.4660630Z 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-08-26T19:35:58.4661860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-08-26T19:35:58.4662570Z 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-08-26T19:35:58.4663840Z 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-08-26T19:35:58.4665030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-08-26T19:35:58.4665680Z 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-08-26T19:35:58.4666980Z 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-08-26T19:35:58.4668250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-08-26T19:35:58.4668880Z 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-08-26T19:35:58.4670170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-08-26T19:35:58.4670870Z 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-08-26T19:35:58.4672140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-08-26T19:35:58.4672800Z 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-08-26T19:35:58.4674330Z 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-08-26T19:35:58.4675980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-08-26T19:35:58.4676630Z 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-08-26T19:35:58.4677910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-08-26T19:35:58.4678630Z 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-08-26T19:35:58.4680020Z 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-08-26T19:35:58.4681180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-26T19:35:58.4681740Z copying torch/include/torch/script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-26T19:35:58.4683170Z copying torch/include/torch/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-26T19:35:58.4685000Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-26T19:35:58.4686280Z copying torch/include/torch/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-26T19:35:58.4687640Z copying torch/include/torch/extension.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-08-26T19:35:58.4689060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly 2025-08-26T19:35:58.4689510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-08-26T19:35:58.4690180Z copying torch/include/torch/headeronly/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-08-26T19:35:58.4691660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4692320Z copying torch/include/torch/headeronly/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4693990Z copying torch/include/torch/headeronly/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4695540Z copying torch/include/torch/headeronly/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4696810Z copying torch/include/torch/headeronly/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4698100Z copying torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4699420Z copying torch/include/torch/headeronly/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4700670Z copying torch/include/torch/headeronly/util/shim_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4702530Z copying torch/include/torch/headeronly/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4703480Z copying torch/include/torch/headeronly/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4704940Z copying torch/include/torch/headeronly/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4706300Z copying torch/include/torch/headeronly/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4707700Z copying torch/include/torch/headeronly/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4709040Z copying torch/include/torch/headeronly/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4710610Z copying torch/include/torch/headeronly/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4711910Z copying torch/include/torch/headeronly/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4713270Z copying torch/include/torch/headeronly/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4714650Z copying torch/include/torch/headeronly/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4716040Z copying torch/include/torch/headeronly/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4717570Z copying torch/include/torch/headeronly/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4719220Z copying torch/include/torch/headeronly/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4720720Z copying torch/include/torch/headeronly/util/Float8_fnuz_cvt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-08-26T19:35:58.4721970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu 2025-08-26T19:35:58.4722500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-08-26T19:35:58.4723190Z copying torch/include/torch/headeronly/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-08-26T19:35:58.4724360Z copying torch/include/torch/headeronly/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-08-26T19:35:58.4725880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-26T19:35:58.4726550Z copying torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-26T19:35:58.4728150Z copying torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-26T19:35:58.4729920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-26T19:35:58.4730900Z copying torch/include/torch/headeronly/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-26T19:35:58.4732080Z copying torch/include/torch/headeronly/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-26T19:35:58.4733340Z copying torch/include/torch/headeronly/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-08-26T19:35:58.4734940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4735450Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4736920Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4738330Z copying torch/include/torch/csrc/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4739720Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4740950Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4742400Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4743870Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4745280Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4746520Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4748290Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4749470Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4751090Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4752560Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4754020Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4755250Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4756540Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4757810Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4759290Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4760860Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4762010Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4763490Z copying torch/include/torch/csrc/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4764780Z copying torch/include/torch/csrc/itt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4766510Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4767730Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4769250Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4770710Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4772150Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4773600Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4775030Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4776390Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4777680Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4778990Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-08-26T19:35:58.4780560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4781280Z copying torch/include/torch/csrc/stable/stableivalue_conversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4782540Z copying torch/include/torch/csrc/stable/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4783900Z copying torch/include/torch/csrc/stable/accelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4785310Z copying torch/include/torch/csrc/stable/tensor_struct.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4786650Z copying torch/include/torch/csrc/stable/tensor_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4788240Z copying torch/include/torch/csrc/stable/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4789780Z copying torch/include/torch/csrc/stable/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-08-26T19:35:58.4791250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-26T19:35:58.4791790Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-26T19:35:58.4793290Z copying torch/include/torch/csrc/inductor/array_ref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-26T19:35:58.4794730Z copying torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-26T19:35:58.4796180Z copying torch/include/torch/csrc/inductor/cpp_prefix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-08-26T19:35:58.4797990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-08-26T19:35:58.4798770Z 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-08-26T19:35:58.4799950Z 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-08-26T19:35:58.4801190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-08-26T19:35:58.4801850Z 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-08-26T19:35:58.4803170Z 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-08-26T19:35:58.4804660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-08-26T19:35:58.4805490Z 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-08-26T19:35:58.4807130Z 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-08-26T19:35:58.4809070Z 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-08-26T19:35:58.4810750Z 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-08-26T19:35:58.4812150Z 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-08-26T19:35:58.4813740Z 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-08-26T19:35:58.4815060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-08-26T19:35:58.4815760Z 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-08-26T19:35:58.4817120Z 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-08-26T19:35:58.4818430Z 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-08-26T19:35:58.4819750Z 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-08-26T19:35:58.4821130Z 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-08-26T19:35:58.4822450Z 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-08-26T19:35:58.4823700Z 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-08-26T19:35:58.4825110Z 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-08-26T19:35:58.4826490Z 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-08-26T19:35:58.4827820Z 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-08-26T19:35:58.4829110Z 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-08-26T19:35:58.4830570Z 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-08-26T19:35:58.4831890Z 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-08-26T19:35:58.4833370Z 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-08-26T19:35:58.4834750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-08-26T19:35:58.4835490Z 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-08-26T19:35:58.4836800Z 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-08-26T19:35:58.4838100Z 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-08-26T19:35:58.4839290Z 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-08-26T19:35:58.4840650Z 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-08-26T19:35:58.4841940Z 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-08-26T19:35:58.4843290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-08-26T19:35:58.4843950Z 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-08-26T19:35:58.4845370Z 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-08-26T19:35:58.4847190Z 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-08-26T19:35:58.4848130Z 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-08-26T19:35:58.4849440Z 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-08-26T19:35:58.4850850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-08-26T19:35:58.4851550Z 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-08-26T19:35:58.4853000Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-08-26T19:35:58.4854310Z 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-08-26T19:35:58.4855730Z 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-08-26T19:35:58.4857270Z 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-08-26T19:35:58.4858570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-26T19:35:58.4859530Z 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-08-26T19:35:58.4860640Z 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-08-26T19:35:58.4862090Z copying torch/include/torch/csrc/inductor/aoti_torch/c/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-26T19:35:58.4863410Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-26T19:35:58.4864850Z 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-08-26T19:35:58.4866280Z 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-08-26T19:35:58.4867910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-08-26T19:35:58.4868530Z 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-08-26T19:35:58.4869820Z 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-08-26T19:35:58.4871130Z 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-08-26T19:35:58.4872360Z 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-08-26T19:35:58.4873640Z 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-08-26T19:35:58.4875030Z 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-08-26T19:35:58.4876440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-08-26T19:35:58.4877180Z 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-08-26T19:35:58.4878500Z 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-08-26T19:35:58.4879810Z 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-08-26T19:35:58.4881240Z 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-08-26T19:35:58.4882520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-26T19:35:58.4883070Z copying torch/include/torch/csrc/monitor/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-26T19:35:58.4884530Z copying torch/include/torch/csrc/monitor/counters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-26T19:35:58.4885870Z copying torch/include/torch/csrc/monitor/python_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-08-26T19:35:58.4887200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-08-26T19:35:58.4887850Z copying torch/include/torch/csrc/instruction_counter/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-08-26T19:35:58.4889190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-08-26T19:35:58.4889810Z copying torch/include/torch/csrc/mps/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-08-26T19:35:58.4891110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-26T19:35:58.4891670Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-26T19:35:58.4893450Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-26T19:35:58.4894370Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-08-26T19:35:58.4895680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-08-26T19:35:58.4896210Z copying torch/include/torch/csrc/cpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-08-26T19:35:58.4897610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-08-26T19:35:58.4898110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-08-26T19:35:58.4898750Z copying torch/include/torch/csrc/distributed/autograd/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-08-26T19:35:58.4900630Z 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-08-26T19:35:58.4901590Z copying torch/include/torch/csrc/distributed/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-08-26T19:35:58.4903000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-08-26T19:35:58.4903800Z 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-08-26T19:35:58.4910110Z 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-08-26T19:35:58.4910830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-08-26T19:35:58.4911700Z 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-08-26T19:35:58.4912810Z 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-08-26T19:35:58.4913820Z 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-08-26T19:35:58.4914820Z 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-08-26T19:35:58.4915830Z 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-08-26T19:35:58.4916930Z 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-08-26T19:35:58.4917980Z 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-08-26T19:35:58.4918970Z 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-08-26T19:35:58.4919950Z 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-08-26T19:35:58.4921010Z 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-08-26T19:35:58.4922490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-08-26T19:35:58.4923250Z 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-08-26T19:35:58.4924700Z 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-08-26T19:35:58.4925970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-08-26T19:35:58.4926780Z 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-08-26T19:35:58.4928030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-26T19:35:58.4928680Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-26T19:35:58.4930150Z 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-08-26T19:35:58.4931610Z 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-08-26T19:35:58.4932860Z 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-08-26T19:35:58.4934180Z 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-08-26T19:35:58.4935840Z 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-08-26T19:35:58.4937710Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-26T19:35:58.4939250Z 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-08-26T19:35:58.4940720Z 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-08-26T19:35:58.4942500Z 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-08-26T19:35:58.4943890Z 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-08-26T19:35:58.4945390Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-26T19:35:58.4946850Z 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-08-26T19:35:58.4948260Z 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-08-26T19:35:58.4949550Z 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-08-26T19:35:58.4951140Z 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-08-26T19:35:58.4952620Z 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-08-26T19:35:58.4953950Z 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-08-26T19:35:58.4955310Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-08-26T19:35:58.4956820Z 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-08-26T19:35:58.4958060Z 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-08-26T19:35:58.4959490Z 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-08-26T19:35:58.4960800Z 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-08-26T19:35:58.4962540Z 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-08-26T19:35:58.4963600Z 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-08-26T19:35:58.4965290Z 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-08-26T19:35:58.4966580Z 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-08-26T19:35:58.4968320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-08-26T19:35:58.4969160Z 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-08-26T19:35:58.4970480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-08-26T19:35:58.4971390Z 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-08-26T19:35:58.4972890Z 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-08-26T19:35:58.4974570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-08-26T19:35:58.4975280Z 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-08-26T19:35:58.4976900Z 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-08-26T19:35:58.4978390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4979100Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4980800Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4982490Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4984010Z 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-08-26T19:35:58.4985390Z 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-08-26T19:35:58.4986840Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4988350Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4989730Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4990960Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:35:58.4992370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-08-26T19:35:58.4993110Z 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-08-26T19:35:58.4994590Z 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-08-26T19:35:58.4995920Z 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-08-26T19:35:58.4997150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-08-26T19:35:58.4997860Z 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-08-26T19:35:58.4999170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.4999830Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5001260Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5002730Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5004040Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5005460Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5006810Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5008140Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5009480Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5010750Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5012370Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5014350Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5015440Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5016890Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5018370Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5019740Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5021170Z 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-08-26T19:35:58.5022510Z 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-08-26T19:35:58.5024050Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5025300Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5026770Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5028000Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5029490Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5030850Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5032590Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5033910Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5035280Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5036600Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5037990Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5039260Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5040860Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5042070Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5043490Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5044780Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5046180Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5047560Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5049260Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5050580Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5051930Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5053540Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5054940Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5056240Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5057620Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5058940Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5060280Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5061610Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5063080Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-08-26T19:35:58.5064860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-26T19:35:58.5065520Z 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-08-26T19:35:58.5066810Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-26T19:35:58.5068430Z 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-08-26T19:35:58.5069730Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-26T19:35:58.5071180Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-08-26T19:35:58.5075340Z 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-08-26T19:35:58.5076420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-08-26T19:35:58.5077150Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-08-26T19:35:58.5078510Z 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-08-26T19:35:58.5079960Z 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-08-26T19:35:58.5081230Z 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-08-26T19:35:58.5082710Z 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-08-26T19:35:58.5084090Z 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-08-26T19:35:58.5085400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-26T19:35:58.5086300Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-26T19:35:58.5087390Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-26T19:35:58.5088770Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-26T19:35:58.5090110Z 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-08-26T19:35:58.5091400Z 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-08-26T19:35:58.5092650Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-08-26T19:35:58.5094040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-08-26T19:35:58.5094610Z copying torch/include/torch/csrc/fx/node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-08-26T19:35:58.5095960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-08-26T19:35:58.5096710Z copying torch/include/torch/csrc/multiprocessing/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-08-26T19:35:58.5097920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5098530Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5099930Z copying torch/include/torch/csrc/cuda/GdsFile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5101170Z copying torch/include/torch/csrc/cuda/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5102520Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5103830Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5105240Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5106530Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5107930Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5109260Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5110580Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5111870Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5113250Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5114640Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-08-26T19:35:58.5116100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-26T19:35:58.5116690Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-26T19:35:58.5118020Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-26T19:35:58.5119260Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-08-26T19:35:58.5120630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5121240Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5122550Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5123870Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5125160Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5126480Z copying torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5127820Z copying torch/include/torch/csrc/dynamo/cpython_includes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5129000Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5130510Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5132110Z copying torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5133790Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5135020Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5136210Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5137440Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5138870Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-08-26T19:35:58.5140420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5140950Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5142110Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5143360Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5144680Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5146110Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5147260Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5148580Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5149900Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5151220Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5152520Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5153910Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5155200Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5156680Z 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-08-26T19:35:58.5157920Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5159340Z copying torch/include/torch/csrc/utils/generated_serialization_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5161120Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5162370Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5163680Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5165050Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5166440Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5167630Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5168980Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5170490Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5171750Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5173050Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5174380Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5175670Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5176990Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5178250Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5179470Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5180780Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5182110Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5183440Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5184740Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5186060Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5187360Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5188720Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5190020Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5191440Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5193020Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5194520Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5195870Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5197150Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5198480Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5199770Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-08-26T19:35:58.5201390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-26T19:35:58.5202020Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-26T19:35:58.5203420Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-26T19:35:58.5204750Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-08-26T19:35:58.5206090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-26T19:35:58.5206750Z 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-08-26T19:35:58.5208120Z 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-08-26T19:35:58.5209790Z 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-08-26T19:35:58.5211250Z 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-08-26T19:35:58.5212550Z 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-08-26T19:35:58.5213890Z 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-08-26T19:35:58.5215120Z 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-08-26T19:35:58.5216930Z 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-08-26T19:35:58.5218340Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-26T19:35:58.5219610Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-26T19:35:58.5220980Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-26T19:35:58.5222420Z 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-08-26T19:35:58.5223950Z 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-08-26T19:35:58.5225440Z 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-08-26T19:35:58.5226860Z 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-08-26T19:35:58.5228260Z 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-08-26T19:35:58.5229800Z 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-08-26T19:35:58.5231310Z 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-08-26T19:35:58.5233000Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-26T19:35:58.5234410Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-26T19:35:58.5235870Z 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-08-26T19:35:58.5237060Z 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-08-26T19:35:58.5238470Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-08-26T19:35:58.5240160Z 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-08-26T19:35:58.5241450Z 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-08-26T19:35:58.5242770Z 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-08-26T19:35:58.5244130Z 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-08-26T19:35:58.5245670Z 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-08-26T19:35:58.5247160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-08-26T19:35:58.5247760Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-08-26T19:35:58.5249300Z 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-08-26T19:35:58.5250660Z 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-08-26T19:35:58.5252050Z 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-08-26T19:35:58.5253470Z 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-08-26T19:35:58.5255030Z 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-08-26T19:35:58.5256570Z 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-08-26T19:35:58.5257900Z 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-08-26T19:35:58.5259260Z 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-08-26T19:35:58.5260710Z 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-08-26T19:35:58.5262160Z 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-08-26T19:35:58.5263620Z 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-08-26T19:35:58.5265130Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-08-26T19:35:58.5266660Z 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-08-26T19:35:58.5268120Z 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-08-26T19:35:58.5269630Z 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-08-26T19:35:58.5271110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5271760Z 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-08-26T19:35:58.5273330Z 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-08-26T19:35:58.5274670Z 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-08-26T19:35:58.5276110Z 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-08-26T19:35:58.5277500Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5279350Z 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-08-26T19:35:58.5280430Z 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-08-26T19:35:58.5281910Z 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-08-26T19:35:58.5283240Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5285020Z 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-08-26T19:35:58.5285970Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5291940Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5292690Z 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-08-26T19:35:58.5293430Z 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-08-26T19:35:58.5294160Z 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-08-26T19:35:58.5294930Z 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-08-26T19:35:58.5295690Z 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-08-26T19:35:58.5296600Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5297890Z 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-08-26T19:35:58.5299320Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5300940Z 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-08-26T19:35:58.5302160Z 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-08-26T19:35:58.5304190Z 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-08-26T19:35:58.5304960Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5306620Z 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-08-26T19:35:58.5307980Z 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-08-26T19:35:58.5309650Z 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-08-26T19:35:58.5310870Z 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-08-26T19:35:58.5312210Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5313510Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5315260Z 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-08-26T19:35:58.5316510Z 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-08-26T19:35:58.5317850Z 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-08-26T19:35:58.5319210Z 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-08-26T19:35:58.5320540Z 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-08-26T19:35:58.5322000Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5323730Z 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-08-26T19:35:58.5325290Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5326580Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5327870Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5329220Z 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-08-26T19:35:58.5330540Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:35:58.5331990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-08-26T19:35:58.5332680Z 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-08-26T19:35:58.5334050Z 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-08-26T19:35:58.5335440Z 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-08-26T19:35:58.5336680Z 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-08-26T19:35:58.5338060Z 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-08-26T19:35:58.5339380Z 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-08-26T19:35:58.5341140Z 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-08-26T19:35:58.5342040Z 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-08-26T19:35:58.5343370Z 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-08-26T19:35:58.5344630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-26T19:35:58.5345260Z 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-08-26T19:35:58.5346560Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-26T19:35:58.5347940Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-26T19:35:58.5349610Z 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-08-26T19:35:58.5351000Z 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-08-26T19:35:58.5352390Z 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-08-26T19:35:58.5353610Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-26T19:35:58.5355420Z 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-08-26T19:35:58.5356320Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-26T19:35:58.5357720Z 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-08-26T19:35:58.5358980Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-08-26T19:35:58.5360380Z 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-08-26T19:35:58.5361680Z 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-08-26T19:35:58.5363410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-08-26T19:35:58.5363950Z copying torch/include/torch/csrc/jit/cuda/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-08-26T19:35:58.5365030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-26T19:35:58.5365720Z 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-08-26T19:35:58.5367190Z 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-08-26T19:35:58.5368440Z 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-08-26T19:35:58.5369800Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-26T19:35:58.5371160Z 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-08-26T19:35:58.5372590Z 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-08-26T19:35:58.5373880Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-26T19:35:58.5375320Z 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-08-26T19:35:58.5376600Z 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-08-26T19:35:58.5378110Z 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-08-26T19:35:58.5379440Z 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-08-26T19:35:58.5380890Z 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-08-26T19:35:58.5382200Z 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-08-26T19:35:58.5383500Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-26T19:35:58.5384890Z 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-08-26T19:35:58.5386320Z 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-08-26T19:35:58.5387620Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-26T19:35:58.5389030Z 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-08-26T19:35:58.5390270Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-26T19:35:58.5392230Z 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-08-26T19:35:58.5393090Z 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-08-26T19:35:58.5394970Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-08-26T19:35:58.5396230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-08-26T19:35:58.5396910Z 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-08-26T19:35:58.5398440Z 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-08-26T19:35:58.5400080Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-08-26T19:35:58.5401040Z 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-08-26T19:35:58.5402480Z 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-08-26T19:35:58.5403830Z 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-08-26T19:35:58.5405190Z 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-08-26T19:35:58.5406470Z 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-08-26T19:35:58.5407920Z 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-08-26T19:35:58.5409210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml 2025-08-26T19:35:58.5409750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-08-26T19:35:58.5410430Z 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-08-26T19:35:58.5411680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-08-26T19:35:58.5412400Z 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-08-26T19:35:58.5413760Z 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-08-26T19:35:58.5415180Z 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-08-26T19:35:58.5416520Z 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-08-26T19:35:58.5417850Z 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-08-26T19:35:58.5419170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-08-26T19:35:58.5419850Z 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-08-26T19:35:58.5421250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-08-26T19:35:58.5422040Z 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-08-26T19:35:58.5423200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-08-26T19:35:58.5423930Z 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-08-26T19:35:58.5425200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-08-26T19:35:58.5426270Z 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-08-26T19:35:58.5427080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-26T19:35:58.5427770Z 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-08-26T19:35:58.5429100Z 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-08-26T19:35:58.5430390Z 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-08-26T19:35:58.5431690Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-26T19:35:58.5433130Z 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-08-26T19:35:58.5434420Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-26T19:35:58.5435850Z 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-08-26T19:35:58.5437400Z 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-08-26T19:35:58.5438670Z 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-08-26T19:35:58.5440150Z 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-08-26T19:35:58.5441500Z 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-08-26T19:35:58.5442860Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-26T19:35:58.5444110Z 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-08-26T19:35:58.5445590Z 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-08-26T19:35:58.5446900Z 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-08-26T19:35:58.5448480Z 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-08-26T19:35:58.5449680Z 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-08-26T19:35:58.5451070Z 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-08-26T19:35:58.5452450Z 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-08-26T19:35:58.5453780Z 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-08-26T19:35:58.5455070Z 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-08-26T19:35:58.5456520Z 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-08-26T19:35:58.5457930Z 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-08-26T19:35:58.5459260Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-26T19:35:58.5460680Z 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-08-26T19:35:58.5461970Z 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-08-26T19:35:58.5463440Z 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-08-26T19:35:58.5464750Z 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-08-26T19:35:58.5466110Z 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-08-26T19:35:58.5467420Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-08-26T19:35:58.5468790Z 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-08-26T19:35:58.5470240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-08-26T19:35:58.5470770Z 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-08-26T19:35:58.5472170Z 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-08-26T19:35:58.5473570Z 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-08-26T19:35:58.5475030Z 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-08-26T19:35:58.5476500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-08-26T19:35:58.5477130Z 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-08-26T19:35:58.5478610Z 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-08-26T19:35:58.5479850Z 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-08-26T19:35:58.5481090Z 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-08-26T19:35:58.5482400Z 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-08-26T19:35:58.5483660Z 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-08-26T19:35:58.5484980Z 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-08-26T19:35:58.5486280Z 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-08-26T19:35:58.5487910Z 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-08-26T19:35:58.5489100Z 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-08-26T19:35:58.5490350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-26T19:35:58.5490990Z 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-08-26T19:35:58.5492330Z 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-08-26T19:35:58.5493650Z 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-08-26T19:35:58.5494990Z 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-08-26T19:35:58.5496250Z 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-08-26T19:35:58.5497610Z 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-08-26T19:35:58.5499080Z 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-08-26T19:35:58.5500320Z 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-08-26T19:35:58.5501800Z 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-08-26T19:35:58.5502930Z 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-08-26T19:35:58.5504240Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-26T19:35:58.5505550Z 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-08-26T19:35:58.5506960Z 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-08-26T19:35:58.5508330Z 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-08-26T19:35:58.5509570Z 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-08-26T19:35:58.5510950Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-26T19:35:58.5512240Z 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-08-26T19:35:58.5513580Z 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-08-26T19:35:58.5514920Z 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-08-26T19:35:58.5516220Z 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-08-26T19:35:58.5517580Z 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-08-26T19:35:58.5518880Z 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-08-26T19:35:58.5520150Z 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-08-26T19:35:58.5521630Z 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-08-26T19:35:58.5522900Z 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-08-26T19:35:58.5524150Z 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-08-26T19:35:58.5525420Z 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-08-26T19:35:58.5526850Z 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-08-26T19:35:58.5528270Z 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-08-26T19:35:58.5529500Z 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-08-26T19:35:58.5530850Z 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-08-26T19:35:58.5532360Z 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-08-26T19:35:58.5533560Z 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-08-26T19:35:58.5534880Z 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-08-26T19:35:58.5536150Z 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-08-26T19:35:58.5537470Z 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-08-26T19:35:58.5538730Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-26T19:35:58.5540250Z 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-08-26T19:35:58.5541430Z 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-08-26T19:35:58.5542750Z 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-08-26T19:35:58.5544110Z 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-08-26T19:35:58.5545510Z 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-08-26T19:35:58.5546920Z 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-08-26T19:35:58.5548380Z 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-08-26T19:35:58.5550120Z 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-08-26T19:35:58.5551790Z 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-08-26T19:35:58.5553010Z 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-08-26T19:35:58.5554480Z 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-08-26T19:35:58.5555840Z 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-08-26T19:35:58.5557340Z 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-08-26T19:35:58.5558690Z 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-08-26T19:35:58.5559990Z 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-08-26T19:35:58.5561280Z 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-08-26T19:35:58.5562820Z 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-08-26T19:35:58.5564090Z 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-08-26T19:35:58.5565620Z 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-08-26T19:35:58.5566810Z 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-08-26T19:35:58.5568200Z 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-08-26T19:35:58.5569510Z 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-08-26T19:35:58.5571190Z 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-08-26T19:35:58.5572860Z 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-08-26T19:35:58.5574620Z 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-08-26T19:35:58.5575970Z 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-08-26T19:35:58.5577420Z 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-08-26T19:35:58.5578740Z 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-08-26T19:35:58.5580240Z 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-08-26T19:35:58.5581590Z 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-08-26T19:35:58.5583110Z 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-08-26T19:35:58.5584460Z 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-08-26T19:35:58.5585810Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-26T19:35:58.5587290Z 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-08-26T19:35:58.5588720Z 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-08-26T19:35:58.5590030Z 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-08-26T19:35:58.5591360Z 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-08-26T19:35:58.5592760Z 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-08-26T19:35:58.5594280Z 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-08-26T19:35:58.5595630Z 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-08-26T19:35:58.5597020Z 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-08-26T19:35:58.5598310Z 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-08-26T19:35:58.5599680Z 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-08-26T19:35:58.5601010Z 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-08-26T19:35:58.5602350Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-26T19:35:58.5603820Z 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-08-26T19:35:58.5605120Z 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-08-26T19:35:58.5606400Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-08-26T19:35:58.5607890Z 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-08-26T19:35:58.5609080Z 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-08-26T19:35:58.5610510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-08-26T19:35:58.5611150Z 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-08-26T19:35:58.5612620Z 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-08-26T19:35:58.5613900Z 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-08-26T19:35:58.5615340Z 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-08-26T19:35:58.5616730Z 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-08-26T19:35:58.5618070Z 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-08-26T19:35:58.5619390Z 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-08-26T19:35:58.5620740Z 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-08-26T19:35:58.5622150Z 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-08-26T19:35:58.5623650Z 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-08-26T19:35:58.5625030Z 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-08-26T19:35:58.5626280Z 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-08-26T19:35:58.5627660Z 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-08-26T19:35:58.5629100Z 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-08-26T19:35:58.5630350Z 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-08-26T19:35:58.5632210Z 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-08-26T19:35:58.5633260Z 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-08-26T19:35:58.5634550Z 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-08-26T19:35:58.5635850Z 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-08-26T19:35:58.5637320Z 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-08-26T19:35:58.5638660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-08-26T19:35:58.5639360Z 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-08-26T19:35:58.5640680Z 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-08-26T19:35:58.5642130Z 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-08-26T19:35:58.5643430Z 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-08-26T19:35:58.5644670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-08-26T19:35:58.5645440Z 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-08-26T19:35:58.5646670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-08-26T19:35:58.5647390Z 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-08-26T19:35:58.5648810Z 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-08-26T19:35:58.5650160Z 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-08-26T19:35:58.5651450Z 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-08-26T19:35:58.5652840Z 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-08-26T19:35:58.5654180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-08-26T19:35:58.5654840Z 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-08-26T19:35:58.5656190Z 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-08-26T19:35:58.5657510Z 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-08-26T19:35:58.5658820Z 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-08-26T19:35:58.5660120Z 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-08-26T19:35:58.5661720Z 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-08-26T19:35:58.5663040Z 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-08-26T19:35:58.5664350Z 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-08-26T19:35:58.5665760Z 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-08-26T19:35:58.5667020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen 2025-08-26T19:35:58.5667490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-08-26T19:35:58.5668150Z 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-08-26T19:35:58.5669520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-08-26T19:35:58.5670140Z 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-08-26T19:35:58.5671470Z 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-08-26T19:35:58.5672880Z 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-08-26T19:35:58.5674250Z 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-08-26T19:35:58.5675440Z 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-08-26T19:35:58.5676720Z 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-08-26T19:35:58.5678040Z 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-08-26T19:35:58.5679790Z 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-08-26T19:35:58.5680740Z 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-08-26T19:35:58.5682020Z 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-08-26T19:35:58.5683440Z 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-08-26T19:35:58.5684790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-08-26T19:35:58.5685420Z 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-08-26T19:35:58.5686730Z 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-08-26T19:35:58.5688030Z 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-08-26T19:35:58.5689400Z 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-08-26T19:35:58.5690650Z 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-08-26T19:35:58.5691940Z 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-08-26T19:35:58.5693280Z 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-08-26T19:35:58.5694600Z 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-08-26T19:35:58.5695930Z 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-08-26T19:35:58.5697290Z 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-08-26T19:35:58.5698550Z 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-08-26T19:35:58.5700020Z 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-08-26T19:35:58.5701240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-08-26T19:35:58.5701880Z 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-08-26T19:35:58.5703350Z 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-08-26T19:35:58.5704570Z 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-08-26T19:35:58.5705890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-08-26T19:35:58.5706870Z 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-08-26T19:35:58.5708400Z 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-08-26T19:35:58.5709680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-08-26T19:35:58.5710320Z 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-08-26T19:35:58.5712130Z 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-08-26T19:35:58.5713010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5713660Z 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-08-26T19:35:58.5715190Z 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-08-26T19:35:58.5716540Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5717880Z 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-08-26T19:35:58.5719210Z 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-08-26T19:35:58.5720580Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5721940Z 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-08-26T19:35:58.5723340Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5724670Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5726050Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5727370Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5728650Z 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-08-26T19:35:58.5730210Z 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-08-26T19:35:58.5731680Z 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-08-26T19:35:58.5733130Z 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-08-26T19:35:58.5734490Z 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-08-26T19:35:58.5735870Z 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-08-26T19:35:58.5737190Z 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-08-26T19:35:58.5738960Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5740610Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5742120Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-08-26T19:35:58.5743650Z 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-08-26T19:35:58.5745040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-08-26T19:35:58.5745750Z 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-08-26T19:35:58.5747130Z 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-08-26T19:35:58.5748460Z 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-08-26T19:35:58.5749920Z 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-08-26T19:35:58.5751190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-08-26T19:35:58.5751870Z 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-08-26T19:35:58.5753340Z 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-08-26T19:35:58.5754580Z 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-08-26T19:35:58.5755900Z 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-08-26T19:35:58.5757640Z 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-08-26T19:35:58.5759070Z 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-08-26T19:35:58.5760690Z 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-08-26T19:35:58.5762000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-08-26T19:35:58.5762710Z 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-08-26T19:35:58.5764070Z 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-08-26T19:35:58.5765340Z 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-08-26T19:35:58.5766900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-08-26T19:35:58.5767510Z 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-08-26T19:35:58.5769050Z 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-08-26T19:35:58.5770390Z 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-08-26T19:35:58.5771800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-08-26T19:35:58.5772460Z 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-08-26T19:35:58.5774080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-08-26T19:35:58.5774820Z 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-08-26T19:35:58.5776370Z 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-08-26T19:35:58.5777710Z 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-08-26T19:35:58.5779100Z 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-08-26T19:35:58.5780820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-26T19:35:58.5781130Z 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-08-26T19:35:58.5782420Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-26T19:35:58.5784290Z 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-08-26T19:35:58.5785330Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-26T19:35:58.5786720Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-08-26T19:35:58.5788100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy 2025-08-26T19:35:58.5788560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-26T19:35:58.5789310Z copying torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-26T19:35:58.5791470Z copying torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-26T19:35:58.5792450Z copying torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-08-26T19:35:58.5795480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5796020Z 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-08-26T19:35:58.5797530Z 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-08-26T19:35:58.5798940Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5800430Z 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-08-26T19:35:58.5801640Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5803110Z 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-08-26T19:35:58.5804460Z 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-08-26T19:35:58.5805920Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5807450Z 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-08-26T19:35:58.5809020Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5810510Z 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-08-26T19:35:58.5812400Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5813400Z 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-08-26T19:35:58.5814780Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5816080Z 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-08-26T19:35:58.5817430Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5819090Z 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-08-26T19:35:58.5820240Z 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-08-26T19:35:58.5821620Z 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-08-26T19:35:58.5822970Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5824480Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5825610Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5826920Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-08-26T19:35:58.5828220Z 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-08-26T19:35:58.5829690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-08-26T19:35:58.5836120Z 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-08-26T19:35:58.5836370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-08-26T19:35:58.5836690Z 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-08-26T19:35:58.5837110Z 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-08-26T19:35:58.5837290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-08-26T19:35:58.5837610Z 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-08-26T19:35:58.5837910Z copying torch/include/torch/csrc/lazy/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-08-26T19:35:58.5838150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-08-26T19:35:58.5838750Z 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-08-26T19:35:58.5840120Z 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-08-26T19:35:58.5841400Z 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-08-26T19:35:58.5842750Z 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-08-26T19:35:58.5844050Z 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-08-26T19:35:58.5845560Z 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-08-26T19:35:58.5846790Z 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-08-26T19:35:58.5848310Z 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-08-26T19:35:58.5849600Z 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-08-26T19:35:58.5850890Z 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-08-26T19:35:58.5852200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-08-26T19:35:58.5852860Z 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-08-26T19:35:58.5854260Z 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-08-26T19:35:58.5855590Z 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-08-26T19:35:58.5856810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-08-26T19:35:58.5857550Z 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-08-26T19:35:58.5858910Z 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-08-26T19:35:58.5860310Z 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-08-26T19:35:58.5861570Z 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-08-26T19:35:58.5862810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-08-26T19:35:58.5863450Z copying torch/include/torch/csrc/mtia/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-08-26T19:35:58.5864800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-08-26T19:35:58.5865460Z copying torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-08-26T19:35:58.5866900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api 2025-08-26T19:35:58.5867250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include 2025-08-26T19:35:58.5867740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-08-26T19:35:58.5868400Z 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-08-26T19:35:58.5869920Z 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-08-26T19:35:58.5871150Z 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-08-26T19:35:58.5872420Z 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-08-26T19:35:58.5873860Z 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-08-26T19:35:58.5875150Z 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-08-26T19:35:58.5876540Z 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-08-26T19:35:58.5878010Z 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-08-26T19:35:58.5879270Z 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-08-26T19:35:58.5880690Z 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-08-26T19:35:58.5882100Z 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-08-26T19:35:58.5883390Z 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-08-26T19:35:58.5884690Z 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-08-26T19:35:58.5886070Z 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-08-26T19:35:58.5887380Z 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-08-26T19:35:58.5889180Z 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-08-26T19:35:58.5890130Z 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-08-26T19:35:58.5891510Z 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-08-26T19:35:58.5892900Z 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-08-26T19:35:58.5894410Z 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-08-26T19:35:58.5895700Z 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-08-26T19:35:58.5897130Z 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-08-26T19:35:58.5898460Z 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-08-26T19:35:58.5899840Z 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-08-26T19:35:58.5901100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-08-26T19:35:58.5901780Z 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-08-26T19:35:58.5903310Z 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-08-26T19:35:58.5905570Z 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-08-26T19:35:58.5906580Z 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-08-26T19:35:58.5907910Z 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-08-26T19:35:58.5909470Z 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-08-26T19:35:58.5910820Z 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-08-26T19:35:58.5912270Z 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-08-26T19:35:58.5913700Z 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-08-26T19:35:58.5915360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-08-26T19:35:58.5915850Z 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-08-26T19:35:58.5917210Z 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-08-26T19:35:58.5918480Z 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-08-26T19:35:58.5919950Z 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-08-26T19:35:58.5921320Z 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-08-26T19:35:58.5922660Z 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-08-26T19:35:58.5924000Z 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-08-26T19:35:58.5925580Z 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-08-26T19:35:58.5926730Z 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-08-26T19:35:58.5928150Z 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-08-26T19:35:58.5929590Z 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-08-26T19:35:58.5930910Z 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-08-26T19:35:58.5932480Z 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-08-26T19:35:58.5933860Z 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-08-26T19:35:58.5935230Z 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-08-26T19:35:58.5936670Z 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-08-26T19:35:58.5938210Z 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-08-26T19:35:58.5939450Z 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-08-26T19:35:58.5940820Z 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-08-26T19:35:58.5942270Z 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-08-26T19:35:58.5943660Z 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-08-26T19:35:58.5945090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-08-26T19:35:58.5945870Z 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-08-26T19:35:58.5947230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-08-26T19:35:58.5947860Z 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-08-26T19:35:58.5949290Z 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-08-26T19:35:58.5950710Z 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-08-26T19:35:58.5951890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-08-26T19:35:58.5952680Z 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-08-26T19:35:58.5953990Z 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-08-26T19:35:58.5955290Z 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-08-26T19:35:58.5956610Z 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-08-26T19:35:58.5957980Z 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-08-26T19:35:58.5959310Z 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-08-26T19:35:58.5960720Z 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-08-26T19:35:58.5962190Z 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-08-26T19:35:58.5963500Z 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-08-26T19:35:58.5964980Z 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-08-26T19:35:58.5966370Z 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-08-26T19:35:58.5967800Z 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-08-26T19:35:58.5969180Z 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-08-26T19:35:58.5970570Z 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-08-26T19:35:58.5971900Z 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-08-26T19:35:58.5973340Z 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-08-26T19:35:58.5974680Z 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-08-26T19:35:58.5976120Z 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-08-26T19:35:58.5977540Z 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-08-26T19:35:58.5979000Z 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-08-26T19:35:58.5980040Z 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-08-26T19:35:58.5981410Z 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-08-26T19:35:58.5982700Z 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-08-26T19:35:58.5984140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-08-26T19:35:58.5984750Z 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-08-26T19:35:58.5986170Z 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-08-26T19:35:58.5987530Z 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-08-26T19:35:58.5988800Z 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-08-26T19:35:58.5990120Z 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-08-26T19:35:58.5991410Z 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-08-26T19:35:58.5992790Z 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-08-26T19:35:58.5994110Z 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-08-26T19:35:58.5995380Z 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-08-26T19:35:58.5996750Z 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-08-26T19:35:58.5998340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-08-26T19:35:58.5998820Z 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-08-26T19:35:58.6000180Z 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-08-26T19:35:58.6001510Z 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-08-26T19:35:58.6002880Z 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-08-26T19:35:58.6004260Z 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-08-26T19:35:58.6005560Z 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-08-26T19:35:58.6006990Z 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-08-26T19:35:58.6008360Z 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-08-26T19:35:58.6009660Z 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-08-26T19:35:58.6010970Z 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-08-26T19:35:58.6012340Z 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-08-26T19:35:58.6013830Z 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-08-26T19:35:58.6015330Z 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-08-26T19:35:58.6016650Z 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-08-26T19:35:58.6018090Z 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-08-26T19:35:58.6019450Z 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-08-26T19:35:58.6020800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-08-26T19:35:58.6021510Z 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-08-26T19:35:58.6022750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-08-26T19:35:58.6023480Z 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-08-26T19:35:58.6024910Z 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-08-26T19:35:58.6026240Z 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-08-26T19:35:58.6027680Z 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-08-26T19:35:58.6028950Z 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-08-26T19:35:58.6030440Z 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-08-26T19:35:58.6031620Z 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-08-26T19:35:58.6032940Z 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-08-26T19:35:58.6034530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-08-26T19:35:58.6035120Z 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-08-26T19:35:58.6036380Z 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-08-26T19:35:58.6037880Z 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-08-26T19:35:58.6039080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-08-26T19:35:58.6039770Z 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-08-26T19:35:58.6041140Z 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-08-26T19:35:58.6042490Z 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-08-26T19:35:58.6043770Z 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-08-26T19:35:58.6045100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert 2025-08-26T19:35:58.6045800Z copying torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert 2025-08-26T19:35:58.6047070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-08-26T19:35:58.6047730Z 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-08-26T19:35:58.6049280Z 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-08-26T19:35:58.6050490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-08-26T19:35:58.6051170Z 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-08-26T19:35:58.6052650Z 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-08-26T19:35:58.6053940Z 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-08-26T19:35:58.6055490Z 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-08-26T19:35:58.6056750Z 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-08-26T19:35:58.6058080Z 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-08-26T19:35:58.6059570Z 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-08-26T19:35:58.6060860Z 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-08-26T19:35:58.6062320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-08-26T19:35:58.6062960Z 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-08-26T19:35:58.6064270Z 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-08-26T19:35:58.6065720Z 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-08-26T19:35:58.6067080Z 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-08-26T19:35:58.6068580Z 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-08-26T19:35:58.6070000Z 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-08-26T19:35:58.6071300Z 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-08-26T19:35:58.6072700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-08-26T19:35:58.6073390Z 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-08-26T19:35:58.6074900Z 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-08-26T19:35:58.6076140Z 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-08-26T19:35:58.6077490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-08-26T19:35:58.6078220Z 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-08-26T19:35:58.6079600Z 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-08-26T19:35:58.6081200Z 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-08-26T19:35:58.6082490Z 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-08-26T19:35:58.6083890Z 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-08-26T19:35:58.6085100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-08-26T19:35:58.6085790Z 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-08-26T19:35:58.6087210Z 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-08-26T19:35:58.6088590Z 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-08-26T19:35:58.6090000Z 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-08-26T19:35:58.6091240Z 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-08-26T19:35:58.6092670Z 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-08-26T19:35:58.6093980Z 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-08-26T19:35:58.6095410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-08-26T19:35:58.6096000Z 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-08-26T19:35:58.6097430Z 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-08-26T19:35:58.6098690Z 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-08-26T19:35:58.6099860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6100570Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6101920Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6103250Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6104530Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6106030Z copying torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6107220Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6108560Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6109870Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6111360Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6113710Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6114960Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-08-26T19:35:58.6116390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-08-26T19:35:58.6117020Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-08-26T19:35:58.6118430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-08-26T19:35:58.6119130Z 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-08-26T19:35:58.6120530Z 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-08-26T19:35:58.6121840Z 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-08-26T19:35:58.6123460Z 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-08-26T19:35:58.6124580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-08-26T19:35:58.6125240Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-08-26T19:35:58.6126680Z 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-08-26T19:35:58.6128010Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-08-26T19:35:58.6129550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-08-26T19:35:58.6130170Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-08-26T19:35:58.6131630Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-08-26T19:35:58.6132910Z 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-08-26T19:35:58.6134360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6134820Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6136240Z 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-08-26T19:35:58.6137780Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6139020Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6140380Z 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-08-26T19:35:58.6141810Z 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-08-26T19:35:58.6143080Z 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-08-26T19:35:58.6144390Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6145680Z 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-08-26T19:35:58.6147140Z 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-08-26T19:35:58.6148460Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6149830Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6151000Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:35:58.6152450Z 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-08-26T19:35:58.6153760Z 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-08-26T19:35:58.6155100Z 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-08-26T19:35:58.6156420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-08-26T19:35:58.6156900Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-08-26T19:35:58.6158230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-26T19:35:58.6158880Z copying torch/include/torch/csrc/export/pt2_archive_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-26T19:35:58.6160190Z copying torch/include/torch/csrc/export/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-26T19:35:58.6161470Z copying torch/include/torch/csrc/export/example_upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-26T19:35:58.6162760Z copying torch/include/torch/csrc/export/upgrader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-08-26T19:35:58.6164060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-08-26T19:35:58.6164660Z copying torch/include/torch/csrc/functorch/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-08-26T19:35:58.6166100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6166470Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6167870Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6169090Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6170400Z copying torch/include/kineto/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6171640Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6172970Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6174200Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6175540Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6176800Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6178030Z copying torch/include/kineto/output_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6179310Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6180620Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6181930Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6183380Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6184650Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6185900Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-08-26T19:35:58.6187250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-08-26T19:35:58.6187820Z copying torch/include/kai/kai_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-08-26T19:35:58.6189230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels 2025-08-26T19:35:58.6189690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul 2025-08-26T19:35:58.6190280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-08-26T19:35:58.6191130Z 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-08-26T19:35:58.6192610Z 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-08-26T19:35:58.6194090Z 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-08-26T19:35:58.6195580Z 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-08-26T19:35:58.6197020Z 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-08-26T19:35:58.6198530Z 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-08-26T19:35:58.6200070Z 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-08-26T19:35:58.6201500Z 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-08-26T19:35:58.6203070Z 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-08-26T19:35:58.6204300Z 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-08-26T19:35:58.6205940Z 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-08-26T19:35:58.6207590Z 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-08-26T19:35:58.6208840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-08-26T19:35:58.6209650Z 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-08-26T19:35:58.6211140Z 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-08-26T19:35:58.6212700Z 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-08-26T19:35:58.6214000Z 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-08-26T19:35:58.6215640Z 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-08-26T19:35:58.6216950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-08-26T19:35:58.6217700Z 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-08-26T19:35:58.6219450Z 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-08-26T19:35:58.6220560Z 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-08-26T19:35:58.6222090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-08-26T19:35:58.6222830Z 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-08-26T19:35:58.6224430Z 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-08-26T19:35:58.6225830Z 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-08-26T19:35:58.6227370Z 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-08-26T19:35:58.6228600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-08-26T19:35:58.6229460Z 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-08-26T19:35:58.6231190Z 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-08-26T19:35:58.6232850Z 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-08-26T19:35:58.6234360Z 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-08-26T19:35:58.6235640Z 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-08-26T19:35:58.6237040Z 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-08-26T19:35:58.6238330Z 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-08-26T19:35:58.6239980Z 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-08-26T19:35:58.6241180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-08-26T19:35:58.6242040Z 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-08-26T19:35:58.6243640Z 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-08-26T19:35:58.6245080Z 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-08-26T19:35:58.6246710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-08-26T19:35:58.6247110Z 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-08-26T19:35:58.6248660Z 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-08-26T19:35:58.6249990Z 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-08-26T19:35:58.6251480Z 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-08-26T19:35:58.6252830Z 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-08-26T19:35:58.6254470Z 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-08-26T19:35:58.6256700Z 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-08-26T19:35:58.6257970Z 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-08-26T19:35:58.6259490Z 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-08-26T19:35:58.6260910Z 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-08-26T19:35:58.6262310Z 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-08-26T19:35:58.6263770Z 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-08-26T19:35:58.6265250Z 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-08-26T19:35:58.6266720Z 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-08-26T19:35:58.6268270Z 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-08-26T19:35:58.6269630Z 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-08-26T19:35:58.6271090Z 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-08-26T19:35:58.6272650Z 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-08-26T19:35:58.6274260Z 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-08-26T19:35:58.6275900Z 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-08-26T19:35:58.6277330Z 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-08-26T19:35:58.6278640Z 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-08-26T19:35:58.6279950Z 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-08-26T19:35:58.6281570Z 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-08-26T19:35:58.6283110Z 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-08-26T19:35:58.6284680Z 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-08-26T19:35:58.6286010Z 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-08-26T19:35:58.6287740Z 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-08-26T19:35:58.6288800Z 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-08-26T19:35:58.6290800Z 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-08-26T19:35:58.6291880Z 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-08-26T19:35:58.6293230Z 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-08-26T19:35:58.6294630Z 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-08-26T19:35:58.6296110Z 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-08-26T19:35:58.6297660Z 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-08-26T19:35:58.6299190Z 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-08-26T19:35:58.6300780Z 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-08-26T19:35:58.6302030Z 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-08-26T19:35:58.6303530Z 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-08-26T19:35:58.6304780Z 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-08-26T19:35:58.6306290Z 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-08-26T19:35:58.6307720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-08-26T19:35:58.6308530Z 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-08-26T19:35:58.6310010Z 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-08-26T19:35:58.6311500Z 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-08-26T19:35:58.6313020Z 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-08-26T19:35:58.6314470Z 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-08-26T19:35:58.6315930Z 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-08-26T19:35:58.6317430Z 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-08-26T19:35:58.6318740Z 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-08-26T19:35:58.6320140Z 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-08-26T19:35:58.6321570Z 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-08-26T19:35:58.6322980Z 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-08-26T19:35:58.6324380Z 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-08-26T19:35:58.6325690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-08-26T19:35:58.6326770Z 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-08-26T19:35:58.6328050Z 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-08-26T19:35:58.6329260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-08-26T19:35:58.6330410Z 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-08-26T19:35:58.6331640Z 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-08-26T19:35:58.6332670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-08-26T19:35:58.6333690Z 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-08-26T19:35:58.6334930Z 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-08-26T19:35:58.6336380Z 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-08-26T19:35:58.6337740Z 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-08-26T19:35:58.6339220Z 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-08-26T19:35:58.6340450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-08-26T19:35:58.6341360Z 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-08-26T19:35:58.6342750Z 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-08-26T19:35:58.6344120Z 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-08-26T19:35:58.6345550Z 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-08-26T19:35:58.6346980Z 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-08-26T19:35:58.6348180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-08-26T19:35:58.6349170Z 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-08-26T19:35:58.6350780Z 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-08-26T19:35:58.6352240Z 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-08-26T19:35:58.6353460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-08-26T19:35:58.6354480Z 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-08-26T19:35:58.6355750Z 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-08-26T19:35:58.6357170Z 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-08-26T19:35:58.6358550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-08-26T19:35:58.6359440Z 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-08-26T19:35:58.6360620Z 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-08-26T19:35:58.6361790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-08-26T19:35:58.6362600Z 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-08-26T19:35:58.6364050Z 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-08-26T19:35:58.6365230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-08-26T19:35:58.6366080Z 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-08-26T19:35:58.6367410Z 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-08-26T19:35:58.6368670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-08-26T19:35:58.6369600Z 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-08-26T19:35:58.6371050Z 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-08-26T19:35:58.6372310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-08-26T19:35:58.6373130Z 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-08-26T19:35:58.6374460Z 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-08-26T19:35:58.6375730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-08-26T19:35:58.6376630Z 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-08-26T19:35:58.6377900Z 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-08-26T19:35:58.6379100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-08-26T19:35:58.6379930Z 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-08-26T19:35:58.6381340Z 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-08-26T19:35:58.6382600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6383180Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6384740Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6385900Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6387190Z copying torch/include/ATen/SparseMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6388590Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6390020Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6396220Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6396880Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6397370Z copying torch/include/ATen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6397870Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6398400Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6398930Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6399450Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6400330Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6401630Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6402980Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6404280Z copying torch/include/ATen/Version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6405720Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6407040Z copying torch/include/ATen/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6408440Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6409950Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6411180Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6412380Z copying torch/include/ATen/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6414190Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6415640Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6417090Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6418350Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6419990Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6421220Z copying torch/include/ATen/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6422670Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6423990Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6425180Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6426570Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6427840Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6429130Z copying torch/include/ATen/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6430420Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6436350Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6437210Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6438480Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6439800Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6441080Z copying torch/include/ATen/record_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6442480Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6443800Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6455760Z copying torch/include/ATen/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6456950Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6458400Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6459630Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6460880Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6462300Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6463800Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6465250Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6466450Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6476320Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6477180Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6478570Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6479760Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6481090Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6482320Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6483710Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6484950Z copying torch/include/ATen/SparseCsrMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6486220Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6487550Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6488850Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6490110Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6491350Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6492580Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6493940Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6495460Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6496670Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6498020Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6499330Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6500630Z copying torch/include/ATen/ATen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6501860Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6503130Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6504480Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6505820Z copying torch/include/ATen/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6507120Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6508420Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6509760Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6511210Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6512520Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6513750Z copying torch/include/ATen/code_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6515070Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6516310Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6517610Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6518960Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6520290Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6521800Z copying torch/include/ATen/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6523090Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6524440Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6525730Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6527050Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6528260Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6529590Z copying torch/include/ATen/SparseMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6530940Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6532440Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6533710Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6535070Z copying torch/include/ATen/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6536650Z copying torch/include/ATen/SparseCsrMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6537890Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6539090Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6540450Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6541740Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6543030Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6544320Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6545910Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6547200Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6548520Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6549950Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6551230Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6552530Z copying torch/include/ATen/ROCmFABackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6553970Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6555350Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6556880Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6558250Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6559530Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6560730Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6562070Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6563340Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6564680Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6565940Z copying torch/include/ATen/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6567210Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6568460Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6569730Z copying torch/include/ATen/SDPBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6571030Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-08-26T19:35:58.6572620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6573170Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6574480Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6575810Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6578690Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6579770Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6581170Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6582720Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6583980Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6585370Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6586720Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6588080Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6589360Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6590650Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6592210Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6593410Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6595210Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6596420Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6597750Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6599150Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6600450Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6602050Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6603280Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6604570Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6605930Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6607310Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6608570Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6609900Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6611160Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6612560Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6613950Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6615250Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6616720Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6617970Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6619220Z copying torch/include/ATen/core/List.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6620450Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6621710Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6623000Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6624330Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6625650Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6626890Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6628230Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6629510Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6630790Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6632230Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6633530Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6634880Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6636160Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6637550Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6638990Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6640200Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6641400Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6643070Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6644320Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6645680Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6647000Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6648400Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6649720Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6651090Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6652300Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6653950Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6655160Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6656920Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6658180Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6659480Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6660710Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6662010Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6663220Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6664470Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6665680Z copying torch/include/ATen/core/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6667050Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6668360Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6669680Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6670980Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6672670Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-08-26T19:35:58.6674060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-08-26T19:35:58.6674720Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-08-26T19:35:58.6676020Z 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-08-26T19:35:58.6677470Z 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-08-26T19:35:58.6679200Z 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-08-26T19:35:58.6680530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6681100Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6682450Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6683770Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6685080Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6686270Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6687730Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6689080Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-08-26T19:35:58.6690370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-26T19:35:58.6691390Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-26T19:35:58.6693320Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-26T19:35:58.6694880Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-26T19:35:58.6696320Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-26T19:35:58.6697710Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-08-26T19:35:58.6699170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-26T19:35:58.6699930Z 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-08-26T19:35:58.6701460Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-26T19:35:58.6702770Z 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-08-26T19:35:58.6704170Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-26T19:35:58.6705630Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-08-26T19:35:58.6706850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6707530Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6708940Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6710250Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6711620Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6712950Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6714300Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6715580Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6716960Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6718230Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6719570Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6720940Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-08-26T19:35:58.6722360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6722970Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6724360Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6725660Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6726910Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6728180Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6729670Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6730980Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6732510Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6733800Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6735410Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6736690Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6738030Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6739370Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6740740Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6743010Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6744420Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6745760Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6747090Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6748490Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6750280Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6751520Z copying torch/include/ATen/native/RangeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6752850Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6754120Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6755740Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6757190Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6758750Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6760260Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6761940Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6763440Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6764850Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6766240Z copying torch/include/ATen/native/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6767590Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6768960Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6770470Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6771830Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6773120Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6774650Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6775980Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6777550Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6779090Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6780570Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6782480Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6784430Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6785600Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6786960Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6788350Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6789830Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6791270Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6792610Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6793960Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6795270Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6796830Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6798490Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6805030Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6805630Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6806220Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6806800Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6807420Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6808050Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6808650Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6809740Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6811080Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6812380Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6813690Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6815170Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6816550Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6817850Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6819380Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6820410Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6821730Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6824030Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6825080Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6826320Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6827740Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6828940Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6830150Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6831600Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6832890Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6834140Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6835530Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6836790Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6838170Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6839450Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6840760Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6842190Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6843370Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6844650Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6845900Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6847200Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6848490Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6849700Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6850980Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6852280Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6853600Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6854880Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6856160Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6857550Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-08-26T19:35:58.6859000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse 2025-08-26T19:35:58.6859520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized 2025-08-26T19:35:58.6860010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-08-26T19:35:58.6861020Z 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-08-26T19:35:58.6862090Z 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-08-26T19:35:58.6863420Z 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-08-26T19:35:58.6864830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6865410Z copying torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6866630Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6867930Z copying torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6869230Z copying torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6870580Z copying torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6871860Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6873240Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-08-26T19:35:58.6874580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-08-26T19:35:58.6875170Z copying torch/include/ATen/native/mps/kernels/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-08-26T19:35:58.6876660Z copying torch/include/ATen/native/mps/kernels/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-08-26T19:35:58.6889980Z copying torch/include/ATen/native/mps/kernels/Pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-08-26T19:35:58.6890570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-26T19:35:58.6891200Z copying torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-26T19:35:58.6892060Z copying torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-26T19:35:58.6892890Z copying torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-26T19:35:58.6893690Z copying torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-26T19:35:58.6894550Z copying torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-26T19:35:58.6895380Z copying torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-08-26T19:35:58.6895980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6896620Z copying torch/include/ATen/native/metal/MetalConvParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6897340Z copying torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6898060Z copying torch/include/ATen/native/metal/MetalTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6898730Z copying torch/include/ATen/native/metal/MetalContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6899470Z copying torch/include/ATen/native/metal/MetalTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6900150Z copying torch/include/ATen/native/metal/MetalNeuronType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6900820Z copying torch/include/ATen/native/metal/MetalShaders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6901510Z copying torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6902230Z copying torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6902910Z copying torch/include/ATen/native/metal/MetalDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-08-26T19:35:58.6903460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6904090Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6904880Z 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-08-26T19:35:58.6905640Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6906860Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6908170Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6909510Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6910830Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6912220Z copying torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6913700Z copying torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:35:58.6915010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-08-26T19:35:58.6915690Z 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-08-26T19:35:58.6917090Z 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-08-26T19:35:58.6918280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-08-26T19:35:58.6918940Z copying torch/include/ATen/native/metal/ops/MetalCopy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-08-26T19:35:58.6920470Z copying torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-08-26T19:35:58.6921730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6922370Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6923680Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6925030Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6926420Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6927960Z copying torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6929200Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6930630Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6932110Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6933350Z copying torch/include/ATen/native/cpu/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6934710Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6936170Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6937540Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6939040Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6940080Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6941490Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6942860Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6944200Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6945500Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6946870Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6948370Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6949640Z copying torch/include/ATen/native/cpu/Elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6950900Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6952380Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6953670Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6955210Z copying torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6956590Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6957850Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6959640Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6960660Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6962260Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6963620Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6964950Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6966290Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-08-26T19:35:58.6967640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6968310Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6969740Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6971070Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6972420Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6973930Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6975200Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6976580Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6977900Z copying torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6979350Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6980600Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6981910Z copying torch/include/ATen/native/cuda/GroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6983190Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6984690Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6985920Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6987580Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6988840Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6990160Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6991580Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6992800Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6994130Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6995460Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6996890Z copying torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6998310Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.6999530Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.7000790Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.7002070Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:35:58.7003340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7003960Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7005320Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7006650Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7007990Z copying torch/include/ATen/native/quantized/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7009320Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7010610Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7011910Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7013160Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-08-26T19:35:58.7014560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7015200Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7016460Z 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-08-26T19:35:58.7017760Z 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-08-26T19:35:58.7019080Z copying torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7020390Z 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-08-26T19:35:58.7021650Z copying torch/include/ATen/native/quantized/cpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7023040Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7024480Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7025760Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7027330Z 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-08-26T19:35:58.7028550Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7029820Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7031060Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7032350Z copying torch/include/ATen/native/quantized/cpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7033710Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7035010Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-08-26T19:35:58.7036270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-08-26T19:35:58.7036970Z copying torch/include/ATen/native/quantized/cudnn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-08-26T19:35:58.7038390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-26T19:35:58.7038900Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-26T19:35:58.7040250Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-26T19:35:58.7041510Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-08-26T19:35:58.7042950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-26T19:35:58.7043560Z copying torch/include/ATen/native/transformers/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-26T19:35:58.7044850Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-26T19:35:58.7046130Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-08-26T19:35:58.7047490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-08-26T19:35:58.7048130Z 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-08-26T19:35:58.7049510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-08-26T19:35:58.7050290Z 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-08-26T19:35:58.7051550Z 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-08-26T19:35:58.7052990Z 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-08-26T19:35:58.7054520Z 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-08-26T19:35:58.7055880Z 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-08-26T19:35:58.7057700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-08-26T19:35:58.7058320Z 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-08-26T19:35:58.7060640Z 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-08-26T19:35:58.7061520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-08-26T19:35:58.7062240Z 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-08-26T19:35:58.7063720Z 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-08-26T19:35:58.7065050Z 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-08-26T19:35:58.7066480Z 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-08-26T19:35:58.7068090Z 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-08-26T19:35:58.7069600Z 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-08-26T19:35:58.7071100Z 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-08-26T19:35:58.7072730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-08-26T19:35:58.7073310Z 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-08-26T19:35:58.7074580Z 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-08-26T19:35:58.7076020Z 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-08-26T19:35:58.7077380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-08-26T19:35:58.7078200Z 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-08-26T19:35:58.7079480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-08-26T19:35:58.7080250Z 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-08-26T19:35:58.7081730Z 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-08-26T19:35:58.7083310Z 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-08-26T19:35:58.7084830Z 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-08-26T19:35:58.7086190Z 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-08-26T19:35:58.7087740Z 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-08-26T19:35:58.7088990Z 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-08-26T19:35:58.7090480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-08-26T19:35:58.7091170Z 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-08-26T19:35:58.7092620Z 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-08-26T19:35:58.7093830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-08-26T19:35:58.7094520Z 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-08-26T19:35:58.7095900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-08-26T19:35:58.7096620Z 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-08-26T19:35:58.7098120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-08-26T19:35:58.7098730Z 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-08-26T19:35:58.7100040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-26T19:35:58.7100590Z copying torch/include/ATen/native/hip/ck_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-26T19:35:58.7102160Z copying torch/include/ATen/native/hip/ck_bgemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-26T19:35:58.7103360Z copying torch/include/ATen/native/hip/ck_gemm_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-26T19:35:58.7104570Z copying torch/include/ATen/native/hip/ck_gemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-08-26T19:35:58.7105950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-08-26T19:35:58.7106580Z 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-08-26T19:35:58.7107970Z 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-08-26T19:35:58.7109350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-08-26T19:35:58.7109950Z copying torch/include/ATen/native/mtia/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-08-26T19:35:58.7111240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-26T19:35:58.7111900Z copying torch/include/ATen/native/kleidiai/kai_pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-26T19:35:58.7113340Z copying torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-26T19:35:58.7114660Z copying torch/include/ATen/native/kleidiai/kai_kernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-08-26T19:35:58.7116020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-26T19:35:58.7116640Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-26T19:35:58.7118220Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-26T19:35:58.7119440Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-26T19:35:58.7120810Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-26T19:35:58.7122160Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-08-26T19:35:58.7123570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn 2025-08-26T19:35:58.7124130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-08-26T19:35:58.7124770Z copying torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-08-26T19:35:58.7126130Z copying torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-08-26T19:35:58.7127430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-08-26T19:35:58.7128090Z 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-08-26T19:35:58.7129880Z 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-08-26T19:35:58.7131090Z 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-08-26T19:35:58.7132520Z 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-08-26T19:35:58.7134120Z 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-08-26T19:35:58.7135490Z 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-08-26T19:35:58.7136740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-08-26T19:35:58.7137300Z copying torch/include/ATen/metal/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-08-26T19:35:58.7138610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-26T19:35:58.7139200Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-26T19:35:58.7140600Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-26T19:35:58.7141920Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-08-26T19:35:58.7143240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7143840Z copying torch/include/ATen/cpu/vec/vec_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7145290Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7146710Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7147980Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7149360Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7150850Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7152280Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7153570Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7155000Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7156300Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7157590Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-08-26T19:35:58.7159170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-08-26T19:35:58.7159750Z 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-08-26T19:35:58.7161120Z 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-08-26T19:35:58.7162530Z copying torch/include/ATen/cpu/vec/vec128/vec128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-08-26T19:35:58.7163690Z 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-08-26T19:35:58.7165110Z 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-08-26T19:35:58.7166550Z 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-08-26T19:35:58.7167930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-08-26T19:35:58.7168500Z 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-08-26T19:35:58.7169840Z 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-08-26T19:35:58.7171070Z 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-08-26T19:35:58.7172380Z 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-08-26T19:35:58.7173620Z 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-08-26T19:35:58.7175110Z 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-08-26T19:35:58.7176460Z 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-08-26T19:35:58.7177760Z 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-08-26T19:35:58.7179120Z 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-08-26T19:35:58.7180360Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-08-26T19:35:58.7181660Z 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-08-26T19:35:58.7183060Z 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-08-26T19:35:58.7184390Z 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-08-26T19:35:58.7185950Z 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-08-26T19:35:58.7187440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-08-26T19:35:58.7188060Z 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-08-26T19:35:58.7190100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-08-26T19:35:58.7190460Z 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-08-26T19:35:58.7191720Z 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-08-26T19:35:58.7192980Z 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-08-26T19:35:58.7194280Z 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-08-26T19:35:58.7195600Z 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-08-26T19:35:58.7196980Z 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-08-26T19:35:58.7198370Z 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-08-26T19:35:58.7199950Z 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-08-26T19:35:58.7201170Z 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-08-26T19:35:58.7202820Z 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-08-26T19:35:58.7204220Z 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-08-26T19:35:58.7205590Z 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-08-26T19:35:58.7206950Z 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-08-26T19:35:58.7208240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-08-26T19:35:58.7208850Z 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-08-26T19:35:58.7210770Z 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-08-26T19:35:58.7212030Z 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-08-26T19:35:58.7213640Z 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-08-26T19:35:58.7215030Z 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-08-26T19:35:58.7216360Z 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-08-26T19:35:58.7218040Z 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-08-26T19:35:58.7220230Z 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-08-26T19:35:58.7221790Z 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-08-26T19:35:58.7224090Z 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-08-26T19:35:58.7225250Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-08-26T19:35:58.7226620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-08-26T19:35:58.7227160Z 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-08-26T19:35:58.7228530Z 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-08-26T19:35:58.7229950Z 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-08-26T19:35:58.7231900Z 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-08-26T19:35:58.7233070Z 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-08-26T19:35:58.7234320Z 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-08-26T19:35:58.7235670Z 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-08-26T19:35:58.7237170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7237710Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7239320Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7240580Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7241860Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7243170Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7244530Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7246060Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7247410Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7248690Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7250030Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7251540Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7252840Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7254320Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7255650Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7256930Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7258310Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7260650Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7262260Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7263570Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7265230Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7266880Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7268390Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7269810Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7271310Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7272620Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:35:58.7274130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:35:58.7274690Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:35:58.7276220Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:35:58.7277730Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:35:58.7279260Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:35:58.7280700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7281530Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7282680Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7283990Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7285440Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7287210Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7288850Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7290320Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-08-26T19:35:58.7291770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-08-26T19:35:58.7292570Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-08-26T19:35:58.7293950Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-08-26T19:35:58.7295340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-26T19:35:58.7295930Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-26T19:35:58.7297360Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-26T19:35:58.7298940Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-26T19:35:58.7300410Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-26T19:35:58.7301750Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-26T19:35:58.7303130Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-08-26T19:35:58.7304730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-08-26T19:35:58.7305180Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-08-26T19:35:58.7306630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-26T19:35:58.7307260Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-26T19:35:58.7308440Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-26T19:35:58.7309730Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-26T19:35:58.7311010Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-26T19:35:58.7312400Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-26T19:35:58.7318550Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-08-26T19:35:58.7319030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7319430Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7319750Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7320030Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7320320Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7321680Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7322990Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7324450Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7325740Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7327200Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7328430Z copying torch/include/ATen/detail/HPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7329950Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-08-26T19:35:58.7331270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip 2025-08-26T19:35:58.7331980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-26T19:35:58.7332430Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-26T19:35:58.7333750Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-26T19:35:58.7335100Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-26T19:35:58.7336860Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-08-26T19:35:58.7337760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7338370Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7339650Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7341070Z 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-08-26T19:35:58.7342300Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7343730Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7344910Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7346160Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7347430Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7348780Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7350040Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7351590Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7352790Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7354060Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7355360Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7356680Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7357970Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7359250Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7360580Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7361830Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7363180Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7364530Z copying torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7365890Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7367190Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7368520Z 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-08-26T19:35:58.7369740Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7371150Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7372440Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7373760Z 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-08-26T19:35:58.7375030Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7376340Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7377810Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7379040Z 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-08-26T19:35:58.7380330Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7381630Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7383100Z 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-08-26T19:35:58.7384410Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7385720Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7387090Z 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-08-26T19:35:58.7388380Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7389640Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7390930Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7392270Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7393550Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7395000Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7396170Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7397570Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7398930Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7400110Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7401440Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7402780Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7404100Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7405460Z 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-08-26T19:35:58.7406710Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7408170Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7409370Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7410620Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7411910Z 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-08-26T19:35:58.7413360Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7414930Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7416230Z 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-08-26T19:35:58.7417580Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7418920Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7420250Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7421740Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7423000Z 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-08-26T19:35:58.7424480Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7425760Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7427180Z 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-08-26T19:35:58.7428480Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7429800Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7431040Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7432550Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7433710Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7435140Z 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-08-26T19:35:58.7436400Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7437710Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7439230Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7440430Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7441720Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7443080Z copying torch/include/ATen/ops/_fused_rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7444500Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7445800Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7447110Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7448440Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7449830Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7451120Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7452430Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7454030Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7455230Z 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-08-26T19:35:58.7456470Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7457910Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7459320Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7460640Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7461990Z 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-08-26T19:35:58.7463440Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7464810Z 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-08-26T19:35:58.7466370Z 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-08-26T19:35:58.7467560Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7468890Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7470250Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7471830Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7473030Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7474310Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7475640Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7477070Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7478390Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7479820Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7481110Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7482580Z 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-08-26T19:35:58.7483850Z copying torch/include/ATen/ops/sinc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7485240Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7486700Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7488060Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7489350Z 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-08-26T19:35:58.7490740Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7492000Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7493220Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7494690Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7495860Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7497220Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7498670Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7499970Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7501230Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7502530Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7503890Z copying torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7505180Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7506410Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7507740Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7509040Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7510390Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7511690Z 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-08-26T19:35:58.7512970Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7514300Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7515610Z 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-08-26T19:35:58.7516980Z 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-08-26T19:35:58.7518230Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7519610Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7521020Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7522330Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7523560Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7525000Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7526300Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7527700Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7528950Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7530300Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7531520Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7532800Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7534070Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7535390Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7536830Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7538060Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7539410Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7540700Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7542070Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7543400Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7544790Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7546140Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7547390Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7548680Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7550000Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7551360Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7552730Z 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-08-26T19:35:58.7553960Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7555340Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7556580Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7557960Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7559310Z 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-08-26T19:35:58.7560640Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7561930Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7563200Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7564580Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7566380Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7567320Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7568730Z 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-08-26T19:35:58.7569950Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7571380Z 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-08-26T19:35:58.7572740Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7573970Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7575350Z 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-08-26T19:35:58.7576660Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7577910Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7579160Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7580440Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7581730Z copying torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7583030Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7584300Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7585630Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7586900Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7588280Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7589600Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7590980Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7592400Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7593700Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7594980Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7596370Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7597670Z copying torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7599090Z 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-08-26T19:35:58.7600390Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7601720Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7603040Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7604440Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7605720Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7607520Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7608530Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7609950Z 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-08-26T19:35:58.7611250Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7612660Z 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-08-26T19:35:58.7614280Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7615590Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7616940Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7618560Z 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-08-26T19:35:58.7619690Z 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-08-26T19:35:58.7621160Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7622620Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7623870Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7625240Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7626590Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7628030Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7629380Z 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-08-26T19:35:58.7630700Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7632170Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7633500Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7634870Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7636120Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7637410Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7638660Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7640050Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7641500Z 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-08-26T19:35:58.7643040Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7644360Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7645710Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7647010Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7648430Z 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-08-26T19:35:58.7649720Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7651120Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7652500Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7653720Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7655020Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7656320Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7657630Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7659080Z 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-08-26T19:35:58.7660320Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7661670Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7663010Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7664330Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7665610Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7667230Z 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-08-26T19:35:58.7668580Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7669800Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7671130Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7672420Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7673740Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7675060Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7676340Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7677680Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7678920Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7680210Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7681540Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7682980Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7684230Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7685550Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7686830Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7688260Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7689620Z 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-08-26T19:35:58.7691040Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7692630Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7693800Z 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-08-26T19:35:58.7695040Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7696340Z 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-08-26T19:35:58.7697810Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7699070Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7700320Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7701660Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7703140Z 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-08-26T19:35:58.7704390Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7705740Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7707350Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7708350Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7709770Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7711080Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7712350Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7713680Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7715000Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7716400Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7717750Z 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-08-26T19:35:58.7719120Z 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-08-26T19:35:58.7720520Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7722170Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7723310Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7725030Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7726450Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7728590Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7729710Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7731390Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7732840Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7734260Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7735550Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7737170Z 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-08-26T19:35:58.7738460Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7740010Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7741480Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7742600Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7743980Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7745420Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7747000Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7748640Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7750110Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7751660Z 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-08-26T19:35:58.7752990Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7754330Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7755740Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7757080Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7758410Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7759780Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7761670Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7762720Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7764250Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7765360Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7766860Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7768820Z 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-08-26T19:35:58.7770130Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7771600Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7773110Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7774430Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7776110Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7777240Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7778520Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7780030Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7781350Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7782750Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7784260Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7785750Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7787440Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7788720Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7790090Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7791680Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7793130Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7794760Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7796280Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7797810Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7799310Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7800780Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7802490Z 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-08-26T19:35:58.7803720Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7806380Z 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-08-26T19:35:58.7806650Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7807740Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7809330Z 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-08-26T19:35:58.7810820Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7812350Z 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-08-26T19:35:58.7814840Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7816410Z 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-08-26T19:35:58.7818010Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7819450Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7820730Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7822310Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7823720Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7825180Z 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-08-26T19:35:58.7826390Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7827830Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7829080Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7830490Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7831720Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7833110Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7834450Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7835780Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7837130Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7838490Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7839710Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7841070Z 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-08-26T19:35:58.7842340Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7843810Z 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-08-26T19:35:58.7845080Z 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-08-26T19:35:58.7846380Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7847830Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7849140Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7850600Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7851870Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7853210Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7854470Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7855760Z 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-08-26T19:35:58.7857150Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7858400Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7859790Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7861110Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7862450Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7863630Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7864980Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7866320Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7867630Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7868910Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7870180Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7871590Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7872900Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7874190Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7875540Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7876890Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7878270Z 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-08-26T19:35:58.7879490Z copying torch/include/ATen/ops/rsub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7880810Z 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-08-26T19:35:58.7882180Z 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-08-26T19:35:58.7883490Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7884850Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7886010Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7887350Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7888670Z 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-08-26T19:35:58.7890040Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7891260Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7892700Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7893930Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7895410Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7896680Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7897970Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7899310Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7900670Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7901930Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7903240Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7904630Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7906030Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7907310Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7908590Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7909900Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7911220Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7912630Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7913830Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7915520Z 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-08-26T19:35:58.7916750Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7918080Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7919490Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7920800Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7922050Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7923560Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7924910Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7926290Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7927620Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7928920Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7930220Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7931540Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7932840Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7934140Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7935400Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7936750Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7938080Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7939450Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7940740Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7942190Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7943510Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7944990Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7946140Z copying torch/include/ATen/ops/hash_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7947590Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7948870Z 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-08-26T19:35:58.7950190Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7951600Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7952870Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7954230Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7955550Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7956830Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7958180Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7959560Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7960700Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7962040Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7963240Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7964630Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7966080Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7967500Z 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-08-26T19:35:58.7968730Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7970160Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7971690Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7973120Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7974320Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7975700Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7977010Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7978220Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7979540Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7981020Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7982330Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7983560Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7984840Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7986090Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7987490Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7988720Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7990090Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7991350Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7992670Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7993940Z copying torch/include/ATen/ops/_values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7995340Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7996690Z 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-08-26T19:35:58.7997980Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.7999420Z 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-08-26T19:35:58.8000790Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8002120Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8003400Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8004700Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8006300Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8008850Z 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-08-26T19:35:58.8009810Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8011180Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8012570Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8013950Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8015290Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8016540Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8017960Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8019360Z 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-08-26T19:35:58.8020740Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8022010Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8023420Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8024790Z 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-08-26T19:35:58.8026290Z 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-08-26T19:35:58.8027520Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8028990Z 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-08-26T19:35:58.8030280Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8031510Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8032830Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8034220Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8035540Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8036900Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8038230Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8039520Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8040950Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8042450Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8047000Z 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-08-26T19:35:58.8047240Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8047510Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8047780Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8048770Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8050000Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8051270Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8052680Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8053940Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8055310Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8056560Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8057810Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8059160Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8060450Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8061890Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8063090Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8064370Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8065650Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8066970Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8068190Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8069510Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8070780Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8072110Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8073290Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8074660Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8076240Z 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-08-26T19:35:58.8077340Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8078800Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8080220Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8081500Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8082740Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8084080Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8085360Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8086650Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8088080Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8089640Z 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-08-26T19:35:58.8090990Z 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-08-26T19:35:58.8092420Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8093690Z 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-08-26T19:35:58.8095160Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8096420Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8097900Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8099150Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8100450Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8101770Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8103170Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8104480Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8105760Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8107020Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8108490Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8109880Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8111260Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8112530Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8113910Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8115420Z 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-08-26T19:35:58.8116660Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8117940Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8119420Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8120760Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8122050Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8123250Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8124650Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8125970Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8127190Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8128520Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8130070Z 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-08-26T19:35:58.8131350Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8132670Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8134120Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8135340Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8136900Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8138110Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8139450Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8140950Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8142210Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8143420Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8144810Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8146100Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8147460Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8148690Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8150140Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8151230Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8152600Z 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-08-26T19:35:58.8153940Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8155530Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8156590Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8157870Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8159270Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8160730Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8161880Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8163300Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8164700Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8166230Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8167440Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8168960Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8170220Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8171570Z copying torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8172990Z 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-08-26T19:35:58.8174470Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8175820Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8177250Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8178590Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8180080Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8181380Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8182810Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8184130Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8185440Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8186930Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8188160Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8189470Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8191050Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8192300Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8193700Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8194960Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8196390Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8197930Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8199020Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8200390Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8201820Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8203050Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8204610Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8205850Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8207200Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8208480Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8210030Z 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-08-26T19:35:58.8211180Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8212650Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8214050Z 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-08-26T19:35:58.8215460Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8216750Z 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-08-26T19:35:58.8218100Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8219520Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8221040Z 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-08-26T19:35:58.8222350Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8223550Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8224990Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8226470Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8228070Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8229550Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8231040Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8232480Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8234040Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8235580Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8237190Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8238670Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8240200Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8241650Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8243250Z 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-08-26T19:35:58.8244560Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8246000Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8247450Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8249080Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8250600Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8252430Z 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-08-26T19:35:58.8253700Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8255090Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8256360Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8257860Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8259410Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8260660Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8262330Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8263500Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8265040Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8266380Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8267930Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8269330Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8270710Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8272050Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8273530Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8274950Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8276440Z 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-08-26T19:35:58.8277880Z 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-08-26T19:35:58.8279260Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8280790Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8282000Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8283550Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8285100Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8286400Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8287740Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8289240Z 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-08-26T19:35:58.8290540Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8292100Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8293340Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8294670Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8295980Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8297460Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8298680Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8300080Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8301420Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8302840Z 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-08-26T19:35:58.8304020Z copying torch/include/ATen/ops/_fused_rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8305420Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8306860Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8308610Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8309770Z 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-08-26T19:35:58.8310910Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8312430Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8313900Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8315270Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8316480Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8317810Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8319160Z 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-08-26T19:35:58.8320680Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8322630Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8323800Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8325170Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8326560Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8328180Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8329430Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8330930Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8332130Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8333730Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8334940Z 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-08-26T19:35:58.8336380Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8337550Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8339240Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8340290Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8341590Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8343010Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8344320Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8345520Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8346850Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8348120Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8349480Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8350770Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8352070Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8353560Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8354710Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8356040Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8357790Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8358750Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8360180Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8361240Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8362500Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8363800Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8365140Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8366370Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8367670Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8369090Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8370280Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8371630Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8373000Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8374290Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8375620Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8376860Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8378250Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8379630Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8380880Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8382180Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8383550Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8384840Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8386170Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8387770Z 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-08-26T19:35:58.8389160Z 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-08-26T19:35:58.8390410Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8391910Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8393260Z 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-08-26T19:35:58.8394610Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8395900Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8397100Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8398800Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8399950Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8401360Z 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-08-26T19:35:58.8402660Z 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-08-26T19:35:58.8404010Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8405430Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8407070Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8408340Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8409670Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8411290Z 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-08-26T19:35:58.8412610Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8413710Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8415170Z 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-08-26T19:35:58.8416570Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8417820Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8419230Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8420570Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8422050Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8423410Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8424750Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8426060Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8427410Z 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-08-26T19:35:58.8428890Z 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-08-26T19:35:58.8430250Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8431670Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8433150Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8434330Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8435850Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8437120Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8438440Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8439920Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8441250Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8442590Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8443940Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8445380Z 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-08-26T19:35:58.8446700Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8448410Z 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-08-26T19:35:58.8449520Z 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-08-26T19:35:58.8450800Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8452200Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8453420Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8454930Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8456400Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8457570Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8458800Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8460170Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8461620Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8462880Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8464190Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8465580Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8466940Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8468320Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8469710Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8471010Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8472420Z 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-08-26T19:35:58.8473650Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8474890Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8476370Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8477660Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8478890Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8480290Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8481850Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8483090Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8484360Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8485880Z 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-08-26T19:35:58.8487390Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8488610Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8489960Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8491300Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8492680Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8494070Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8495350Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8496660Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8497970Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8499320Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8500610Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8502040Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8503440Z 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-08-26T19:35:58.8504780Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8506150Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8507490Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8508830Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8510130Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8511730Z 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-08-26T19:35:58.8512840Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8514110Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8515430Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8516760Z copying torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8518000Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8519240Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8520570Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8521950Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8523300Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8524510Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8525880Z 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-08-26T19:35:58.8527270Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8528520Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8529960Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8531190Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8532550Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8533770Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8535190Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8536590Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8537940Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8539250Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8540570Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8542010Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8543290Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8544590Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8546040Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8547770Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8549280Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8550740Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8552320Z 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-08-26T19:35:58.8553730Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8555150Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8556300Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8557620Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8559010Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8560370Z 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-08-26T19:35:58.8562080Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8562980Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8564610Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8566030Z 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-08-26T19:35:58.8567140Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8568470Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8569980Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8571350Z 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-08-26T19:35:58.8572690Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8574910Z 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-08-26T19:35:58.8576050Z 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-08-26T19:35:58.8577560Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8578880Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8580220Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8581450Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8582740Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8584020Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8585460Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8586760Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8588100Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8589620Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8591000Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8592390Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8593760Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8595090Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8596380Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8597830Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8599080Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8600440Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8601820Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8603370Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8604620Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8605850Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8607340Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8608550Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8609900Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8611330Z 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-08-26T19:35:58.8612650Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8614090Z copying torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8615370Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8616630Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8618310Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8619300Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8620660Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8622010Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8623410Z 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-08-26T19:35:58.8624730Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8626170Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8627510Z 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-08-26T19:35:58.8628870Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8630340Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8631760Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8633120Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8634520Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8635810Z 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-08-26T19:35:58.8637260Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8638610Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8639810Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8641040Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8642580Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8644070Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8645310Z 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-08-26T19:35:58.8646660Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8648160Z 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-08-26T19:35:58.8649580Z copying torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8650910Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8652160Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8653530Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8655000Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8656240Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8657610Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8658920Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8660250Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8661500Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8663030Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8664320Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8665670Z 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-08-26T19:35:58.8667030Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8668590Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8669910Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8671200Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8672600Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8673860Z 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-08-26T19:35:58.8675290Z 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-08-26T19:35:58.8676500Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8677830Z copying torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8679030Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8680430Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8681620Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8683000Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8684230Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8685490Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8687060Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8688460Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8689720Z copying torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8690970Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8692270Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8694040Z 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-08-26T19:35:58.8695170Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8696450Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8697790Z 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-08-26T19:35:58.8699070Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8700640Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8701890Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8703280Z copying torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8704530Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8706040Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8707460Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8708680Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8709970Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8711220Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8712820Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8714100Z copying torch/include/ATen/ops/_spsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8715500Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8716790Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8718150Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8719780Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8721270Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8722830Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8724190Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8725640Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8726980Z 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-08-26T19:35:58.8728340Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8729860Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8731330Z 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-08-26T19:35:58.8732670Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8733920Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8735550Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8736910Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8738210Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8739520Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8741240Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8742390Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8743880Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8745340Z 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-08-26T19:35:58.8746770Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8748150Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8749530Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8750890Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8752290Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8753740Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8754990Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8756510Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8757850Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8759710Z 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-08-26T19:35:58.8760760Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8762200Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8763560Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8764880Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8766460Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8767870Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8769300Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8770580Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8771890Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8773360Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8774750Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8776220Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8777470Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8778930Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8784080Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8784370Z copying torch/include/ATen/ops/indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8784690Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8785030Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8785980Z 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-08-26T19:35:58.8787310Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8788670Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8790210Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8791460Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8792970Z copying torch/include/ATen/ops/_nnz_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8794460Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8795950Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8797330Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8799000Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8800180Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8801560Z 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-08-26T19:35:58.8803120Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8804530Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8806050Z 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-08-26T19:35:58.8807560Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8808830Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8810300Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8811720Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8813100Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8814560Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8816150Z 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-08-26T19:35:58.8817440Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8819170Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8820520Z 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-08-26T19:35:58.8821730Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8823030Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8824380Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8825850Z 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-08-26T19:35:58.8827410Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8828740Z 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-08-26T19:35:58.8830080Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8831440Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8832980Z 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-08-26T19:35:58.8834440Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8835960Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8837310Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8838580Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8839910Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8841470Z 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-08-26T19:35:58.8842840Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8844100Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8845380Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8846620Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8848090Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8849470Z 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-08-26T19:35:58.8850750Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8852220Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8853430Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8854750Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8856090Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8857420Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8858890Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8860530Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8861710Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8862970Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8864320Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8865760Z 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-08-26T19:35:58.8866950Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8868280Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8869610Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8870900Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8872390Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8873460Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8874770Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8876080Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8877420Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8878820Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8880130Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8881420Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8882830Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8884070Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8885460Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8886730Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8888160Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8889410Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8890710Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8892260Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8893430Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8894800Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8896190Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8897460Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8898770Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8900170Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8901420Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8902760Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8904080Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8905370Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8906740Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8908130Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8909560Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8910780Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8912150Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8913540Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8914760Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8916130Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8917500Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8918890Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8920340Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8921730Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8923070Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8924650Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8925730Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8927090Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8928440Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8929810Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8931030Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8932350Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8933780Z 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-08-26T19:35:58.8935090Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8936420Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8937880Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8938960Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8940440Z 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-08-26T19:35:58.8941680Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8943020Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8944420Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8945800Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8947050Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8948500Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8949770Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8951070Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8952420Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8953680Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8955040Z 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-08-26T19:35:58.8956550Z 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-08-26T19:35:58.8957840Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8959170Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8960480Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8961720Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8963010Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8964660Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8966420Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8968000Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8969280Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8970680Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8972210Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8973540Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8975060Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8976480Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8977880Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8979430Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8980760Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8982160Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8983550Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8984830Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8986140Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8987620Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8988970Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8990270Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8991750Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8993200Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8994610Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8995950Z copying torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8997280Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.8998750Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9000180Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9001480Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9002720Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9004020Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9005350Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9006750Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9008010Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9009310Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9010590Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9012040Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9013260Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9014740Z 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-08-26T19:35:58.9015950Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9017530Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9018500Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9019860Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9021110Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9022450Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9023700Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9025000Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9026300Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9027570Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9029130Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9030240Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9031560Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9032890Z copying torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9034290Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9035530Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9036750Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9038120Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9039410Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9040920Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9041970Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9043240Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9044530Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9045960Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9047380Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9048580Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9049890Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9051190Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9052880Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9053840Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9055210Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9056490Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9057770Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9059110Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9060420Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9061820Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9063170Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9064520Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9065900Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9067150Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9068490Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9070060Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9071340Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9072770Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9074250Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9075550Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9077050Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9078430Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9079790Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9081080Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9082480Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9083700Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9085140Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9086430Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9087880Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9089390Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9090860Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9092210Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9093470Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9094890Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9096150Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9097460Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9098880Z 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-08-26T19:35:58.9100280Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9101580Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9102840Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9104310Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9105690Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9106920Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9108310Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9109950Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9110890Z copying torch/include/ATen/ops/lshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9112140Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9113570Z copying torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9114970Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9116290Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9117630Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9118980Z 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-08-26T19:35:58.9120310Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9121810Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9123320Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9124360Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9125670Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9127050Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9128420Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9129720Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9131030Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9132340Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9133730Z 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-08-26T19:35:58.9135140Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9136490Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9137930Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9139200Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9140710Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9142070Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9143420Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9144890Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9146170Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9147550Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9149020Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9150370Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9151730Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9153060Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9154350Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9155860Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9157330Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9158870Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9160140Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9161580Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9163020Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9164430Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9165670Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9167180Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9168580Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9170060Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9171330Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9172710Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9174060Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9175370Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9176760Z 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-08-26T19:35:58.9178140Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9179260Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9180600Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9181870Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9183270Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9184500Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9185890Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9187150Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9188500Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9189920Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9191130Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9192500Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9193760Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9195260Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9196470Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9197770Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9199050Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9200340Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9201650Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9202960Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9204220Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9205620Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9206930Z copying torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9208280Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9209700Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9211040Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9212480Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9213710Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9215020Z copying torch/include/ATen/ops/hash_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9216350Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9217740Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9219030Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9220330Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9221640Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9223050Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9224340Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9225740Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9227090Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9228540Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9229950Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9231240Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9232540Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9233890Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9235640Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9236560Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9238070Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9239430Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9240910Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9242110Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9243570Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9244860Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9246370Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9247560Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9249050Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9250460Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9251700Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9253290Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9254630Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9256040Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9257300Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9258680Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9260020Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9261870Z 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-08-26T19:35:58.9263390Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9264960Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9266540Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9267770Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9269350Z 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-08-26T19:35:58.9270840Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9272330Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9273680Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9275080Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9276680Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9278150Z 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-08-26T19:35:58.9279630Z 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-08-26T19:35:58.9280910Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9282260Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9283790Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9285120Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9286380Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9287760Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9289410Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9290990Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9292320Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9293800Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9295270Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9296730Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9298060Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9299380Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9300850Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9302230Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9303890Z copying torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9305110Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9306460Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9307780Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9309090Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9310630Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9312470Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9313710Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9315130Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9316490Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9318250Z 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-08-26T19:35:58.9319580Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9321000Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9322480Z 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-08-26T19:35:58.9324040Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9325440Z 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-08-26T19:35:58.9326820Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9328100Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9329500Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9330820Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9332330Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9334020Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9335040Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9336360Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9337740Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9339230Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9340480Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9341800Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9343220Z 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-08-26T19:35:58.9344580Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9346000Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9347470Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9348680Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9350130Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9351320Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9352670Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9354230Z 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-08-26T19:35:58.9355530Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9356850Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9358200Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9359610Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9361160Z 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-08-26T19:35:58.9362480Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9363820Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9365250Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9366460Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9368010Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9369340Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9370710Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9372000Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9373340Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9374960Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9376310Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9377670Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9378920Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9380240Z 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-08-26T19:35:58.9382280Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9383240Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9384600Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9385900Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9387290Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9388730Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9390180Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9391350Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9392760Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9394120Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9395780Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9397120Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9398430Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9399870Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9401300Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9402950Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9404310Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9405750Z 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-08-26T19:35:58.9407170Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9408380Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9409710Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9411230Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9413000Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9414260Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9415660Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9417290Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9418970Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9420150Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9421450Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9422810Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9424120Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9425760Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9427100Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9428500Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9429800Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9431230Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9432960Z 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-08-26T19:35:58.9434300Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9435650Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9436980Z copying torch/include/ATen/ops/col2im_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9438330Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9439880Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9441160Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9442860Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9444260Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9445520Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9446920Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9448250Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9450040Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9451300Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9452560Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9453840Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9455230Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9456450Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9457710Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9459110Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9460470Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9462150Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9463300Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9464690Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9465940Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9467470Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9468800Z 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-08-26T19:35:58.9470150Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9471390Z 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-08-26T19:35:58.9473020Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9474760Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9476250Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9477620Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9479130Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9480700Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9482100Z 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-08-26T19:35:58.9483740Z 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-08-26T19:35:58.9484940Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9486530Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9487570Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9488790Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9490170Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9491440Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9492760Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9494390Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9495620Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9497030Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9498380Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9499640Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9501000Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9502390Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9503680Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9505000Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9506430Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9507810Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9508950Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9510320Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9511610Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9513080Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9514230Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9515740Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9517540Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9518460Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9519800Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9525250Z 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-08-26T19:35:58.9525550Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9525830Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9526090Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9526350Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9527510Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9528800Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9530080Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9531410Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9532700Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9533990Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9535310Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9536580Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9537930Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9539190Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9540720Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9541790Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9543250Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9544490Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9545920Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9547210Z 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-08-26T19:35:58.9548630Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9549950Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9551170Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9552500Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9553740Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9555110Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9556380Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9557720Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9558970Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9560380Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9561880Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9563060Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9564380Z 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-08-26T19:35:58.9565760Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9566910Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9568250Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9569500Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9570880Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9572250Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9573570Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9575080Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9576400Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9577800Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9579190Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9580610Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9582070Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9583420Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9584700Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9586300Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9587780Z 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-08-26T19:35:58.9589200Z 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-08-26T19:35:58.9590440Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9591790Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9593050Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9594310Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9595680Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9597050Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9598650Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9599860Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9601080Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9602500Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9603870Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9605100Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9606410Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9607660Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9609150Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9610360Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9611770Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9613030Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9614340Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9615810Z 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-08-26T19:35:58.9617650Z 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-08-26T19:35:58.9618800Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9620220Z copying torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9621700Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9623540Z copying torch/include/ATen/ops/_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9624410Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9625970Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9627310Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9628580Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9629940Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9631340Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9632630Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9634110Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9635470Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9636910Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9638190Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9639550Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9640910Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9642230Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9643790Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9644870Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9646110Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9647720Z 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-08-26T19:35:58.9648900Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9650340Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9651500Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9653000Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9654290Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9655670Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9657010Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9658490Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9659860Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9661230Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9662500Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9663820Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9665340Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9666680Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9668050Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9669520Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9670750Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9671990Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9673320Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9674650Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9676260Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9677300Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9678610Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9679910Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9681180Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9682520Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9683820Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9685360Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9686550Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9687770Z copying torch/include/ATen/ops/_spsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9689100Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9690400Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9691660Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9693150Z 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-08-26T19:35:58.9694450Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9695700Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9697130Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9698450Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9699770Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9701070Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9702350Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9703730Z 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-08-26T19:35:58.9705050Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9706370Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9707630Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9709030Z 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-08-26T19:35:58.9710500Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9711760Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9713190Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9714460Z 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-08-26T19:35:58.9715820Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9717210Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9718500Z 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-08-26T19:35:58.9719840Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9721190Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9722480Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9723910Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9725210Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9726750Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9728240Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9729720Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9730940Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9732360Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9733670Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9735110Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9736480Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9737800Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9739100Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9740460Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9741890Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9743250Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9744540Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9746010Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9747480Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9748620Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9749990Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9751170Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9752700Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9753970Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9755260Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9756610Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9758040Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9759400Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9760800Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9762220Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9763430Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9764850Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9766130Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9767440Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9768770Z 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-08-26T19:35:58.9770210Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9771540Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9772990Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9774270Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9775660Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9777020Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9778600Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9780550Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9781620Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9783040Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9784450Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9785860Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9787380Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9788670Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9790120Z 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-08-26T19:35:58.9791360Z 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-08-26T19:35:58.9792750Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9794080Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9795610Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9796830Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9798640Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9799590Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9801090Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9802200Z 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-08-26T19:35:58.9803480Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9804920Z 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-08-26T19:35:58.9806150Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9807700Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9808960Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9810350Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9811660Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9813040Z 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-08-26T19:35:58.9814390Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9815850Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9816970Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9818260Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9819620Z copying torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9820960Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9822240Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9823630Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9825030Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9826450Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9827830Z 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-08-26T19:35:58.9829140Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9830610Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9831820Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9833300Z 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-08-26T19:35:58.9834510Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9835810Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9837130Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9838490Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9839900Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9841320Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9842580Z 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-08-26T19:35:58.9843970Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9845280Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9846600Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9847910Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9849260Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9850520Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9851770Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9853100Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9854470Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9855760Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9857270Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9858830Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9860040Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9861290Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9862820Z 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-08-26T19:35:58.9864020Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9865660Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9866980Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9868240Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9869570Z copying torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9871120Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9872290Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9873630Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9875200Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9876560Z 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-08-26T19:35:58.9877820Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9879430Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9880890Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9882270Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9883910Z 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-08-26T19:35:58.9885320Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9886450Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9887800Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9889730Z 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-08-26T19:35:58.9890900Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9892260Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9893520Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9895060Z 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-08-26T19:35:58.9896440Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9897980Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9899160Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9900540Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9901890Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9903230Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9904920Z 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-08-26T19:35:58.9906080Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9907830Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9908870Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9910100Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9911390Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9912850Z 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-08-26T19:35:58.9914310Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9915670Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9916970Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9918320Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9919600Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9920920Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9922360Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9924030Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9925500Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9927300Z 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-08-26T19:35:58.9928430Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9929890Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9931780Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9932740Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9934200Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9935650Z 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-08-26T19:35:58.9937110Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9938420Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9940290Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9941290Z 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-08-26T19:35:58.9942800Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9944000Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9945540Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9947040Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9948480Z 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-08-26T19:35:58.9949740Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9951040Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9952460Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9953870Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9955430Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9956990Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9958280Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9959770Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9961190Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9962580Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9963990Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9965820Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9966680Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9967930Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9969220Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9970770Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9972270Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9973770Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9975100Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9976430Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9977770Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9979320Z 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-08-26T19:35:58.9980600Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9982050Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9983310Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:58.9984890Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0175700Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0177000Z 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-08-26T19:35:59.0178290Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0676030Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0677520Z 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-08-26T19:35:59.0679290Z 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-08-26T19:35:59.0680950Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0682680Z 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-08-26T19:35:59.0684320Z 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-08-26T19:35:59.0685680Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0687340Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0688950Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0690730Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0692490Z 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-08-26T19:35:59.0693920Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0695650Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0704810Z 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-08-26T19:35:59.0716210Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0748290Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0749860Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0751700Z 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-08-26T19:35:59.0753180Z 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-08-26T19:35:59.0754840Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0756330Z 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-08-26T19:35:59.0757830Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0759360Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0760970Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0762540Z 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-08-26T19:35:59.0764150Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0765700Z 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-08-26T19:35:59.0767340Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0768750Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0770280Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0772050Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0773760Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0775540Z 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-08-26T19:35:59.0776850Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0778430Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0779750Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0781360Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0782970Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0784500Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0786020Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0787590Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0789250Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0790800Z copying torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0792350Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0793660Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0795240Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0796740Z 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-08-26T19:35:59.0798430Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0799950Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0801780Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0803170Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0804710Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0806090Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0807980Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0809090Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0810630Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0812230Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0813750Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0815160Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0816820Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0818240Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0819710Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0821390Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0822830Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0824410Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0825890Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0827620Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0829150Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0830680Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0832220Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0833640Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0835330Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0836820Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0838460Z 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-08-26T19:35:59.0839850Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0841280Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0842800Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0844520Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0846100Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0847700Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0849320Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0850900Z copying torch/include/ATen/ops/_indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0852650Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0854290Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0855840Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0857420Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0859090Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0860760Z 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-08-26T19:35:59.0862260Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0864040Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0865460Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0867050Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0868630Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0870320Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0871920Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0873440Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0874990Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0876570Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0878190Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0879900Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0881430Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0883140Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0884720Z 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-08-26T19:35:59.0886230Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0887870Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0889280Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0890870Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0892350Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0895140Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0895540Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0897110Z 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-08-26T19:35:59.0898560Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0900000Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0902350Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0902890Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0904460Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0906010Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0907540Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0908870Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0910520Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0912180Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0913640Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0915310Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0916750Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0918310Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0919820Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0921370Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0922800Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0924420Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0925980Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0927560Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0928910Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0930710Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0932270Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0933700Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0935340Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0936810Z 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-08-26T19:35:59.0938290Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0939760Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0941120Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0942460Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0943910Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0945530Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0947410Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0949000Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0950590Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0952200Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0953840Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0955360Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0956850Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0958320Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0959930Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0961400Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0963000Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0964250Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0965640Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0967140Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0968640Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0970170Z 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-08-26T19:35:59.0971520Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0972980Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0974540Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0976030Z 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-08-26T19:35:59.0977330Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0978640Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0980010Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0981540Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0983050Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0984610Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0985890Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0987250Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0988740Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0990040Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0991440Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0993020Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0994380Z 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-08-26T19:35:59.0995800Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0997170Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.0998740Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1000040Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1001450Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1003010Z 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-08-26T19:35:59.1004350Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1005680Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1006980Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1008580Z 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-08-26T19:35:59.1009980Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1011500Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1012820Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1014210Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1015590Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1016960Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1018350Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1019750Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1025630Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1026120Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1026350Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1026610Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1026890Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1028090Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1029280Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1030690Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1032030Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1033520Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1034710Z 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-08-26T19:35:59.1036190Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1037410Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1038770Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1040120Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1041630Z 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-08-26T19:35:59.1042830Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1044330Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1045510Z 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-08-26T19:35:59.1047110Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1048260Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1049530Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1050890Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1052210Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1053580Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1054930Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1056140Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1057540Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1058830Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1060100Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1061420Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1062970Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1064610Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1066010Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1067350Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1068710Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1069990Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1071370Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1072640Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1074010Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1075490Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1076750Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1078100Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1079450Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1080790Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1082160Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1083740Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1085050Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1086480Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1087730Z 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-08-26T19:35:59.1089020Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1090470Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1091820Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1093260Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1094620Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1096130Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1097550Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1098930Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1100270Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1101530Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1103040Z copying torch/include/ATen/ops/rshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1104470Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1105720Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1107140Z 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-08-26T19:35:59.1108680Z 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-08-26T19:35:59.1110040Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1111190Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1112500Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1113920Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1115250Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1116600Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1118010Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1119300Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1120650Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1122030Z 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-08-26T19:35:59.1123320Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1124650Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1126780Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1127570Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1129170Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1130310Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1131610Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1132930Z 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-08-26T19:35:59.1134230Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1135570Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1137140Z 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-08-26T19:35:59.1138320Z 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-08-26T19:35:59.1139710Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1141050Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1142370Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1143810Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1145090Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1146510Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1147950Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1149390Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1150750Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1152300Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1153750Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1154860Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1156100Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1157360Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1158860Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1160250Z 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-08-26T19:35:59.1162020Z 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-08-26T19:35:59.1163070Z 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-08-26T19:35:59.1164500Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1165760Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1167090Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1168480Z 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-08-26T19:35:59.1170570Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1171740Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1173260Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1174560Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1175840Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1177240Z 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-08-26T19:35:59.1178590Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1179890Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1181130Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1182490Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1183900Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1185280Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1186530Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1188180Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1189250Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1190660Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1191970Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1193370Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1194690Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1195980Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1197310Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1198620Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1200070Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1201560Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1202820Z 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-08-26T19:35:59.1204080Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1205340Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1206790Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1208030Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1209360Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1210640Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1212060Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1213360Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1214750Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1215970Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1217510Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1218760Z 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-08-26T19:35:59.1220050Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1221450Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1222850Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1224420Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1225620Z 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-08-26T19:35:59.1227050Z 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-08-26T19:35:59.1228520Z copying torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1229820Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1231110Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1232520Z 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-08-26T19:35:59.1234010Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1235120Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1236440Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1237710Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1239140Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1240350Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1241660Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1242980Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1244470Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1245570Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1246920Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1248280Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1249770Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1251110Z copying torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1252380Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1253820Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1255050Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1256350Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1257670Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1259120Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1260410Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1261830Z 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-08-26T19:35:59.1263170Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1264370Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1265630Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1267050Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1268500Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1269760Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1271290Z 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-08-26T19:35:59.1272670Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1273850Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1275180Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1276640Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1277940Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1279170Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1280520Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1281790Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1283090Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1284580Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1285920Z copying torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1287260Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1288610Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1289870Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1291470Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1292650Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1293980Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1295350Z 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-08-26T19:35:59.1296650Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1298090Z 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-08-26T19:35:59.1299340Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1300700Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1302170Z 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-08-26T19:35:59.1303600Z 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-08-26T19:35:59.1304910Z 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-08-26T19:35:59.1306310Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1307590Z 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-08-26T19:35:59.1308950Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1310350Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1311640Z copying torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1312900Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1314430Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1315480Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1316750Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1318360Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1319530Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1320850Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1322190Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1323550Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1324810Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1326090Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1327380Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1328770Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1330140Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1331480Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1332680Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1334390Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1335580Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1336710Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1337950Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1339340Z 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-08-26T19:35:59.1340700Z 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-08-26T19:35:59.1342090Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1343210Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1344530Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1345880Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1347120Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1348530Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1349830Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1351060Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1352360Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1353630Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1355600Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1356710Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1358210Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1359520Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1360880Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1362240Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1363480Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1364770Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1366080Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1367360Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1368630Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1370130Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1371500Z copying torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1372790Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1373970Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1375280Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1376630Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1378060Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1379320Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1380800Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1381990Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1383350Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1384600Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1385930Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1387490Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1388910Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1390290Z copying torch/include/ATen/ops/im2col_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1391660Z copying torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1393110Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1394270Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1395560Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1396910Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1398220Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1399610Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1400960Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1402240Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1403740Z 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-08-26T19:35:59.1405110Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1406630Z copying torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1407910Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1409340Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1410700Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1412200Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1413490Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1414930Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1416360Z 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-08-26T19:35:59.1417870Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1419190Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1420530Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1421870Z 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-08-26T19:35:59.1423380Z 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-08-26T19:35:59.1424670Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1426090Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1427360Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1428890Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1430310Z copying torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1431760Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1433050Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1434450Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1435700Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1437130Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1438470Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1439970Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1441220Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1442550Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1444090Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1445360Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1446730Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1448110Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1449300Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1450770Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1452070Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1453610Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1454700Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1456060Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1457360Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1458620Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1460180Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1461410Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1462730Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1463990Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1465390Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1466770Z 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-08-26T19:35:59.1468160Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1469470Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1470730Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1472050Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1473330Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1474750Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1476000Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1477410Z 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-08-26T19:35:59.1478590Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1480070Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1481310Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1482650Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1483930Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1485420Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1486710Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1488160Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1489710Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1490740Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1492140Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1493420Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1494870Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1496280Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1497640Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1499030Z 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-08-26T19:35:59.1500310Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1501730Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1503050Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1504350Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1505790Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1506990Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1508560Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1510190Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1511450Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1512810Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1514110Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1515450Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1516830Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1518130Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1519530Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1520690Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1522040Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1523370Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1529470Z copying torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1530310Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1530990Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1531650Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1532310Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1532980Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1533690Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1535080Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1536440Z 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-08-26T19:35:59.1537900Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1539160Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1540590Z 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-08-26T19:35:59.1542040Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1543280Z 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-08-26T19:35:59.1544570Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1545890Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1547170Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1548550Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1549970Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1551260Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1552590Z 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-08-26T19:35:59.1553970Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1555530Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1556650Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1558060Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1559300Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1560820Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1562240Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1563540Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1565020Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1566310Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1567700Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1569050Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1570480Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1571760Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1573090Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1574450Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1576030Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1577350Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1578720Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1580080Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1581390Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1582720Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1584110Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1585480Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1586790Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1588210Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1589650Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1591120Z 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-08-26T19:35:59.1592310Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1593630Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1595030Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1596410Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1597780Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1599050Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1600500Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1601850Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1603170Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1604520Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1605950Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1607440Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1608840Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1610180Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1611670Z 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-08-26T19:35:59.1613070Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1614380Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1615890Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1617190Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1618540Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1619800Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1621190Z 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-08-26T19:35:59.1622530Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1623890Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1625230Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1626640Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1627900Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1629230Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1630630Z 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-08-26T19:35:59.1631900Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1633220Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1634730Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1635990Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1637320Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1638740Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1640130Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1641450Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1642810Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1644220Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1645570Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1646850Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1648230Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1649600Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1651160Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1652840Z 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-08-26T19:35:59.1654350Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1655830Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1657150Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1658590Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1659980Z 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-08-26T19:35:59.1661260Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1662780Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1664070Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1665500Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1666900Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1668440Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1669870Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1671230Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1672500Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1673700Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1675060Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1676390Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1677720Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1678980Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1680320Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1681530Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1682840Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1684180Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1685620Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1686870Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1688190Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1689500Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1690850Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1692220Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1693420Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1694880Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1696230Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1701520Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1702750Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1709540Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1710420Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1711850Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1717370Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1718320Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1725100Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1726720Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1733830Z 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-08-26T19:35:59.1734950Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1736200Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1741650Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1742780Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1750250Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1751530Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1753010Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1758680Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1759870Z copying torch/include/ATen/ops/_safe_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1766600Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1767690Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1768920Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1774250Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1775260Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1781900Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1783060Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1784490Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1791320Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1792370Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1799170Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1800310Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1804840Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1806790Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1814690Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1815870Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1823140Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1824240Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1830710Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1831960Z 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-08-26T19:35:59.1833300Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1836440Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1844270Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1845420Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1848660Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1853300Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1857100Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1858260Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1863080Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1864890Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1870640Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1871810Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1873970Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1881140Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1882270Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1889000Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1890120Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1896980Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1897880Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1899180Z copying torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1904970Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1905850Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1912850Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1913930Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1915320Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1920270Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1921560Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1928200Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1929400Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1930590Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1937690Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1938780Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1945260Z 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-08-26T19:35:59.1946010Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1952450Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1953460Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1954830Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1960430Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1961320Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1967860Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1968890Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1975190Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1976350Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1978230Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1983720Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1984880Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1992170Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1993170Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.1999670Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2000670Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2002060Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2008760Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2013450Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2016150Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2023410Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2024710Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2031450Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2032520Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2039280Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2040570Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2041830Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2046500Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2048190Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2054200Z 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-08-26T19:35:59.2055220Z copying torch/include/ATen/ops/_fused_rms_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2057270Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2063980Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2065460Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2071400Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2072460Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2073920Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2081380Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2082500Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2089380Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2090590Z 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-08-26T19:35:59.2091870Z 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-08-26T19:35:59.2097170Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2099750Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2104070Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2106410Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2107430Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2113200Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2114480Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2120750Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2121790Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2128760Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2130100Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2131370Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2136360Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2137910Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2144210Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2145680Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2152290Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2153460Z copying torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2154840Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2160040Z 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-08-26T19:35:59.2161280Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2167510Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2169010Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2175480Z 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-08-26T19:35:59.2176730Z copying torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2178360Z 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-08-26T19:35:59.2183470Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2184580Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2190780Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2192350Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2199680Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2200760Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2206840Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2207940Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2214710Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2216110Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2221340Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2223860Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2229370Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2230600Z 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-08-26T19:35:59.2237400Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2238550Z 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-08-26T19:35:59.2250360Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2251140Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2251940Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2253350Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2254920Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2260650Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2261790Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2269210Z 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-08-26T19:35:59.2270190Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2271540Z copying torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2276590Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2277730Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2283930Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2285780Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2292250Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2293150Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2294430Z 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-08-26T19:35:59.2301570Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2302610Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2309530Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2310690Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2318000Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2318970Z copying torch/include/ATen/ops/_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2320370Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2325450Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2326550Z 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-08-26T19:35:59.2333720Z 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-08-26T19:35:59.2334690Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2336020Z 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-08-26T19:35:59.2343320Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2344360Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2345730Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2347530Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2350340Z 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-08-26T19:35:59.2352460Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2357380Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2358520Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2361530Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2366580Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2374050Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2375840Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2382250Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2383240Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2384690Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2391070Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2392220Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2399310Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2400370Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2404330Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2406300Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2407820Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2414270Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2415710Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2423160Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2424190Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2428380Z 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-08-26T19:35:59.2430590Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2437580Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2438660Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2445820Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2446810Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2448220Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2453640Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2454620Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2461670Z 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-08-26T19:35:59.2462890Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2464830Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2471350Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2472450Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2478890Z 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-08-26T19:35:59.2480320Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2487180Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2488270Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2489680Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2496060Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2496930Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2503540Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2504460Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2505840Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2511120Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2512300Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2519850Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2520850Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2522170Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2527560Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2528780Z 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-08-26T19:35:59.2535580Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2536590Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2537920Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2543970Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2545170Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2552210Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2559730Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2560890Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2562590Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2568380Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2569460Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2576940Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2578000Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2579400Z 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-08-26T19:35:59.2584550Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2585840Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2593420Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2594520Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2595810Z 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-08-26T19:35:59.2601090Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2602060Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2604550Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2610140Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2611140Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2617110Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2619790Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2624890Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2626140Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2627840Z 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-08-26T19:35:59.2632660Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2640360Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2641350Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2647400Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2648620Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2654770Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2655930Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2657310Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2664670Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2665750Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2672210Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2673170Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2679980Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2681160Z 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-08-26T19:35:59.2682460Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2687620Z 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-08-26T19:35:59.2688930Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2695490Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2696510Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2697820Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2704240Z 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-08-26T19:35:59.2705360Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2711700Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2719640Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2720590Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2721880Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2727480Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2728520Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2734370Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2737730Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2739080Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2744260Z 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-08-26T19:35:59.2746020Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2747400Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2752050Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2753100Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2754330Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2759230Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2761150Z 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-08-26T19:35:59.2767630Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2768550Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2775580Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2776660Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2783510Z 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-08-26T19:35:59.2784460Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2785730Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2791040Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2792240Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2799080Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2800410Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2802340Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2806680Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2807860Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2815160Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2816410Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2823520Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2824790Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2826070Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2832050Z copying torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2833220Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2834730Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2838840Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2846700Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2847820Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2854120Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2855830Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2861860Z 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-08-26T19:35:59.2862890Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2864220Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2870660Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2871860Z 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-08-26T19:35:59.2877630Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2885470Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2886530Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2887940Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2894330Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2895390Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2902250Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2903310Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2910140Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2911210Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2912730Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2916320Z 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-08-26T19:35:59.2918690Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2923150Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2924270Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2928800Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2932470Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2936290Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2937780Z 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-08-26T19:35:59.2941890Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2945040Z copying torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2949920Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2951190Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2957140Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2959510Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2965680Z 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-08-26T19:35:59.2966760Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2968420Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2974120Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2975170Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2978470Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2983400Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2984600Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2989650Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2995040Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2996810Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.2998720Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3004860Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3005820Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3007200Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3013190Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3014480Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3020470Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3021540Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3028260Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3029750Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3031020Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3037960Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3039020Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3048470Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3053520Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3056990Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3059880Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3060850Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3065890Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3068730Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3073350Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3074490Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3078290Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3082380Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3087410Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3088440Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3090150Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3096550Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3098020Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3103950Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3105070Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3111860Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3113120Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3119770Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3120650Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3122090Z 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-08-26T19:35:59.3127870Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3128790Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3135180Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3136410Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3137780Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3142520Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3144730Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3149930Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3151380Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3157220Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3158420Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3164790Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3165950Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3167370Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3173940Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3175080Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3260900Z 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-08-26T19:35:59.3262270Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3263320Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3265050Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3266060Z 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-08-26T19:35:59.3267340Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3268690Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3269950Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3271290Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3272600Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3273860Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3275240Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3276530Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3277840Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3279220Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3280430Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3281810Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3283090Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3284360Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3285650Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3286970Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3288330Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3289540Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3290760Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3292200Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3293590Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3294850Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3296120Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3297400Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3298810Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3300050Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3301300Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3302670Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3304080Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3305390Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3306730Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3308020Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3309270Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3314160Z 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-08-26T19:35:59.3315050Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3322230Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3323570Z 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-08-26T19:35:59.3324660Z 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-08-26T19:35:59.3330250Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3331640Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3337850Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3339170Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3340520Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3347890Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3349040Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3393590Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3394590Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3398420Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3398690Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3399040Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3399980Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3401260Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3402740Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3406090Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3410320Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3413300Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3414460Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3420150Z 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-08-26T19:35:59.3422400Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3428010Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3428910Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3430650Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3437380Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3438500Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3444870Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3446290Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3452590Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3453800Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3455110Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3460420Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3461410Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3468050Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3469510Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3476030Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3477350Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3478520Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3484280Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3485320Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3491630Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3492920Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3499770Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3500780Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3502100Z 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-08-26T19:35:59.3507480Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3508820Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3515420Z 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-08-26T19:35:59.3516360Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3517680Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3524130Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3525280Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3532010Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3532820Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3539940Z 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-08-26T19:35:59.3540860Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3542100Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3547850Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3548730Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3557220Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3561640Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3563430Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3564880Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3566170Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3575180Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3580850Z 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-08-26T19:35:59.3581840Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3588360Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3589710Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3590980Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3597780Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3598900Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3605770Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3606780Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3613670Z 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-08-26T19:35:59.3614910Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3616330Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3621900Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3623400Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3630080Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3631320Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3632590Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3638110Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3639020Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3646020Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3647020Z 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-08-26T19:35:59.3648320Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3654160Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3655100Z copying torch/include/ATen/ops/_scaled_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3662490Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3663390Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3664800Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3670750Z 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-08-26T19:35:59.3673090Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3678520Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3680160Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3681550Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3688200Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3689220Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3697050Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3698000Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3720650Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3726930Z 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-08-26T19:35:59.3732890Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3733920Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3735310Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3736710Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3738030Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3739320Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3740690Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3742060Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3743330Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3744650Z 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-08-26T19:35:59.3746140Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3747310Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3748640Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3749860Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3751280Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3752550Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3753890Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3755270Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3756510Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3758010Z 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-08-26T19:35:59.3759210Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3760640Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3762000Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3763300Z 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-08-26T19:35:59.3764570Z copying torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3765890Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3767380Z 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-08-26T19:35:59.3768730Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3770060Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3771320Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3772660Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3773920Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3775310Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3776660Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3778090Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3779420Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3780900Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3782170Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3783450Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3785020Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3832890Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3834010Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3835180Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3836480Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3837830Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3839020Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3840410Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3841720Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3848010Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3848440Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3848790Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3849170Z 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-08-26T19:35:59.3849430Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3850440Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3851540Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3852960Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3854250Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3855510Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3856780Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3858200Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3859410Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3860690Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3967810Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3968830Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3970280Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3971550Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3972840Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3974140Z 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-08-26T19:35:59.3975440Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3976840Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3978140Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3979410Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3980790Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.3982220Z copying torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4044780Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4045760Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4047020Z copying torch/include/ATen/ops/_fused_rms_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4048450Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4049860Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4051070Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4052400Z copying torch/include/ATen/ops/_safe_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4053830Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4055200Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4056460Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4057870Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4059240Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4060570Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4062190Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4063280Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4064650Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4065920Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4067210Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4068440Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4069840Z 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-08-26T19:35:59.4085350Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4086560Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4088310Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4089390Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4090730Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4092110Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4093360Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4094760Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4096170Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4097460Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4098950Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4100200Z copying torch/include/ATen/ops/_cudnn_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4101440Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4102900Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4104130Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4162020Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4163110Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4164450Z 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-08-26T19:35:59.4165670Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4166940Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4168240Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4169600Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4170970Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4172210Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4173520Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4174770Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4176130Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4177440Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4178690Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4213900Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4214890Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4216130Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4217550Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4218940Z 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-08-26T19:35:59.4220180Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4221450Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4222900Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4224040Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4225360Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4226800Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4228060Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4229370Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4230700Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4267760Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4268860Z 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-08-26T19:35:59.4270200Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4271520Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4272940Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4274140Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4275490Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4276920Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4278240Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4279570Z 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-08-26T19:35:59.4281000Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4282270Z copying torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4283730Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4285080Z 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-08-26T19:35:59.4286430Z copying torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4287790Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4289140Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4290420Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4291840Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4293360Z 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-08-26T19:35:59.4294670Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4295810Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4297180Z 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-08-26T19:35:59.4298470Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4299730Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4301030Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4302470Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4303710Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4316090Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4317100Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4318570Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4319760Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4321140Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4322510Z 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-08-26T19:35:59.4323820Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4325180Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4326540Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4327960Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4329280Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4330500Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4331940Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4333220Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4334420Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4335890Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4337190Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4338500Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4339770Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4341060Z copying torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4342340Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4343650Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4345060Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4346300Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4347640Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4349030Z 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-08-26T19:35:59.4350330Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4351620Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4414590Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4415830Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4417040Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4418390Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4419700Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4420980Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4422400Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4423640Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4425470Z 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-08-26T19:35:59.4426580Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4427860Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4429130Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4430480Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4431820Z copying torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4433190Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4434560Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4436100Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4437230Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4438660Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4440080Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4510860Z 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-08-26T19:35:59.4511940Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4513180Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4514590Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4516020Z 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-08-26T19:35:59.4517320Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4518880Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4519910Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4521270Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4522560Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4523840Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4580360Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4581510Z 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-08-26T19:35:59.4582780Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4584240Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4585670Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4586910Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4588330Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4589680Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4590980Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4592300Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4593680Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4594980Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4596240Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4597620Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4598840Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4600240Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4601590Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4602980Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4604310Z 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-08-26T19:35:59.4606050Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4607000Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4608280Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4609810Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4611070Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4612410Z 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-08-26T19:35:59.4613740Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4615170Z 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-08-26T19:35:59.4616470Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4617700Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4619030Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4620420Z 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-08-26T19:35:59.4621770Z 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-08-26T19:35:59.4623120Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4624550Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4625720Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4627060Z copying torch/include/ATen/ops/_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4628330Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4629780Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4631000Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4632250Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4633560Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4634910Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4636330Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4637640Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4638960Z 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-08-26T19:35:59.4640500Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4641560Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4642930Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4644320Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4645570Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4646800Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4648190Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4649440Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4650770Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4652060Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4653370Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4654630Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4655940Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4739960Z 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-08-26T19:35:59.4740950Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4742360Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4743690Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4745000Z 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-08-26T19:35:59.4746280Z 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-08-26T19:35:59.4747630Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4748900Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4750240Z 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-08-26T19:35:59.4751540Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4752900Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4754370Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4755620Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4756980Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4758240Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4759620Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4761070Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4762320Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4763610Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4764970Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4766220Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4767590Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4768830Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4770240Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4771530Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4772990Z 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-08-26T19:35:59.4774440Z 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-08-26T19:35:59.4775730Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4777120Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4778450Z 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-08-26T19:35:59.4780040Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4781230Z 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-08-26T19:35:59.4782570Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4783860Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4785130Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4786530Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4787770Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4789120Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4790420Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4791830Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4793060Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4794370Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4795950Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4797170Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4798410Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4799770Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4801080Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4802460Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4803680Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4805050Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4806410Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4807750Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4809100Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4810440Z 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-08-26T19:35:59.4811710Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4813140Z 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-08-26T19:35:59.4814480Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4815870Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4817830Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4819400Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4826790Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4827870Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4829120Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4834430Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4835710Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4840890Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4843080Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4850970Z 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-08-26T19:35:59.4852820Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4859640Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4860670Z 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-08-26T19:35:59.4862200Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4867460Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4868390Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4871750Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4876370Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4880890Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4883610Z 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-08-26T19:35:59.4884850Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4890050Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4891900Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4897820Z 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-08-26T19:35:59.4898760Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4907050Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4908170Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4914350Z copying torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4916110Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4921590Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4922490Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4925560Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4932040Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4933180Z 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-08-26T19:35:59.4936400Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4940840Z 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-08-26T19:35:59.4942590Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4944110Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4949710Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4950690Z copying torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4957030Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4958090Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4964420Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4965730Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4967360Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4973060Z 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-08-26T19:35:59.4974250Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4981560Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4982550Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4988900Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4990160Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4997000Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4998110Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.4999320Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5003940Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5006370Z 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-08-26T19:35:59.5011170Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5012550Z 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-08-26T19:35:59.5014940Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5019570Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5020740Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5027540Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5028580Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5035320Z copying torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5036300Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5043390Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5044290Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5045700Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5049430Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5057490Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5058460Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5061560Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5066940Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5069720Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5074810Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5078660Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5083560Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5086740Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5091360Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5092510Z 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-08-26T19:35:59.5095030Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5100390Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5103260Z 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-08-26T19:35:59.5108320Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5109470Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5111770Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5116590Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5119350Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5120440Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5126270Z 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-08-26T19:35:59.5127700Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5133050Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5134260Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5140950Z 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-08-26T19:35:59.5142060Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5148800Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5149790Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5151260Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5157270Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5158590Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5165500Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5166430Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5172790Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5173780Z 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-08-26T19:35:59.5175150Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5180620Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5182400Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5188050Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5189800Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5191340Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5198840Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5199900Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5207070Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5208080Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5209520Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5212050Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5217390Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5219310Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5220940Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5226750Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5233480Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5235870Z 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-08-26T19:35:59.5241170Z 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-08-26T19:35:59.5242500Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5244190Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5250290Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5251230Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5257530Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5258990Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5263570Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5267850Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5272470Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5274590Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5280500Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5281450Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5285060Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5289480Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5293220Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5296690Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5298150Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5302220Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5305400Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5310420Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5311450Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5314810Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5319770Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5323630Z 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-08-26T19:35:59.5327170Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5329420Z 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-08-26T19:35:59.5332830Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5335840Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5340240Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5341360Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5345480Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5349290Z copying torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5353830Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5355040Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5358610Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5363170Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5366540Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5367610Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5373120Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5374170Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5380980Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5382080Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5388130Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5389280Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5390720Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5397780Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5406410Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5407430Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5414270Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5415430Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5416700Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5423170Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5424560Z 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-08-26T19:35:59.5425690Z 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-08-26T19:35:59.5430720Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5431890Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5435480Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5439530Z copying torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5440510Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5444270Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5448710Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5453030Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5456280Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5476500Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5477480Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5478970Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5480120Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5481520Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5482880Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5484370Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5485550Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5488340Z 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-08-26T19:35:59.5492350Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5496370Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5499600Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5666960Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5667960Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5669840Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5670600Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5671940Z copying torch/include/ATen/ops/_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5673210Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5674580Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5676090Z 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-08-26T19:35:59.5677590Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5679180Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5687640Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5687950Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5688200Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5688490Z 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-08-26T19:35:59.5688830Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5689090Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5689400Z 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-08-26T19:35:59.5689760Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5690750Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5692100Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5693520Z 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-08-26T19:35:59.5694960Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5696560Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5698240Z 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-08-26T19:35:59.5699620Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5701050Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5702490Z 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-08-26T19:35:59.5703850Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5705230Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5706720Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5713410Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5714400Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5715760Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5717050Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5718490Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5719750Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5721050Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5722400Z copying torch/include/ATen/ops/angle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5723710Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5725110Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5726300Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5727620Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5728890Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5824310Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5825280Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5826700Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5828200Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5829460Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5830790Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5832200Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5833790Z 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-08-26T19:35:59.5835240Z 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-08-26T19:35:59.5836330Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5837730Z 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-08-26T19:35:59.5839020Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5840370Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5870510Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5871540Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5872810Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5874120Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5875540Z 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-08-26T19:35:59.5876780Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5878130Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5879490Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5881030Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5882370Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5883650Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5885000Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5886370Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5887920Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5889060Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5890360Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5891720Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5893130Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5894510Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5895840Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5897370Z 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-08-26T19:35:59.5898550Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5899920Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5901230Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5902570Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5904040Z copying torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5905110Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5906510Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5907850Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5919510Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5921100Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5922710Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5924170Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5925660Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5927000Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5928420Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5929710Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5931140Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5932710Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5933870Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5935180Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5936560Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5937910Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5939680Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5940880Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5942180Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5943410Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5944820Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5946190Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5947390Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5948760Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5950120Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5951620Z 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-08-26T19:35:59.5952980Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5954270Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5955710Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5957010Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5958990Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5959670Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5961100Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5962370Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5963710Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5965970Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5966490Z 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-08-26T19:35:59.5967890Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5969150Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5970590Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5971840Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5973640Z 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-08-26T19:35:59.5974690Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5976820Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5977430Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5978510Z 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-08-26T19:35:59.5979990Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5981190Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5982460Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5983750Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5985280Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5986460Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5987770Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5989090Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5990440Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5996230Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5997740Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.5999200Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6003740Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6004740Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6011060Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6012950Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6019440Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6020760Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6025700Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6027770Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6034640Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6035910Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6042390Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6043460Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6044740Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6049840Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6051120Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6057120Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6065270Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6066190Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6067790Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6230000Z 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-08-26T19:35:59.6231270Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6232870Z 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-08-26T19:35:59.6234120Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6235720Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6236630Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6238040Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6239320Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6240770Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6242000Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6243320Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6244660Z 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-08-26T19:35:59.6245910Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6247580Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6248800Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6250160Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6251510Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6252900Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6254170Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6255520Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6256750Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6258180Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6259570Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6260910Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6262170Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6263530Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6264820Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6266170Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6267520Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6269030Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6270440Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6272000Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6273080Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6274360Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6275880Z 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-08-26T19:35:59.6276970Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6278340Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6279650Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6281200Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6282530Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6283730Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6285090Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6286500Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6287900Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6289160Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6290490Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6291900Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6293170Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6294580Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6295840Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6297300Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6298600Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6299950Z 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-08-26T19:35:59.6301210Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6302590Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6303840Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6305170Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6306480Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6307960Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6309260Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6310570Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6311970Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6313290Z 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-08-26T19:35:59.6314600Z 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-08-26T19:35:59.6315860Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6317200Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6318620Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6319860Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6321190Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6322550Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6323940Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6325220Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6326650Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6327900Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6329370Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6331030Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6336850Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6338430Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6345500Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6346450Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6353270Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6354300Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6355720Z 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-08-26T19:35:59.6360060Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6361830Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6366570Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6368950Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6424290Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6425550Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6427010Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6428220Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6429650Z 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-08-26T19:35:59.6430950Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6432340Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6433600Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6435000Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6436270Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6437730Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6439190Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6440570Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6584870Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6585940Z copying torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6587220Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6588860Z 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-08-26T19:35:59.6590070Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6591400Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6592750Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6594300Z 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-08-26T19:35:59.6595670Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6596940Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6598200Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6599580Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6600780Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6632460Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6633430Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6634800Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6636200Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6637490Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6638910Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6640270Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6641540Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6642970Z 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-08-26T19:35:59.6644170Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6645530Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6646790Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6648070Z 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-08-26T19:35:59.6678940Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6679920Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6681230Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6682520Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6683780Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6685130Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6686370Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6687800Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6689100Z copying torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6690460Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6691660Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6692980Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6773070Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6774260Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6775720Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6777150Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6778440Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6779910Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6781170Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6782580Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6784070Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6785360Z 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-08-26T19:35:59.6786850Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6788270Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6789560Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6791030Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6792260Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6793580Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6794910Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6796200Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6797720Z 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-08-26T19:35:59.6799110Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6800460Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6801750Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6803100Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6804490Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6805690Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6807100Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6808510Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6809930Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6811420Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6812780Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6814160Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6815440Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6816930Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6818270Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6820090Z 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-08-26T19:35:59.6820960Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6822520Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6823800Z 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-08-26T19:35:59.6825160Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6826470Z 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-08-26T19:35:59.6854340Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6855430Z copying torch/include/ATen/ops/values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6856860Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6858260Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6859880Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6861000Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6862560Z 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-08-26T19:35:59.6863630Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6864900Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6866140Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6867420Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6868840Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6870070Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6871510Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6930270Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6931360Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6932750Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6934130Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6941330Z copying torch/include/ATen/ops/_foreach_rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6941950Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6942670Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6943280Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6943890Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6944570Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6945300Z 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-08-26T19:35:59.6946040Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6982660Z copying torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6983550Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6984990Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6986300Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6987620Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6988830Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6990150Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6991510Z 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-08-26T19:35:59.6992930Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.6994260Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7030730Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7031720Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7033020Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7034270Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7035710Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7037060Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7038360Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7040400Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7041270Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7042670Z 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-08-26T19:35:59.7044070Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7045500Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7046950Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7048130Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7049520Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7050850Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7052220Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7053560Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7055010Z 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-08-26T19:35:59.7056200Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7057710Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7058950Z copying torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7060370Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7061860Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7063230Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7064680Z 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-08-26T19:35:59.7066020Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7067260Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7068740Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7070140Z 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-08-26T19:35:59.7071420Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7072710Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7073900Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7075350Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7076760Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7078020Z 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-08-26T19:35:59.7079560Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7080650Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7082110Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7083340Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7084750Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7157340Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7158320Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7159740Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7160990Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7162330Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7163720Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7166040Z 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-08-26T19:35:59.7166790Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7168400Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7169070Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7170230Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7171520Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7172810Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7174120Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7209570Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7210610Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7211950Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7213280Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7214580Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7215900Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7217290Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7218820Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7220170Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7221460Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7222870Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7224360Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7225630Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7227010Z 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-08-26T19:35:59.7228370Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7229940Z 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-08-26T19:35:59.7231140Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7232530Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7233920Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7235120Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7236440Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7237790Z 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-08-26T19:35:59.7239160Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7240480Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7241820Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7243880Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7245270Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7246500Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7248020Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7249390Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7250940Z 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-08-26T19:35:59.7252200Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7262710Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7264210Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7265560Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7266860Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7268090Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7269550Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7270710Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7272040Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7273460Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7274810Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7276010Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7277460Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7278930Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7280190Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7281500Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7282870Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7284220Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7285590Z copying torch/include/ATen/ops/hash_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7286960Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7288360Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7289630Z 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-08-26T19:35:59.7290940Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7292290Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7293730Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7295100Z 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-08-26T19:35:59.7296380Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7297760Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7299200Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7300440Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7301780Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7303190Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7304560Z 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-08-26T19:35:59.7305900Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7307160Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7308440Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7309930Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7311210Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7312750Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7314020Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7315370Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7377130Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7378380Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7379860Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7381100Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7382580Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7383820Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7385150Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7386470Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7387830Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7389210Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7390520Z copying torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7391980Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7393680Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7395110Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7396460Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7397820Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7399160Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7400560Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7401880Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7403290Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7404590Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7406000Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7407420Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7408690Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7410140Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7411510Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7412760Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7414120Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7415430Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7416890Z 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-08-26T19:35:59.7418260Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7419580Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7512870Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7513770Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7515140Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7516590Z 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-08-26T19:35:59.7517930Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7519330Z 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-08-26T19:35:59.7521170Z 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-08-26T19:35:59.7522230Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7523480Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7622450Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7623810Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7625220Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7626560Z 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-08-26T19:35:59.7627970Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7629220Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7630630Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7632210Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7633460Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7634960Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7636090Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7637400Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7638960Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7639990Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7641410Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7642670Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7643970Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7645330Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7646710Z 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-08-26T19:35:59.7647990Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7649260Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7650660Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7651950Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7653390Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7654840Z 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-08-26T19:35:59.7656070Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7657320Z copying torch/include/ATen/ops/_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7658650Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7660030Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7661550Z 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-08-26T19:35:59.7662750Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7663990Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7665650Z 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-08-26T19:35:59.7666800Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7668050Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7669620Z 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-08-26T19:35:59.7670800Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7672150Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7673510Z copying torch/include/ATen/ops/_spsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7674820Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7676150Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7677490Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7678810Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7680110Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7681570Z 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-08-26T19:35:59.7682860Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7684080Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7685490Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7686850Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7688140Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7689510Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7690970Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7692410Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7693830Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7695060Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7696430Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7697820Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7699100Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7700390Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7701640Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7703020Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7704530Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7705820Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7707220Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7708470Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7709900Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7711150Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7712550Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7713970Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7715400Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7716680Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7718080Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7719410Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7720880Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7722140Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7723580Z 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-08-26T19:35:59.7724850Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7729070Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7730460Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7736900Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7738100Z 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-08-26T19:35:59.7739460Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7744910Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7753450Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7754190Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7754990Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7755680Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7761040Z 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-08-26T19:35:59.7762030Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7768400Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7769470Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7770840Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7775850Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7782960Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7783960Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7790960Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7792040Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7796340Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7800740Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7801780Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7805810Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7809330Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7813370Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7814600Z 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-08-26T19:35:59.7818980Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7822970Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7825800Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7828130Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7832160Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7835150Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7840710Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7841760Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7845050Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7850240Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7852490Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7858230Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7859380Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7860870Z copying torch/include/ATen/ops/hash_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7867060Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7868440Z copying torch/include/ATen/ops/hash_tensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7875220Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7876310Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7877750Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7883450Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7884570Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7891120Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7892310Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7989720Z 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-08-26T19:35:59.7990730Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7992050Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7993610Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7994920Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7996230Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7997560Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.7999010Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8000310Z copying torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8001590Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8002810Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8004200Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8005560Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8006800Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8008230Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8009440Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8010700Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8011950Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8013260Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8014580Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8015890Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8017180Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8018410Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8019810Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8021150Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8022450Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8023700Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8025100Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8026380Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8027700Z 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-08-26T19:35:59.8029210Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8108880Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8110170Z 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-08-26T19:35:59.8111370Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8112750Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8114000Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8115280Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8116600Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8117850Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8119090Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8120500Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8121700Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8123040Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8124310Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8125600Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8127150Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8128440Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8129880Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8131110Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8132440Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8133700Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8135000Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8136280Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8137730Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8138950Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8140330Z copying torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8141650Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8223610Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8224690Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8226150Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8227370Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8228740Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8230200Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8231450Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8232760Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8234040Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8235390Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8236990Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8238150Z 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-08-26T19:35:59.8239560Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8240760Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8242100Z copying torch/include/ATen/ops/_fused_rms_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8243340Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8244600Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8245880Z copying torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8247250Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8248470Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8249840Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8251170Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8252940Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8253800Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8255200Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8256470Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8257840Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8259060Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8260550Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8261740Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8263010Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8264370Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8265730Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8267070Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8268440Z 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-08-26T19:35:59.8269890Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8271260Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8272520Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8273730Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8275100Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8276370Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8277710Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8278920Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8280340Z 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-08-26T19:35:59.8281590Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8283010Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8284290Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8285730Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8286950Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8288380Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8289940Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8290920Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8292260Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8293950Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8295810Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8302400Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8303500Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8305340Z copying torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8308830Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8314450Z 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-08-26T19:35:59.8323240Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8325590Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8331610Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8332650Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8334020Z 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-08-26T19:35:59.8337070Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8344320Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8352010Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8352980Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8360150Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8361280Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8362560Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8367820Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8368720Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8374730Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8376130Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8377210Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8383910Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8385640Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8393720Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8399140Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8400260Z 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-08-26T19:35:59.8401680Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8406920Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8408100Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8411850Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8416710Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8420010Z 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-08-26T19:35:59.8424240Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8425490Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8429660Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8433390Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8437270Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8438340Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8443100Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8446440Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8450740Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8451990Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8454870Z 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-08-26T19:35:59.8459550Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8463830Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8467590Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8468750Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8473680Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8475740Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8481890Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8483750Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8484910Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8491170Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8492510Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8499020Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8500130Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8506980Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8508160Z 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-08-26T19:35:59.8509480Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8515150Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8516240Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8517850Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8519260Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8523970Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8531240Z 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-08-26T19:35:59.8537140Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8540260Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8544910Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8546240Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8549790Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8554860Z 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-08-26T19:35:59.8558500Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8566540Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8571070Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8572110Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8575700Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8579930Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8582850Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8584090Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8589610Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8592260Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8597470Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8598450Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8601390Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8607480Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8609310Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8615190Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8616400Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8617880Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8624490Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8625820Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8632750Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8633790Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8635420Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8641030Z 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-08-26T19:35:59.8642160Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8648540Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8649860Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8655820Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8657000Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8658260Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8663930Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8665160Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8671430Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8672610Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8678980Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8680020Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8681290Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8687110Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8688340Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8694850Z 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-08-26T19:35:59.8696040Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8703170Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8704380Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8705500Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8710960Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8756150Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8757180Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8758540Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8759980Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8948070Z 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-08-26T19:35:59.8949390Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8951020Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8952610Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8954070Z 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-08-26T19:35:59.8955450Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8956960Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8959150Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8960260Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8961650Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8963190Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8964440Z 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-08-26T19:35:59.8965690Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8967000Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8968470Z copying torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8970110Z 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-08-26T19:35:59.8971050Z 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-08-26T19:35:59.8972360Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8973830Z 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-08-26T19:35:59.8975010Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8976310Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8977630Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8979170Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8980310Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8981780Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8983010Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8984320Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8985690Z 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-08-26T19:35:59.8987000Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8988370Z 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-08-26T19:35:59.8989660Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8990960Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8992320Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8993580Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8994930Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8996250Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8997550Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.8998810Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9000150Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9001470Z 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-08-26T19:35:59.9002840Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9004050Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9005470Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9006820Z 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-08-26T19:35:59.9008200Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9009410Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9010830Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9012170Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9013390Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9014790Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9016100Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9017420Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9018800Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9020050Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9021420Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9022770Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9024030Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9025360Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9026680Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9027950Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9029280Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9030660Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9031930Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9033270Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9034570Z 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-08-26T19:35:59.9036010Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9037250Z 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-08-26T19:35:59.9038550Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9039890Z copying torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9041200Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9042530Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9043900Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9045090Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9046530Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9047760Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9049030Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9050310Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9051600Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9053050Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9054420Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9055650Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9057170Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9058370Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9059700Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9060980Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9062390Z copying torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9063750Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9065530Z 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-08-26T19:35:59.9067040Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9068400Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9072810Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9074120Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9079980Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9088070Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9089250Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9106200Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9224310Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9225510Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9226630Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9228110Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9229470Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9230790Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9232070Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9233390Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9234700Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9236060Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9314760Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9316160Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9317640Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9319100Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9320700Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9322080Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9323530Z 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-08-26T19:35:59.9324840Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9326280Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9327660Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9328920Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9357930Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9359110Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9360530Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9361760Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9363250Z copying torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9364570Z 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-08-26T19:35:59.9365820Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9367390Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9428960Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9430000Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9431430Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9432710Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9434840Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9436190Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9437530Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9438800Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9440160Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9441430Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9442750Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9444160Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9445630Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9446850Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9448130Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9449520Z 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-08-26T19:35:59.9450860Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9452180Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9453400Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9454710Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9456030Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9457300Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9458530Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9459980Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9461170Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9462530Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9468600Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9468850Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9469130Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9469450Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9469740Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9470410Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9471650Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9473030Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9474370Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9493530Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9494540Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9495830Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9497180Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9498440Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9499830Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9501610Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9502610Z 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-08-26T19:35:59.9503900Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9573180Z 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-08-26T19:35:59.9574200Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9575470Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9576840Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9578190Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9579510Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9580810Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9582230Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9583730Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9584910Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9586460Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9587930Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9589350Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9657560Z 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-08-26T19:35:59.9658450Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9659980Z 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-08-26T19:35:59.9661250Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9662740Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9664260Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9665740Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9667010Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9668440Z 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-08-26T19:35:59.9669660Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9670940Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9672410Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9673770Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9675100Z 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-08-26T19:35:59.9676490Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9677860Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9679280Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9680530Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9687080Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9688130Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9689550Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9691070Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9749160Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9750140Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9751590Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9752950Z 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-08-26T19:35:59.9754320Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9755580Z 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-08-26T19:35:59.9756980Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9758320Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9759700Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9761210Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9762480Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9763820Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9765270Z 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-08-26T19:35:59.9766640Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9768030Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9769440Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9770630Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9772240Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9773510Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9774910Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9776200Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9777600Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9778950Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9780330Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9781670Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9783210Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9784610Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9786050Z 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-08-26T19:35:59.9787440Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9788820Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9790310Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9791840Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9793130Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9794630Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9796050Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9797580Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9798880Z 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-08-26T19:35:59.9800420Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9801940Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9803250Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9804590Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9806070Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9807340Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9809000Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9810280Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9811550Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9812860Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9814300Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9815700Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9817010Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9818380Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9819860Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9821210Z 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-08-26T19:35:59.9822470Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9823880Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9825220Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9826630Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9827840Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9829190Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9830570Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9831960Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9833250Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9834560Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9836130Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9837500Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9838780Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9840110Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9841530Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9842850Z 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-08-26T19:35:59.9844290Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9845630Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9847090Z 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-08-26T19:35:59.9848490Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9849910Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9851310Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9852850Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9854090Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9855950Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9856930Z 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-08-26T19:35:59.9858350Z 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-08-26T19:35:59.9859670Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9861170Z 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-08-26T19:35:59.9862640Z 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-08-26T19:35:59.9863990Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:35:59.9865340Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0045840Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0068010Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0069000Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0070380Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0071790Z copying torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0098030Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0098950Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0100460Z 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-08-26T19:36:00.0101780Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0103160Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0104520Z 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-08-26T19:36:00.0105890Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0107180Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0108480Z copying torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0109950Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0111400Z 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-08-26T19:36:00.0112780Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0114170Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0115470Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0116810Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0119420Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0119660Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0120740Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0122110Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0123350Z 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-08-26T19:36:00.0124730Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0126010Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0127370Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0128750Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0130090Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0131300Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0132870Z 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-08-26T19:36:00.0134050Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0135400Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0136760Z 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-08-26T19:36:00.0138110Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0139410Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0140630Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0142000Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0143370Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0144590Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0145900Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0147250Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0148620Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0149870Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0151130Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0152570Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0153890Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0155190Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0156550Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0157840Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0159190Z 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-08-26T19:36:00.0160630Z 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-08-26T19:36:00.0161880Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0163160Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0164590Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0165880Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0167160Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0168410Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0169870Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0171180Z 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-08-26T19:36:00.0172530Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0173830Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0175200Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0176490Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0177810Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0179170Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0180530Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0181790Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0183250Z 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-08-26T19:36:00.0184570Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0185950Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0187240Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0188550Z 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-08-26T19:36:00.0189930Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0191260Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0192750Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0194070Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0195650Z 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-08-26T19:36:00.0197090Z 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-08-26T19:36:00.0198330Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0199660Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0201060Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0202470Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0204140Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0205360Z 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-08-26T19:36:00.0206690Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0208050Z 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-08-26T19:36:00.0209530Z 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-08-26T19:36:00.0210810Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0212320Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0213660Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0215200Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0216670Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0218140Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0219540Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0220850Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0222260Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0223650Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0225170Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0226650Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0228150Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0231960Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0233270Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0240500Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0241730Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0248110Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0249260Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0255720Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0256920Z 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-08-26T19:36:00.0258170Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0259600Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0268940Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0273420Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0276820Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0277980Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0284620Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0285650Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0291370Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0293350Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0294670Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0300650Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0301620Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0308220Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0309300Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0315640Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0316810Z copying torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0318200Z 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-08-26T19:36:00.0323560Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0324610Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0331720Z 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-08-26T19:36:00.0332800Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0543270Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0544380Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0545760Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0547190Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0548470Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0549870Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0551250Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0552600Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0553830Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0555390Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0556610Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0557970Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0559250Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0560700Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0562110Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0563290Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0564720Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0566180Z 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-08-26T19:36:00.0567560Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0568930Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0570310Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0571520Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0572860Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0574230Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0575470Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0576870Z 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-08-26T19:36:00.0578220Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0579590Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0580980Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0582350Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0583600Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0584890Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0586190Z 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-08-26T19:36:00.0587660Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0588990Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0590330Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0591730Z 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-08-26T19:36:00.0593110Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0594440Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0595790Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0597170Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0598490Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0599810Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0601060Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0602480Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0603740Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0605560Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0606470Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0607940Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0609140Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0610460Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0611760Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0613020Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0614280Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0615600Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0616890Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0618330Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0619630Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0620860Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0622260Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0623550Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0624820Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0626170Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0627530Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0628800Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0630130Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0631470Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0632860Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0634010Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0635400Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0636720Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0637990Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0639310Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0640580Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0642060Z 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-08-26T19:36:00.0643310Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0644670Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0646020Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0647520Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0648830Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0650180Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0651630Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0652920Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0654450Z 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-08-26T19:36:00.0655980Z 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-08-26T19:36:00.0657750Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0658800Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0660260Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0661610Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0663020Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0664350Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0874500Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0875930Z 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-08-26T19:36:00.0876990Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0878230Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0897250Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0898360Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0899780Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0901160Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0902480Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0903860Z 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-08-26T19:36:00.0905230Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0906560Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0907910Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0909230Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0910580Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0912070Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0913340Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0914660Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0916020Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0917300Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0918690Z 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-08-26T19:36:00.0919930Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0921320Z 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-08-26T19:36:00.0922650Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0923970Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0925830Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0926790Z 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-08-26T19:36:00.0928150Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0929490Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0930670Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0932090Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0933520Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0934930Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0936270Z copying torch/include/ATen/ops/i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0937880Z 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-08-26T19:36:00.0939260Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0940580Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0941870Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0943170Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0944490Z 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-08-26T19:36:00.0945770Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0947200Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0948560Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0949920Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0951420Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0952650Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0954070Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0955510Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0956780Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0958220Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0959760Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0961020Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0962390Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0963740Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0965210Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0966520Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0967950Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0969350Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0970660Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0972080Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0973450Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0974850Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.0976380Z 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-08-26T19:36:00.0977720Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1112650Z 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-08-26T19:36:00.1113660Z 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-08-26T19:36:00.1115000Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1116920Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1118380Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1119790Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1121200Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1122700Z 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-08-26T19:36:00.1124060Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1125430Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1126780Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1128390Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1129630Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1131190Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1132480Z 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-08-26T19:36:00.1133720Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1135220Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1136350Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1137760Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1139130Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1140420Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1141790Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1143150Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1144550Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1145800Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1147250Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1148840Z 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-08-26T19:36:00.1150050Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1151380Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1152830Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1154170Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1155530Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1156970Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1158450Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1159720Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1161050Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1162420Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1164270Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1165330Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1166720Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1168430Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1169470Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1170960Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1172460Z 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-08-26T19:36:00.1174100Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1175070Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1176380Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1177820Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1179130Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1180500Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1181820Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1183130Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1184390Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1185580Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1187160Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1188420Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1190120Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1191360Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1192430Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1193830Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1195190Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1196600Z 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-08-26T19:36:00.1345620Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1346630Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1347960Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1349330Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1350690Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1352110Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1353370Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1354920Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1356070Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1357410Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1358730Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1360030Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1397340Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1398340Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1399560Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1406070Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1406760Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1407350Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1407940Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1408520Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1409130Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1409760Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1410500Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1411910Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1413270Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1414890Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1416090Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1417530Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1418810Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1420120Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1421510Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1423020Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1424210Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1425700Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1426870Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1428240Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1429600Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1430930Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1432370Z copying torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1434120Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1435140Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1436600Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1437870Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1439190Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1440530Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1442000Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1443370Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1444770Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1446020Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1447470Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1448690Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1450110Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1451500Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1452840Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1454220Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1455560Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1456830Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1458330Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1459630Z copying torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1461440Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1462430Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1463690Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1465070Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1466410Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1467830Z copying torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1469140Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1470690Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1472030Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1473480Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1474850Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1476190Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1477620Z 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-08-26T19:36:00.1478900Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1480390Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1481620Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1483170Z 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-08-26T19:36:00.1484480Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1485840Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1487220Z 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-08-26T19:36:00.1488500Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1489790Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1491290Z 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-08-26T19:36:00.1492600Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1493940Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1495170Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1496630Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1498110Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1499610Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1500820Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1502110Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1503380Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1504630Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1505990Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1507330Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1508720Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1510040Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1511430Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1512730Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1513980Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1515350Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1516640Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1517970Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1519260Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1520520Z copying torch/include/ATen/ops/max_unpool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1521870Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1523200Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1527830Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1529680Z 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-08-26T19:36:00.1530970Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1537150Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1538140Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1544400Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1545380Z 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-08-26T19:36:00.1552040Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1552980Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1554370Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1561640Z 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-08-26T19:36:00.1569100Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1570470Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1577810Z 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-08-26T19:36:00.1578720Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1580310Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1585440Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1586610Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1593240Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1594320Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1595710Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1600830Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1602180Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1608550Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1609750Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1611040Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1618050Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1619180Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1625240Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1626560Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1633450Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1634470Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1635950Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1641140Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1642280Z 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-08-26T19:36:00.1649080Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1649980Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1651390Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1656620Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1657710Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1664450Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1666520Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1672400Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1673240Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1674730Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1680270Z 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-08-26T19:36:00.1681290Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1688450Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1689870Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1696600Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1697500Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1698800Z 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-08-26T19:36:00.1700850Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1710350Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1713340Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1714510Z 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-08-26T19:36:00.1720220Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1722190Z 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-08-26T19:36:00.1727850Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1731510Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1736700Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1737820Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1744760Z 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-08-26T19:36:00.1745700Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1752800Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1753700Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1755090Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1760390Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1761540Z 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-08-26T19:36:00.1768670Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1769650Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1771090Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1777390Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1778610Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1782070Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1785080Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1785960Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1790440Z 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-08-26T19:36:00.1791340Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1795790Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1799640Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1803400Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1804450Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1809070Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1811580Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1816470Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1817720Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1824260Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1825630Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1831760Z 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-08-26T19:36:00.1833610Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1835090Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1840810Z copying torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1841950Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1848550Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1851760Z 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-08-26T19:36:00.1855060Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1856600Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1857910Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1863920Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1865910Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.1871520Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2083600Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2085060Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2102310Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2103490Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2104910Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2106250Z 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-08-26T19:36:00.2107620Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2109020Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2110440Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2111700Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2113070Z copying torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2114470Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2115710Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2117110Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2118370Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2119780Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2121080Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2122450Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2123820Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2125240Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2126590Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2127830Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2129280Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2131310Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2132030Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2133480Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2134900Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2136140Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2137620Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2139010Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2140360Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2201040Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2202390Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2203500Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2205360Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2206080Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2207540Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2233350Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2234410Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2235650Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2237000Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2238420Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2239700Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2240910Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2242350Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2243630Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2244900Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2246150Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2255920Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2257060Z 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-08-26T19:36:00.2258530Z 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-08-26T19:36:00.2259750Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2279120Z 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-08-26T19:36:00.2280170Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2281400Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2282740Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2284340Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2317280Z 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-08-26T19:36:00.2318340Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2319850Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2321160Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2322580Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2323880Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2325400Z copying torch/include/ATen/ops/avg_pool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2326460Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2327810Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2329080Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2330420Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2331750Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2333280Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2334470Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2335920Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2337270Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2338710Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2340020Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2341420Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2342790Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2344240Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2345760Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2346820Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2348160Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2349550Z 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-08-26T19:36:00.2350930Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2352320Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2353490Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2354800Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2356380Z 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-08-26T19:36:00.2357680Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2359040Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2365780Z 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-08-26T19:36:00.2366500Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2367090Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2367660Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2368220Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2368810Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2369390Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2370010Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2370870Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2372240Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2373560Z 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-08-26T19:36:00.2374890Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2376240Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2377590Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2378950Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2380310Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2381520Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2382950Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2384370Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2385790Z 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-08-26T19:36:00.2387080Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2388570Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2389760Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2391280Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2392670Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2394030Z 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-08-26T19:36:00.2395420Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2396800Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2398130Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2399630Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2401080Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2402370Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2403680Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2405030Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2406480Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2407790Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2409070Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2410350Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2411650Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2413150Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2414530Z copying torch/include/ATen/ops/_safe_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2415670Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2417040Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2418450Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2419750Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2421130Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2422470Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2423840Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2425200Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2426690Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2428580Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2429490Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2430990Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2432370Z 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-08-26T19:36:00.2433730Z 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-08-26T19:36:00.2435040Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2436510Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2437870Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2439380Z 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-08-26T19:36:00.2440740Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2442120Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2443430Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2444820Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2446130Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2447590Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2449000Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2450300Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2453430Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2454690Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2459970Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2465640Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2466530Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2471600Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2472670Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2478720Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2479740Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2485070Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2486030Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2491480Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2496740Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2497790Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2502350Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2503440Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2508580Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2509880Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2514680Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2515710Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2522560Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2528470Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2529910Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2531250Z 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-08-26T19:36:00.2743940Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2744990Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2746350Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2747850Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2749230Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2750680Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2752120Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2753500Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2754960Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2756450Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2759040Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2759650Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2760570Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2762090Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2763260Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2764620Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2765890Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2767240Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2768600Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2769920Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2771240Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2772560Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2774000Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2775330Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2776650Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2777940Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2779280Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2780770Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2782050Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2783290Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2784670Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2785990Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2787260Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2788480Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2789840Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2791140Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2792410Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2793700Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2795260Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2796470Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2797760Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2800790Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2801990Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2803440Z 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-08-26T19:36:00.2804750Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2806140Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2807380Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2808690Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2810080Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2811370Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2812670Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2813980Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2815330Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2816660Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2818050Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2819390Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2820600Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2822000Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2823350Z 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-08-26T19:36:00.2824660Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2826020Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2827550Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2828810Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2830140Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2831470Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2832840Z 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-08-26T19:36:00.2834360Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2835460Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2836830Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2838110Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2839430Z copying torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2840700Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2842170Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2906290Z 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-08-26T19:36:00.2907230Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2908730Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2910190Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2911840Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2912870Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2914350Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2915760Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2917060Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2918390Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2919740Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2921030Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2922350Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2923690Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2925110Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2926580Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2927840Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2929260Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2930680Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2932020Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2933330Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2934790Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2935970Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2937390Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2938640Z copying torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2940050Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2941300Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2942700Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2943960Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2945430Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2946830Z copying torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2948230Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2949470Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2950950Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2952250Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2953640Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2954960Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2956300Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2957610Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2959070Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2960560Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2961850Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2963140Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2964720Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2966030Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2967320Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2968770Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2970070Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2971290Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2975240Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2976350Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2983700Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2984810Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2986210Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2991490Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2992620Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.2998840Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3000070Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3001570Z 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-08-26T19:36:00.3007300Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3008420Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3016400Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3017360Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3022570Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3023860Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3029300Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3030810Z 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-08-26T19:36:00.3036630Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3037850Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3044080Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3045300Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3051320Z 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-08-26T19:36:00.3052360Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3060510Z 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-08-26T19:36:00.3061500Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3067870Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3069010Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3075640Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3076760Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3078100Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3083020Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3084190Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3090900Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3092200Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3098350Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3099350Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3100970Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3108180Z 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-08-26T19:36:00.3109190Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3115360Z 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-08-26T19:36:00.3116380Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3232550Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3233500Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3234910Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3236500Z 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-08-26T19:36:00.3238020Z 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-08-26T19:36:00.3239290Z 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-08-26T19:36:00.3240800Z 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-08-26T19:36:00.3242190Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3243670Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3245010Z 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-08-26T19:36:00.3246530Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3248030Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3249630Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3250870Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3252390Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3253710Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3255150Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3256540Z 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-08-26T19:36:00.3257780Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3260850Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3261970Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3263340Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3264800Z 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-08-26T19:36:00.3266130Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3269220Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3270680Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3272100Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3274400Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3275610Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3277120Z 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-08-26T19:36:00.3278650Z 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-08-26T19:36:00.3280810Z 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-08-26T19:36:00.3281980Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3283600Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3285200Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3286660Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3288130Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3291760Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3294720Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3295980Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3297440Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3298940Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3300420Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3302030Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3303440Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3305050Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3306360Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3308270Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3309150Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3310500Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3312000Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3313490Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3314940Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3318080Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3319270Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3320630Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3322060Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3323410Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3324950Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3326330Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3327810Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3329350Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3332880Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3337320Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3340200Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3341280Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3346670Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3348480Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3559510Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3560530Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3561890Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3563350Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3564750Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3566030Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3567280Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3568620Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3569950Z 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-08-26T19:36:00.3571250Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3572670Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3573880Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3575140Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3576610Z 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-08-26T19:36:00.3577940Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3579350Z 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-08-26T19:36:00.3580600Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3581870Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3583120Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3584460Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3585820Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3591310Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3643430Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3644520Z 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-08-26T19:36:00.3645820Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3647330Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3648570Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3649940Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3651320Z 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-08-26T19:36:00.3652800Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3654280Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3655400Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3656730Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3658210Z 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-08-26T19:36:00.3659550Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3660950Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3662170Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3663600Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3664860Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3666220Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3667480Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3668930Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3669890Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3671300Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3672610Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3673900Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3675300Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3676540Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3677800Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3679150Z copying torch/include/ATen/ops/hash_tensor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3680460Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3681880Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3683200Z 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-08-26T19:36:00.3684680Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3685890Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3687280Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3688540Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3689970Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3691310Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3692820Z 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-08-26T19:36:00.3694060Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3695490Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3696780Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3698260Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.3877290Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.6965160Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.6974320Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.6985680Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.6994970Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7005690Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7015590Z 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-08-26T19:36:00.7024970Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7035650Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7046760Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7054580Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7062360Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7069320Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7076150Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7086310Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7093160Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7099880Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7107030Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7114480Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7122050Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7127870Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7136590Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7142370Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7147780Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7153390Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7158840Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7164320Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7169680Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7175410Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7181050Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7186400Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7190120Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7191940Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7193470Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7194770Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7196050Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7197490Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7198740Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7200060Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7201280Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7202700Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7204040Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7205220Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7206570Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7207940Z copying torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7209310Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7210460Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7211780Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7213100Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7214390Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7215610Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7216870Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7218210Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7219540Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7220870Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7222300Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7223590Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7224970Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7226220Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7227520Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7228750Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7230370Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7231580Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7233160Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7234550Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7237470Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7240660Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7242130Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7244250Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7245540Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7247190Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7248630Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7249870Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7251290Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7253140Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7254730Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7256200Z 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-08-26T19:36:00.7257590Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7259220Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7260700Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7262360Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7263760Z 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-08-26T19:36:00.7265270Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7266700Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7268330Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7269740Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7375450Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7377090Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7378570Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7379940Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7381360Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7382730Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7384130Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7385810Z 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-08-26T19:36:00.7387240Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7388840Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7390260Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7391790Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7393250Z 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-08-26T19:36:00.7394510Z 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-08-26T19:36:00.7396090Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7397520Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7399000Z 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-08-26T19:36:00.7400400Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7401800Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7403310Z 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-08-26T19:36:00.7404690Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7406100Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7407710Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7409440Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7410530Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7411870Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7413280Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7414800Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7416110Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7417990Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7420640Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7422570Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7423950Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7425310Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7426720Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7428280Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7429750Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7431050Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7432450Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7434170Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7435300Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7436690Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7438140Z 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-08-26T19:36:00.7439570Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7440980Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7442330Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7443630Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7445240Z 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-08-26T19:36:00.7446590Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7447990Z copying torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7449450Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7450810Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7452280Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7453610Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7455190Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7456660Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7458130Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7459490Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7460820Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7462370Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7463730Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7466600Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7468980Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7470470Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7471890Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7473490Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7475130Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7476600Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7478310Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7479780Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7481230Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7482980Z 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-08-26T19:36:00.7484260Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7485790Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7487490Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7489010Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7490600Z 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-08-26T19:36:00.7492060Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7493630Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7495230Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7496690Z copying torch/include/ATen/ops/erfc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7498210Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7499640Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7501490Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7502840Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7504330Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7505920Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7507590Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7509060Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7510830Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7512390Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7513910Z 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-08-26T19:36:00.7515380Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7516990Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7518440Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7519950Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7521610Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7523180Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7524890Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7526670Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7527980Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7529630Z 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-08-26T19:36:00.7531180Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7532750Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7534380Z 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-08-26T19:36:00.7535850Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7537430Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7538980Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7543670Z 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-08-26T19:36:00.7545400Z 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-08-26T19:36:00.7546920Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7551300Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7552830Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7554410Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7560930Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7563010Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7568880Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7570500Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7572490Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7577080Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7578550Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7584880Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7586530Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7593320Z 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-08-26T19:36:00.7594860Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7596680Z 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-08-26T19:36:00.7601440Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7603010Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7608930Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7610530Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7612220Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7618230Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7619680Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7625920Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7627420Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7633710Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7635350Z 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-08-26T19:36:00.7636870Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7641270Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7642810Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7649030Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7650520Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7652280Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7654950Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7657210Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7663640Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7665230Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7671420Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7674210Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7680720Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7682250Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7688310Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7690150Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7696870Z 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-08-26T19:36:00.7698560Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7700230Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7707200Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7708060Z 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-08-26T19:36:00.7713720Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7715590Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7717440Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7721850Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7723390Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7731230Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7732930Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7735010Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7739780Z 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-08-26T19:36:00.7741400Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7743180Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7746590Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7748410Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7754090Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7755820Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7757660Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7763880Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7765470Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7773100Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7774670Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7781510Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7782980Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7784610Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7789590Z 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-08-26T19:36:00.7791100Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7797240Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7798350Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7799910Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7805470Z 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-08-26T19:36:00.7806800Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7813460Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7814950Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7816510Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7821270Z 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-08-26T19:36:00.7822860Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7828960Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7830440Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7832120Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7837050Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7844910Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7846200Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7852840Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7854060Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7855600Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7860630Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7862060Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7868090Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7869550Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7871250Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7878250Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7879440Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7883760Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7886500Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7888120Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7892390Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7894730Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7899870Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7901060Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7907750Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7915750Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7916910Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7918470Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7923200Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7924790Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7931290Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7932430Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7933700Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7940480Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7941720Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7948290Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7949490Z 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-08-26T19:36:00.7956140Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7957750Z 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-08-26T19:36:00.7959190Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7963520Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7964860Z 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-08-26T19:36:00.7971930Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7973270Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7974520Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7980450Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7981310Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7987780Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7989190Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7995970Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7996810Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.7998070Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8003550Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8010430Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8012270Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8018000Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8019090Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8021020Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8026780Z 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-08-26T19:36:00.8027850Z 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-08-26T19:36:00.8034210Z 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-08-26T19:36:00.8036110Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8041760Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8042810Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8044380Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8046540Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8051500Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8055900Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8059480Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8063280Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8064470Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8069330Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8072760Z 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-08-26T19:36:00.8077550Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8078770Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8081670Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8086710Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8089700Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8094250Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8095710Z 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-08-26T19:36:00.8098710Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8103400Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8106280Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8107440Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8113460Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8115010Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8117970Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8122600Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8123790Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8132010Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8138270Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8139630Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8141000Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8147730Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8148790Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8155590Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8156970Z 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-08-26T19:36:00.8163120Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8164340Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8165770Z 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-08-26T19:36:00.8173570Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8179570Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8180940Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8182200Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8188020Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8189070Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8195830Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8196980Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8203360Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8204550Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8205730Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8210970Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8212070Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8220200Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8221100Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8222520Z 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-08-26T19:36:00.8228160Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8229190Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8236410Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8237530Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8238860Z copying torch/include/ATen/ops/_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8243940Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8245860Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8252100Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8253120Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8254570Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8261290Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8262520Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8269160Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8270060Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8276790Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8277920Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8279350Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8284550Z 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-08-26T19:36:00.8285590Z 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-08-26T19:36:00.8292740Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8293950Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8295280Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8300510Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8301570Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8308120Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8309190Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8316500Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8317580Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8318950Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8324880Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8326020Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8332520Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8333830Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8339620Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8345190Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8348800Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8354200Z 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-08-26T19:36:00.8356460Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8357690Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8363690Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8364850Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8371960Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8372990Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8376970Z 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-08-26T19:36:00.8380440Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8384160Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8385320Z 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-08-26T19:36:00.8389160Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8392160Z 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-08-26T19:36:00.8396550Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8397650Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8401520Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8406030Z 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-08-26T19:36:00.8409760Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8413360Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8414630Z 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-08-26T19:36:00.8418790Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8422640Z copying torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8426760Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8427760Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8431830Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8435980Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8441870Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8442970Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8444460Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8450960Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8451900Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8457970Z 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-08-26T19:36:00.8458800Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8466680Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8467630Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8468990Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8473610Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8476450Z copying torch/include/ATen/ops/max_unpool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8481090Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8482120Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8484870Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8491010Z 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-08-26T19:36:00.8492240Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8498960Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8500240Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8506730Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8507730Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8514440Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8515460Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8522460Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8523390Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8524710Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8530420Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8531630Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8537840Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8539900Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8542080Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8548470Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8550360Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8556250Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8559010Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8563320Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8564760Z 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-08-26T19:36:00.8568330Z 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-08-26T19:36:00.8572770Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8577030Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8579970Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8581090Z 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-08-26T19:36:00.8586880Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8589690Z 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-08-26T19:36:00.8597350Z 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-08-26T19:36:00.8598470Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8599840Z 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-08-26T19:36:00.8605420Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8606340Z 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-08-26T19:36:00.8608650Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8613380Z 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-08-26T19:36:00.8614620Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8618400Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8623420Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8626560Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8631090Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8632210Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8634660Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8639870Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8642820Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8647460Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8648450Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8652830Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8657150Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8659900Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8660870Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8666670Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8667870Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8675300Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8682140Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8683130Z 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-08-26T19:36:00.8690270Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8691390Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8692630Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8697230Z 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-08-26T19:36:00.8698310Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8705010Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8706110Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8707430Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8710760Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8715210Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8720230Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8723240Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8724330Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8730990Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8732020Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8738450Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8739500Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8745620Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8746780Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8752530Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8752970Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8759300Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8762980Z 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-08-26T19:36:00.8764130Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8769350Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8771070Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8777210Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8778200Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8784020Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8785840Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8792130Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8793720Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8794660Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8800630Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8801690Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8808860Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8809670Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8817040Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8818050Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8819350Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8824790Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8825820Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8833410Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8834540Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8841420Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8842560Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8849090Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8850070Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8851370Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8857090Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8858270Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8864800Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8866120Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8867390Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8874320Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8875250Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8879770Z 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-08-26T19:36:00.8882430Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8883540Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8889240Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8891610Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8896980Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8898050Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8905170Z 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-08-26T19:36:00.8906280Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8912650Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8913850Z copying torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8915230Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8920880Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8921900Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8928100Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8929440Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8930840Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8937730Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8938980Z 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-08-26T19:36:00.8945220Z 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-08-26T19:36:00.8946500Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8954070Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8955500Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8956770Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8962040Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8963090Z 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-08-26T19:36:00.8970910Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8972190Z 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-08-26T19:36:00.8976010Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8979510Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8983300Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8984520Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8989170Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8993030Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8996820Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.8997750Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9002840Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9011610Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9012740Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9014630Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9019790Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9020730Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9028300Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9029380Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9035900Z copying torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9037090Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9038450Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9043360Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9045130Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9051530Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9052500Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9053660Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9060670Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9061750Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9067820Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9069020Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9076100Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9077010Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9078400Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9083210Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9084600Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9091230Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9092170Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9099560Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9100690Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9102060Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9106850Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9107880Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9114070Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9115330Z copying torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9121810Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9123020Z 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-08-26T19:36:00.9125010Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9130520Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9131780Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9138100Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9139120Z 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-08-26T19:36:00.9146230Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9147170Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9154020Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9155120Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9158480Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9161730Z 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-08-26T19:36:00.9163050Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9166570Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9171000Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9178100Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9185650Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9186710Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9192960Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9194060Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9195360Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9200740Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9203160Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9208760Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9209700Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9210940Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9213420Z 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-08-26T19:36:00.9219170Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9223470Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9226970Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9228170Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9232100Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9235890Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9239580Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9240820Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9245140Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9248770Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9253800Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9256070Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9257220Z 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-08-26T19:36:00.9262530Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9263880Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9270660Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9271840Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9278390Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9279910Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9286590Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9287800Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9289220Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9294590Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9295570Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9302350Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9303200Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9304530Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9310360Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9311440Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9318040Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9319830Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9326400Z 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-08-26T19:36:00.9327440Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9328730Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9333920Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9342560Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9343570Z 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-08-26T19:36:00.9350050Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9351120Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9352580Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9358450Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9359670Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9366730Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9367720Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9369220Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9373620Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9374810Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9376840Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9382120Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9390590Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9391480Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9397920Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9399300Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9406640Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9407550Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9408970Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9414690Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9415720Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9422340Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9423670Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9425080Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9430430Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9431410Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9438780Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9439950Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9446980Z 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-08-26T19:36:00.9448180Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9449440Z 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-08-26T19:36:00.9454320Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9456670Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9462280Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9463350Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9464980Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9470680Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9471710Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9478470Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9479540Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9487020Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9488090Z 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-08-26T19:36:00.9489570Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9494560Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9495710Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9498090Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9504140Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9510690Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9513000Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9518780Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9519950Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9521260Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9527370Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9528700Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9535630Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9536720Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9542280Z 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-08-26T19:36:00.9543150Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9544480Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9549450Z 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-08-26T19:36:00.9550630Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9557100Z copying torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9559510Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9565340Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9566470Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9568190Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9573370Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9574650Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9578190Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9583310Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9586430Z 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-08-26T19:36:00.9591100Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9592220Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9599300Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9607490Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9608680Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9610020Z 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-08-26T19:36:00.9615270Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9616200Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9623010Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9624050Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9625460Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9630520Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9631800Z copying torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9638890Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9639680Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9641040Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9647770Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9648890Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9656010Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9657040Z 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-08-26T19:36:00.9664620Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9665700Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9672440Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9673560Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9680450Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9681460Z 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-08-26T19:36:00.9682820Z copying torch/include/ATen/ops/hash_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9688150Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9689200Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9695720Z 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-08-26T19:36:00.9696960Z 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-08-26T19:36:00.9698320Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9702900Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9704050Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9710890Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9712090Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9714880Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9719950Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9720980Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9727560Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9729080Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9735880Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9737140Z 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-08-26T19:36:00.9738520Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9799840Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9800760Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9802090Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9803380Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9804830Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9806160Z 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-08-26T19:36:00.9807500Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9975320Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9976300Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9978780Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9979090Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9980320Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9981610Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9982970Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9984370Z 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-08-26T19:36:00.9985670Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9987070Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9988270Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9989640Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9991020Z 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-08-26T19:36:00.9992310Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9993840Z 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-08-26T19:36:00.9995060Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9996540Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:00.9997940Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0055180Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0056350Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0070540Z 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-08-26T19:36:01.0071220Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0072750Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0073910Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0093490Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0094810Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0096080Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0097510Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0116540Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0125090Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0126180Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0138860Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0140010Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0141280Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0155780Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0156840Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0168530Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0169570Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0188970Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0190070Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0191430Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0192800Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0194180Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0195470Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0196790Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0198340Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0199550Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0200830Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0202150Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0203530Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0204980Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0242670Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0243710Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0244940Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0246330Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0247630Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0268920Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0269950Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0271390Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0272790Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0273980Z copying torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0296220Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0297160Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0298500Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0299880Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0301320Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0302610Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0303960Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0305340Z 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-08-26T19:36:01.0306730Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0307920Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0340420Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0342070Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0370210Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0371280Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0372710Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0374000Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0375240Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0376560Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0377920Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0379410Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0380830Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0382230Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0383270Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0384630Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0386030Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0387280Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0388550Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0389940Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0391430Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0392720Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0393970Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0395420Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0396850Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0398280Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0399610Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0400980Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0402320Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0403610Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0405040Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0406410Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0407690Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0409270Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0410660Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0411840Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0413300Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0414480Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0415940Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0417270Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0418760Z 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-08-26T19:36:01.0420060Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0421540Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0423860Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0424270Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0425480Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0426770Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0428170Z 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-08-26T19:36:01.0429560Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0430970Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0432450Z 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-08-26T19:36:01.0433510Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0434920Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0436070Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0437540Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0438850Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0440390Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0441690Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0443060Z 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-08-26T19:36:01.0444910Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0446030Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0446890Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0448620Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0449560Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0451730Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0452430Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0453400Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0454780Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0456050Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0457260Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0458710Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0460130Z 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-08-26T19:36:01.0461420Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0462820Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0464220Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0465440Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0466940Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0468120Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0469990Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0470790Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0472200Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0473500Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0474990Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0476270Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0477490Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0478860Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0480290Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0481620Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0483060Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0484350Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0485690Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0486940Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0488310Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0489670Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0491160Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0492520Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0493790Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0495110Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0496580Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0497800Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0499110Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0500610Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0501910Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0503960Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0505420Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0511900Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0512880Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0514330Z 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-08-26T19:36:01.0519710Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0521360Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0527900Z copying torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0529140Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0535330Z 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-08-26T19:36:01.0536500Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0537900Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0544750Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0545810Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0552860Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0554130Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0561260Z 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-08-26T19:36:01.0562340Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0563610Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0568540Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0569800Z 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-08-26T19:36:01.0576450Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0577370Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0578710Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0580700Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0590490Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0592220Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0593720Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0600310Z 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-08-26T19:36:01.0601290Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0609300Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0610380Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0617500Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0618810Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0619920Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0625730Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0626520Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0633370Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0634490Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0635980Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0642410Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0643850Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0651020Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0652020Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0653320Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0658430Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0659700Z 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-08-26T19:36:01.0666690Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0667780Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0669120Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0675110Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0676080Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0683860Z 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-08-26T19:36:01.0685020Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0686450Z 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-08-26T19:36:01.0692570Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0693420Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0698530Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0699550Z 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-08-26T19:36:01.0700880Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0706380Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0707500Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0714510Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0715870Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0722690Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0723590Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0724990Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0729980Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0731400Z 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-08-26T19:36:01.0737660Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0739080Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0745610Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0747270Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0753260Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0759910Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0760750Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0762860Z 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-08-26T19:36:01.0768840Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0770250Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0774570Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0776920Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0777880Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0782410Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0787290Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0792550Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0793680Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0801580Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0802800Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0810180Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0811180Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0812590Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0818700Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0819840Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0826810Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0827930Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0829500Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0835420Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0838470Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0844450Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0845400Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0848320Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0854470Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0855940Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0861540Z 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-08-26T19:36:01.0862590Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0864260Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0870290Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0871350Z 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-08-26T19:36:01.0876840Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0878590Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0884200Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0885310Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0886970Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0893230Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0894690Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0899980Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0901440Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0907400Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0908610Z 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-08-26T19:36:01.0914770Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0915850Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0917230Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0923290Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0924430Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0931490Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0932450Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0939740Z 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-08-26T19:36:01.0940690Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0942070Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0947350Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0948270Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0953380Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0956250Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0961110Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0962110Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0965260Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0969840Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0970820Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0977060Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0978260Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0984470Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0985720Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0987020Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0993950Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0995160Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.0999230Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1007290Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1009580Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1013740Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1018800Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1022730Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1026800Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1027820Z 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-08-26T19:36:01.1032160Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1035890Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1041260Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1042350Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1045540Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1049610Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1052430Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1053710Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1058400Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1060220Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1066900Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1068060Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1074610Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1075600Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1082240Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1083120Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1089240Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1090130Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1091500Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1096880Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1097870Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1104490Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1105770Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1111640Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1112770Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1114260Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1120370Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1121400Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1127800Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1128900Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1135400Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1136290Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1224200Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1225090Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1226350Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1227700Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1228950Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1230340Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1231570Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1233010Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1234250Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1235510Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1236830Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1349160Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1350160Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1351400Z 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-08-26T19:36:01.1352720Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1353940Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1355280Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1356650Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1358030Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1359210Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1360460Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1361910Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1363100Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1364510Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1365780Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1367140Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1368360Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1369600Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1371030Z 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-08-26T19:36:01.1372370Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1373710Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1375070Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1376400Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1377790Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1379310Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1380640Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1382080Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1383590Z 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-08-26T19:36:01.1385010Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1386360Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1387810Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1389220Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1390600Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1391990Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1393320Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1394690Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1396100Z copying torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1397470Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1398630Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1400030Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1401270Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1402490Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1403800Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1405230Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1406450Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1407790Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1409110Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1410420Z 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-08-26T19:36:01.1411760Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1413030Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1414420Z 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-08-26T19:36:01.1415660Z 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-08-26T19:36:01.1416970Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1418200Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1419610Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1420850Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1422170Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1423440Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1424810Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1426070Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1427440Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1428580Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1429990Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1431170Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1432490Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1433730Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1434980Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1436220Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1437560Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1438840Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1440130Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1441460Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1442710Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1443970Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1445480Z 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-08-26T19:36:01.1446810Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1448230Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1449650Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1450890Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1452920Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1454270Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1459030Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1461820Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1466700Z 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-08-26T19:36:01.1467610Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1471650Z 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-08-26T19:36:01.1475990Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1479620Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1483800Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1484830Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1490010Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1491440Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1497070Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1498900Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1504490Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1506270Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1507900Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1513330Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1514970Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1519400Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1523510Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1528420Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1532220Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1537210Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1539550Z 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-08-26T19:36:01.1540870Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1546930Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1548010Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1554620Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1555820Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1562700Z 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-08-26T19:36:01.1563800Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1570940Z 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-08-26T19:36:01.1571850Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1573080Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1578630Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1579610Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1586940Z copying torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1588020Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1589280Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1594220Z 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-08-26T19:36:01.1595140Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1602310Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1603270Z 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-08-26T19:36:01.1604500Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1610580Z 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-08-26T19:36:01.1611480Z copying torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1618660Z 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-08-26T19:36:01.1620600Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1621950Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1628520Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1629770Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1637260Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1638300Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1644830Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1645990Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1647370Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1653290Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1654450Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1662350Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1663400Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1664870Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1670620Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1730500Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1731730Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1733040Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1734460Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1735690Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1737230Z 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-08-26T19:36:01.1738550Z 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-08-26T19:36:01.1739830Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1741110Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1742420Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1743890Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1745240Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1746430Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1747750Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1749050Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1750340Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1751600Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1753060Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1754350Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1755650Z copying torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1756960Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1758300Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1759720Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1760970Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1762250Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1763690Z 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-08-26T19:36:01.1765040Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1766240Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1767540Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1771180Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1776020Z 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-08-26T19:36:01.1780150Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1784130Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1785280Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1790140Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1791800Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1798050Z 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-08-26T19:36:01.1799220Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1802090Z 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-08-26T19:36:01.1807220Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1808310Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1812300Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1816250Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1819950Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1820810Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1826110Z 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-08-26T19:36:01.1828100Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1833730Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1835020Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1841020Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1843190Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1849170Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1850780Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1856400Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1857640Z 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-08-26T19:36:01.1863750Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1865280Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1871310Z 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-08-26T19:36:01.1872420Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1874500Z copying torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1876080Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1881930Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1884670Z 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-08-26T19:36:01.1886680Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1891370Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1896330Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1903880Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1905090Z 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-08-26T19:36:01.1909030Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1913300Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-08-26T19:36:01.1915620Z 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-08-26T19:36:01.1917160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1917870Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1922350Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1923740Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1929550Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1931040Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1937470Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1938630Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1945210Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1946200Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1952960Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1953820Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1955150Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1959670Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-08-26T19:36:01.1960950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-26T19:36:01.1961510Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-26T19:36:01.1967100Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-26T19:36:01.1968280Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-26T19:36:01.1974020Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-26T19:36:01.1975500Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-26T19:36:01.1976870Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-08-26T19:36:01.1983800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10 2025-08-26T19:36:01.1984200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.1984790Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.1986250Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.1992060Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.1998200Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.1999110Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2000460Z copying torch/include/c10/core/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2007110Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2008050Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2014310Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2015840Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2021910Z copying torch/include/c10/core/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2023210Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2024560Z copying torch/include/c10/core/AllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2030450Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2031520Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2037870Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2039670Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2045630Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2046530Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2048030Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2054130Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2055310Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2058970Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2064580Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2065670Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2066910Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2073930Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2075110Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2081890Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2082840Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2089530Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2090630Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2091990Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2097310Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2098320Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2104310Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2105560Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2113600Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2114800Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2120890Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2122070Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2128710Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2129700Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2131040Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2137740Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2138880Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2145590Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2146680Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2153510Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2154580Z copying torch/include/c10/core/CachingDeviceAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-08-26T19:36:01.2155900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2156530Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2161500Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2162600Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2170010Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2171120Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2179270Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2185960Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2186820Z copying torch/include/c10/core/impl/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2188250Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2191490Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2195480Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2201280Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2203820Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2204950Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2211610Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2212600Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2220060Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2221190Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-08-26T19:36:01.2222650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test 2025-08-26T19:36:01.2223160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-08-26T19:36:01.2223800Z copying torch/include/c10/test/util/complex_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-08-26T19:36:01.2227900Z 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-08-26T19:36:01.2229190Z copying torch/include/c10/test/util/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-08-26T19:36:01.2236260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2236690Z copying torch/include/c10/util/Type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2237910Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2239480Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2243540Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2246010Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2253020Z copying torch/include/c10/util/Semaphore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2254080Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2255360Z copying torch/include/c10/util/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2262140Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2263190Z copying torch/include/c10/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2271690Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2273150Z copying torch/include/c10/util/env.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2439350Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2440650Z copying torch/include/c10/util/Gauge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2442180Z copying torch/include/c10/util/WaitCounterDynamicBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2450550Z copying torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2451690Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2452970Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2454200Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2455760Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2457020Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2458300Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2459750Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2461090Z copying torch/include/c10/util/IntrusiveList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2462370Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2463570Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2464880Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2466180Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2467520Z copying torch/include/c10/util/Enumerate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2468730Z copying torch/include/c10/util/numa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2469970Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2471250Z copying torch/include/c10/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2472530Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2473850Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2475080Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2476400Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2477650Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2479030Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2480380Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2481570Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2482850Z copying torch/include/c10/util/overflows.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2484220Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2485460Z copying torch/include/c10/util/Load.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2486810Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2488230Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2489340Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2490630Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2491960Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2493280Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2494580Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2495950Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2497180Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2498750Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2499980Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2501350Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2502620Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2504000Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2505290Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2506760Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2507910Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2509350Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2510620Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2511940Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2513260Z copying torch/include/c10/util/strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2514650Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2515990Z copying torch/include/c10/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2517330Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2518570Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2520210Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2521380Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2522910Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2524170Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2525580Z copying torch/include/c10/util/NetworkFlow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2526830Z copying torch/include/c10/util/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2528270Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2529550Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2530890Z copying torch/include/c10/util/WaitCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2532140Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2533510Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2534790Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2536030Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2537270Z copying torch/include/c10/util/int128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2538530Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2539750Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2541070Z copying torch/include/c10/util/irange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2542370Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2543690Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2544900Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2546710Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2547540Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2548810Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2550070Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2551360Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2552880Z copying torch/include/c10/util/DynamicCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2554040Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2555520Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2556850Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2558240Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2559510Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2560840Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2562240Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2563610Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2564870Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2566390Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2567770Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2569340Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2570600Z copying torch/include/c10/util/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2572040Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2573300Z copying torch/include/c10/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2574660Z copying torch/include/c10/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2575970Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2577510Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2578930Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2580250Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-08-26T19:36:01.2581590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2582160Z copying torch/include/c10/metal/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2583700Z copying torch/include/c10/metal/special_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2585370Z copying torch/include/c10/metal/reduction_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2586650Z copying torch/include/c10/metal/expm1f.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2587930Z copying torch/include/c10/metal/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2589800Z copying torch/include/c10/metal/indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2590730Z copying torch/include/c10/metal/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2591990Z copying torch/include/c10/metal/atomic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-08-26T19:36:01.2593410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2594100Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2595380Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2596700Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2598040Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2599310Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2600580Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2604770Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2605890Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2607300Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2614980Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2616040Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2623000Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2624060Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2631030Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-08-26T19:36:01.2632190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-08-26T19:36:01.2632690Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-08-26T19:36:01.2634090Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-08-26T19:36:01.2639400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-26T19:36:01.2639850Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-26T19:36:01.2640900Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-26T19:36:01.2646890Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-26T19:36:01.2647790Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-26T19:36:01.2649080Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-26T19:36:01.2653960Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-08-26T19:36:01.2655510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-08-26T19:36:01.2656130Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-08-26T19:36:01.2661940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test 2025-08-26T19:36:01.2662320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-08-26T19:36:01.2662830Z copying torch/include/c10/xpu/test/impl/XPUTest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-08-26T19:36:01.2663930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-26T19:36:01.2664540Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-26T19:36:01.2665830Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-26T19:36:01.2670410Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-08-26T19:36:01.2671580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-08-26T19:36:01.2672130Z copying torch/include/c10/mobile/CPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-08-26T19:36:01.2678290Z copying torch/include/c10/mobile/CPUProfilingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-08-26T19:36:01.2679870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-26T19:36:01.2680490Z copying torch/include/fp16/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-26T19:36:01.2685860Z copying torch/include/fp16/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-26T19:36:01.2686750Z copying torch/include/fp16/bitcasts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-08-26T19:36:01.2688330Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2693810Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2694970Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2701800Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2702960Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2709710Z 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-08-26T19:36:01.2710880Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2712250Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2717870Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2718750Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2725420Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2726810Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2734370Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2735450Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2736730Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2743260Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2744320Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2745740Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2751270Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2752450Z copying torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2753800Z copying torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2755220Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2756550Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2757910Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2759430Z copying torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2760760Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2762140Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2763500Z 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-08-26T19:36:01.2764880Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2766130Z 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-08-26T19:36:01.2767450Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2768850Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2770440Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2772000Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2773450Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2774840Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2776340Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2777670Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2779020Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:01.2780450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-08-26T19:36:01.2781310Z 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-08-26T19:36:01.2782670Z 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-08-26T19:36:01.2783870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-08-26T19:36:01.2784670Z copying torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-08-26T19:36:01.2786300Z 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-08-26T19:36:01.2787780Z 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-08-26T19:36:01.2789250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-08-26T19:36:01.2790000Z 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-08-26T19:36:01.2796060Z 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-08-26T19:36:01.2797010Z 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-08-26T19:36:01.2797940Z 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-08-26T19:36:01.2798910Z 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-08-26T19:36:01.2799820Z 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-08-26T19:36:01.2800720Z 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-08-26T19:36:01.2801630Z 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-08-26T19:36:01.2802430Z 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-08-26T19:36:01.2803210Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2804780Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2806120Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2807530Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2808910Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2810510Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2811800Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2813310Z copying torch/include/ATen/native/cuda/cutlass_common.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2814620Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2816370Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2818870Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2825030Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2826120Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2827450Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2828780Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2830250Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2831520Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2833850Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2834840Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2836450Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2837710Z copying torch/include/ATen/native/cuda/fused_adagrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2839080Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2840370Z copying torch/include/ATen/native/cuda/fused_adagrad_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2841790Z 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-08-26T19:36:01.2843270Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2844560Z copying torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2845800Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2847320Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2848600Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2852440Z 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-08-26T19:36:01.2853330Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2854650Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2860700Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2861890Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2869340Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2870410Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2877310Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2878320Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-08-26T19:36:01.2879620Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2885160Z copying torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2886290Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2893010Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2894010Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2895430Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2900960Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2901860Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2909160Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2909990Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2916520Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2917350Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2918760Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-08-26T19:36:01.2924040Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:36:01.2925350Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:36:01.2932710Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:36:01.2933960Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:36:01.2935430Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:36:01.2941110Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-08-26T19:36:01.2942230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc 2025-08-26T19:36:01.2942870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor 2025-08-26T19:36:01.2943350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-08-26T19:36:01.2943970Z copying torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-08-26T19:36:01.2950800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-08-26T19:36:01.2951150Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-08-26T19:36:01.3093900Z copying torch/_inductor/script.ld -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-08-26T19:36:01.3100250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:01.3100690Z copying torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:01.3114640Z copying torch/_inductor/kernel/flex/templates/flex_decode.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:01.3121040Z copying torch/_inductor/kernel/flex/templates/utilities.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:01.3127830Z copying torch/_inductor/kernel/flex/templates/flex_attention.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:01.3134810Z copying torch/_inductor/kernel/flex/templates/common.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:01.3140730Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:36:01.3147740Z copying torch/_export/serde/export_schema.thrift -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-08-26T19:36:01.3154500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share 2025-08-26T19:36:01.3154880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake 2025-08-26T19:36:01.3155360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-08-26T19:36:01.3156080Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-08-26T19:36:01.3157440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3158040Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3159510Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3160750Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3162340Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3163670Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3165220Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3166320Z copying torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-08-26T19:36:01.3167720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3168330Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3169720Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3170910Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3172400Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3173940Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3175270Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3176610Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3177900Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3179300Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-08-26T19:36:01.3180690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-08-26T19:36:01.3181330Z 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-08-26T19:36:01.3182680Z 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-08-26T19:36:01.3184420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-08-26T19:36:01.3184890Z 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-08-26T19:36:01.3186200Z 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-08-26T19:36:01.3188020Z 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-08-26T19:36:01.3189420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-08-26T19:36:01.3190190Z 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-08-26T19:36:01.3191510Z 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-08-26T19:36:01.3192910Z 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-08-26T19:36:01.3194210Z 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-08-26T19:36:01.3195460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-08-26T19:36:01.3196090Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-08-26T19:36:01.3197930Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-08-26T19:36:01.3198890Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-08-26T19:36:01.3205580Z 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-08-26T19:36:01.3212570Z 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-08-26T19:36:01.3219420Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-26T19:36:01.3222900Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-26T19:36:01.3223840Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-26T19:36:01.3231620Z copying torch/utils/model_dump/code.js -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-26T19:36:01.3244700Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-26T19:36:01.3251530Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-08-26T19:36:01.3258300Z copying torch/_dynamo/graph_break_registry.json -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-08-26T19:36:01.3286910Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:36:01.3925750Z copying torch/lib/libtorch.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:36:01.3936590Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:36:01.3946800Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:36:02.6770300Z copying torch/lib/libc10.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:36:02.6915460Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged 2025-08-26T19:36:02.6915840Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6916670Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6918230Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6919600Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6921070Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6922790Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6924370Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6925810Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6926860Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6928640Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6930040Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6931530Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6933040Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6934460Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6935790Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6937540Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6938920Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6941650Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-08-26T19:36:02.6942730Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6943470Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6944960Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6946380Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6947790Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6949570Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6950910Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6952460Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6953720Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6955170Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6956440Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6957770Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6959290Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6960910Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6962220Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6963720Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6965070Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6966470Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6967770Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6969070Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6970430Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6971800Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6973110Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6974350Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-08-26T19:36:02.6975650Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen 2025-08-26T19:36:02.6976140Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-08-26T19:36:02.6976840Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-08-26T19:36:02.6981300Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-08-26T19:36:02.6982460Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6983490Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6984580Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6986000Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6987270Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6988710Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6990030Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6991360Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6992770Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6994040Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6995450Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6996730Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6998120Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.6999320Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7000740Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7001980Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7003190Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7004570Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7005950Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7007170Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7008460Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7009820Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7011170Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7012420Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7013740Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7015050Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7016410Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7017680Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7018890Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7020240Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7021660Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7022970Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7024270Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7025510Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7026890Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7028190Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7029450Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7030700Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7032030Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7033260Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-08-26T19:36:02.7034510Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:36:02.7036820Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-08-26T19:36:02.7038550Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-08-26T19:36:02.7040260Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-08-26T19:36:02.7042310Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-08-26T19:36:02.7044340Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-08-26T19:36:02.7045790Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-08-26T19:36:02.7385070Z running build_ext 2025-08-26T19:36:02.7403400Z -- Building with NumPy bindings 2025-08-26T19:36:02.7403630Z -- Not using cuDNN 2025-08-26T19:36:02.7403770Z -- Not using CUDA 2025-08-26T19:36:02.7403890Z -- Not using XPU 2025-08-26T19:36:02.7404020Z -- Not using MKLDNN 2025-08-26T19:36:02.7404150Z -- Not using NCCL 2025-08-26T19:36:02.7404290Z -- Building with distributed package: 2025-08-26T19:36:02.7404480Z -- USE_TENSORPIPE=False 2025-08-26T19:36:02.7404680Z -- USE_GLOO=False 2025-08-26T19:36:02.7404820Z -- USE_MPI=False 2025-08-26T19:36:02.7404940Z -- Not using ITT 2025-08-26T19:36:02.8238410Z 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-08-26T19:36:02.8239230Z 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-08-26T19:36:02.8671360Z building 'torch._C' extension 2025-08-26T19:36:02.8672100Z creating build/temp.macosx-14.0-arm64-cpython-312 2025-08-26T19:36:02.8672820Z creating build/temp.macosx-14.0-arm64-cpython-312/torch 2025-08-26T19:36:02.8673440Z creating build/temp.macosx-14.0-arm64-cpython-312/torch/csrc 2025-08-26T19:36:02.8676250Z 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-1756236735/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-08-26T19:36:02.9586530Z 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-08-26T19:36:03.0742260Z copying /opt/homebrew/opt/libomp/lib/libomp.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-08-26T19:36:03.8746460Z copying /opt/homebrew/opt/libomp/include/omp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-08-26T19:36:03.8790950Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-08-26T19:36:03.8791490Z !! 2025-08-26T19:36:03.8791560Z 2025-08-26T19:36:03.8791650Z ******************************************************************************** 2025-08-26T19:36:03.8791880Z Please avoid running ``setup.py`` directly. 2025-08-26T19:36:03.8792210Z Instead, use pypa/build, pypa/installer or other 2025-08-26T19:36:03.8792430Z standards-based tools. 2025-08-26T19:36:03.8792540Z 2025-08-26T19:36:03.8792730Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-08-26T19:36:03.8793050Z ******************************************************************************** 2025-08-26T19:36:03.8793200Z 2025-08-26T19:36:03.8793240Z !! 2025-08-26T19:36:03.8793350Z self.initialize_options() 2025-08-26T19:36:03.8815480Z installing to build/bdist.macosx-14.0-arm64/wheel 2025-08-26T19:36:03.8815700Z running install 2025-08-26T19:36:03.8854920Z running install_lib 2025-08-26T19:36:03.8881410Z creating build/bdist.macosx-14.0-arm64 2025-08-26T19:36:03.8881930Z creating build/bdist.macosx-14.0-arm64/wheel 2025-08-26T19:36:03.8883440Z creating build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.8884530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-08-26T19:36:03.8885370Z 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-08-26T19:36:03.8886910Z 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-08-26T19:36:03.8889320Z 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-08-26T19:36:03.8894580Z 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-08-26T19:36:03.8895370Z 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-08-26T19:36:03.8896120Z 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-08-26T19:36:03.8896860Z 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-08-26T19:36:03.8897580Z 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-08-26T19:36:03.8898560Z 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-08-26T19:36:03.8900020Z 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-08-26T19:36:03.8901270Z 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-08-26T19:36:03.8902390Z 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-08-26T19:36:03.8903920Z 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-08-26T19:36:03.8905180Z 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-08-26T19:36:03.8906380Z 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-08-26T19:36:03.8907960Z 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-08-26T19:36:03.8909180Z 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-08-26T19:36:03.8910320Z 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-08-26T19:36:03.8911790Z 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-08-26T19:36:03.8912920Z 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-08-26T19:36:03.8914440Z 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-08-26T19:36:03.8915840Z 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-08-26T19:36:03.8917580Z 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-08-26T19:36:03.8918960Z 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-08-26T19:36:03.8920070Z 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-08-26T19:36:03.8921660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-26T19:36:03.8922440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/debug_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-26T19:36:03.8923630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-26T19:36:03.8925290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-26T19:36:03.8926330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/rng_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-26T19:36:03.8927510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-08-26T19:36:03.8928700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_storage_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.8930120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc 2025-08-26T19:36:03.8930950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor 2025-08-26T19:36:03.8931750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-08-26T19:36:03.8932560Z 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-08-26T19:36:03.8933890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-26T19:36:03.8934460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-26T19:36:03.8936000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/scribe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-26T19:36:03.8937320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-26T19:36:03.8938700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-26T19:36:03.8940270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-08-26T19:36:03.8941960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8942770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/partitioners.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8944990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compile_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8946370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8947790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8950140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-08-26T19:36:03.8950870Z 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-08-26T19:36:03.8952110Z 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-08-26T19:36:03.8953420Z 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-08-26T19:36:03.8954910Z 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-08-26T19:36:03.8956000Z 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-08-26T19:36:03.8957590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/python_key.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8958650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8959780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8960900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/deprecated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8962120Z 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-08-26T19:36:03.8963470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8964660Z 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-08-26T19:36:03.8965680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/fx_minifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8966960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/predispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8968490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-08-26T19:36:03.8969240Z 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-08-26T19:36:03.8970710Z 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-08-26T19:36:03.8972400Z 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-08-26T19:36:03.8973630Z 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-08-26T19:36:03.8975020Z 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-08-26T19:36:03.8976830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/descriptors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-08-26T19:36:03.8977840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/graph_capture_wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-08-26T19:36:03.8979300Z 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-08-26T19:36:03.8980920Z 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-08-26T19:36:03.8982200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-08-26T19:36:03.8983460Z 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-08-26T19:36:03.8984880Z 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-08-26T19:36:03.8986090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/graph_capture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-08-26T19:36:03.8987550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/graph_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-08-26T19:36:03.8989160Z 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-08-26T19:36:03.8990460Z 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-08-26T19:36:03.8991830Z 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-08-26T19:36:03.8992920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/apis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8994350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8995480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8997220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compilers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.8998420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/eager_transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.9000040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/vmap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.9001410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.9002580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/make_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.9003950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/functional_call.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-08-26T19:36:03.9005390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9006010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9007160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_getlimits.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9008220Z 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-08-26T19:36:03.9009340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9010670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9011800Z 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-08-26T19:36:03.9012860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9014330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-08-26T19:36:03.9014950Z 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-08-26T19:36:03.9016110Z 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-08-26T19:36:03.9017560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9018900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9019720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ndarray.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9020970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ufuncs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9022110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9023290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_normalizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9024410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9025510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9026670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9028010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-08-26T19:36:03.9029450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9030070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9031210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9032680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-08-26T19:36:03.9033330Z 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-08-26T19:36:03.9034610Z 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-08-26T19:36:03.9035390Z 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-08-26T19:36:03.9036800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-08-26T19:36:03.9037460Z 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-08-26T19:36:03.9038610Z 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-08-26T19:36:03.9044720Z 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-08-26T19:36:03.9045900Z 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-08-26T19:36:03.9047090Z 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-08-26T19:36:03.9048320Z 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-08-26T19:36:03.9049640Z 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-08-26T19:36:03.9050760Z 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-08-26T19:36:03.9052190Z 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-08-26T19:36:03.9053410Z 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-08-26T19:36:03.9054690Z 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-08-26T19:36:03.9055880Z 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-08-26T19:36:03.9056960Z 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-08-26T19:36:03.9058170Z 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-08-26T19:36:03.9059310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/converter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9060780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9061900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9063150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9064770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9066150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-08-26T19:36:03.9066820Z 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-08-26T19:36:03.9067960Z 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-08-26T19:36:03.9069160Z 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-08-26T19:36:03.9070820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-08-26T19:36:03.9071530Z 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-08-26T19:36:03.9072770Z 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-08-26T19:36:03.9073830Z 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-08-26T19:36:03.9075020Z 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-08-26T19:36:03.9076130Z 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-08-26T19:36:03.9077350Z 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-08-26T19:36:03.9078440Z 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-08-26T19:36:03.9079710Z 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-08-26T19:36:03.9080820Z 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-08-26T19:36:03.9082030Z 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-08-26T19:36:03.9083100Z 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-08-26T19:36:03.9084400Z 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-08-26T19:36:03.9085620Z 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-08-26T19:36:03.9086920Z 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-08-26T19:36:03.9087920Z 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-08-26T19:36:03.9089200Z 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-08-26T19:36:03.9090320Z 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-08-26T19:36:03.9091690Z 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-08-26T19:36:03.9092800Z 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-08-26T19:36:03.9093950Z 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-08-26T19:36:03.9095200Z 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-08-26T19:36:03.9096460Z 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-08-26T19:36:03.9097630Z 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-08-26T19:36:03.9098750Z 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-08-26T19:36:03.9099970Z 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-08-26T19:36:03.9101110Z 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-08-26T19:36:03.9102350Z 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-08-26T19:36:03.9103560Z 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-08-26T19:36:03.9104640Z 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-08-26T19:36:03.9105870Z 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-08-26T19:36:03.9107060Z 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-08-26T19:36:03.9108200Z 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-08-26T19:36:03.9109390Z 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-08-26T19:36:03.9110600Z 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-08-26T19:36:03.9111790Z 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-08-26T19:36:03.9113100Z 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-08-26T19:36:03.9114220Z 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-08-26T19:36:03.9115350Z 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-08-26T19:36:03.9116570Z 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-08-26T19:36:03.9118350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-08-26T19:36:03.9118980Z 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-08-26T19:36:03.9120880Z 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-08-26T19:36:03.9121790Z 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-08-26T19:36:03.9123120Z 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-08-26T19:36:03.9124270Z 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-08-26T19:36:03.9125410Z 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-08-26T19:36:03.9126480Z 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-08-26T19:36:03.9127650Z 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-08-26T19:36:03.9128870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/verifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-08-26T19:36:03.9130700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-08-26T19:36:03.9131240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/monitor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-08-26T19:36:03.9132690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-08-26T19:36:03.9133280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-08-26T19:36:03.9134210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-08-26T19:36:03.9135570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-26T19:36:03.9136630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-26T19:36:03.9137830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/meta_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-26T19:36:03.9139420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-26T19:36:03.9140630Z 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-08-26T19:36:03.9141910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-26T19:36:03.9143290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-26T19:36:03.9145200Z 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-08-26T19:36:03.9146190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-08-26T19:36:03.9147310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_meta_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.9149930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.9151010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-08-26T19:36:03.9151650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/futures/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-08-26T19:36:03.9152790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/library.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.9159930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-08-26T19:36:03.9160390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-08-26T19:36:03.9162110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_jit_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.9163790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-08-26T19:36:03.9164330Z 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-08-26T19:36:03.9165240Z 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-08-26T19:36:03.9166400Z 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-08-26T19:36:03.9168100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9168960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-08-26T19:36:03.9169600Z 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-08-26T19:36:03.9171020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-08-26T19:36:03.9171710Z 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-08-26T19:36:03.9172930Z 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-08-26T19:36:03.9173940Z 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-08-26T19:36:03.9175150Z 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-08-26T19:36:03.9176710Z 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-08-26T19:36:03.9178030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-08-26T19:36:03.9178690Z 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-08-26T19:36:03.9179810Z 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-08-26T19:36:03.9180980Z 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-08-26T19:36:03.9182120Z 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-08-26T19:36:03.9183280Z 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-08-26T19:36:03.9184430Z 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-08-26T19:36:03.9185500Z 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-08-26T19:36:03.9186610Z 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-08-26T19:36:03.9188740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-08-26T19:36:03.9189310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-08-26T19:36:03.9189980Z 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-08-26T19:36:03.9191320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-08-26T19:36:03.9192090Z 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-08-26T19:36:03.9193160Z 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-08-26T19:36:03.9194220Z 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-08-26T19:36:03.9195580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-08-26T19:36:03.9196220Z 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-08-26T19:36:03.9197320Z 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-08-26T19:36:03.9198380Z 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-08-26T19:36:03.9199540Z 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-08-26T19:36:03.9200600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/common_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9202090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-08-26T19:36:03.9202860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-08-26T19:36:03.9203580Z 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-08-26T19:36:03.9204970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-08-26T19:36:03.9205750Z 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-08-26T19:36:03.9206830Z 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-08-26T19:36:03.9207910Z 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-08-26T19:36:03.9209060Z 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-08-26T19:36:03.9210200Z 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-08-26T19:36:03.9211590Z 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-08-26T19:36:03.9212680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-08-26T19:36:03.9213400Z 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-08-26T19:36:03.9214710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-08-26T19:36:03.9215390Z 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-08-26T19:36:03.9216520Z 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-08-26T19:36:03.9217600Z 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-08-26T19:36:03.9218740Z 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-08-26T19:36:03.9219760Z 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-08-26T19:36:03.9220900Z 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-08-26T19:36:03.9222240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-08-26T19:36:03.9222950Z 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-08-26T19:36:03.9224140Z 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-08-26T19:36:03.9225220Z 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-08-26T19:36:03.9226350Z 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-08-26T19:36:03.9227560Z 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-08-26T19:36:03.9228710Z 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-08-26T19:36:03.9229810Z 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-08-26T19:36:03.9230920Z 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-08-26T19:36:03.9232060Z 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-08-26T19:36:03.9233210Z 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-08-26T19:36:03.9234390Z 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-08-26T19:36:03.9235610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-08-26T19:36:03.9236370Z 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-08-26T19:36:03.9237550Z 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-08-26T19:36:03.9238500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9239640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9240730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/_reduction.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9246950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-08-26T19:36:03.9247500Z 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-08-26T19:36:03.9248180Z 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-08-26T19:36:03.9248850Z 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-08-26T19:36:03.9249520Z 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-08-26T19:36:03.9250170Z 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-08-26T19:36:03.9250880Z 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-08-26T19:36:03.9251540Z 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-08-26T19:36:03.9252240Z 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-08-26T19:36:03.9253500Z 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-08-26T19:36:03.9254650Z 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-08-26T19:36:03.9255870Z 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-08-26T19:36:03.9257440Z 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-08-26T19:36:03.9259160Z 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-08-26T19:36:03.9260290Z 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-08-26T19:36:03.9261500Z 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-08-26T19:36:03.9263160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-08-26T19:36:03.9263940Z 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-08-26T19:36:03.9265210Z 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-08-26T19:36:03.9266370Z 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-08-26T19:36:03.9267580Z 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-08-26T19:36:03.9268760Z 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-08-26T19:36:03.9269960Z 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-08-26T19:36:03.9271100Z 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-08-26T19:36:03.9272320Z 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-08-26T19:36:03.9273500Z 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-08-26T19:36:03.9274600Z 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-08-26T19:36:03.9275710Z 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-08-26T19:36:03.9277220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-08-26T19:36:03.9277890Z 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-08-26T19:36:03.9280430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-08-26T19:36:03.9281010Z 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-08-26T19:36:03.9282430Z 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-08-26T19:36:03.9283640Z 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-08-26T19:36:03.9284610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9286130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-08-26T19:36:03.9287000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-08-26T19:36:03.9287730Z 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-08-26T19:36:03.9289210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-08-26T19:36:03.9289930Z 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-08-26T19:36:03.9291070Z 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-08-26T19:36:03.9292410Z 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-08-26T19:36:03.9293730Z 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-08-26T19:36:03.9295080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-08-26T19:36:03.9295890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-08-26T19:36:03.9296650Z 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-08-26T19:36:03.9298140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-08-26T19:36:03.9298910Z 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-08-26T19:36:03.9300070Z 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-08-26T19:36:03.9301200Z 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-08-26T19:36:03.9302540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-08-26T19:36:03.9303210Z 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-08-26T19:36:03.9304430Z 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-08-26T19:36:03.9305710Z 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-08-26T19:36:03.9306860Z 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-08-26T19:36:03.9307890Z 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-08-26T19:36:03.9309260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-08-26T19:36:03.9309970Z 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-08-26T19:36:03.9311350Z 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-08-26T19:36:03.9312290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9314990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9316390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9317390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9318890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-08-26T19:36:03.9319600Z 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-08-26T19:36:03.9320780Z 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-08-26T19:36:03.9321980Z 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-08-26T19:36:03.9323410Z 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-08-26T19:36:03.9324530Z 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-08-26T19:36:03.9325960Z 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-08-26T19:36:03.9327170Z 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-08-26T19:36:03.9328360Z 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-08-26T19:36:03.9330120Z 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-08-26T19:36:03.9331330Z 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-08-26T19:36:03.9332620Z 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-08-26T19:36:03.9334220Z 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-08-26T19:36:03.9335420Z 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-08-26T19:36:03.9336700Z 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-08-26T19:36:03.9338760Z 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-08-26T19:36:03.9344650Z 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-08-26T19:36:03.9345530Z 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-08-26T19:36:03.9347030Z 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-08-26T19:36:03.9348360Z 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-08-26T19:36:03.9350120Z 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-08-26T19:36:03.9351240Z 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-08-26T19:36:03.9352750Z 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-08-26T19:36:03.9353950Z 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-08-26T19:36:03.9355170Z 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-08-26T19:36:03.9356700Z 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-08-26T19:36:03.9358080Z 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-08-26T19:36:03.9359250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-08-26T19:36:03.9360470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_thread_safe_fork.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.9361650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-26T19:36:03.9362300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/event.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-26T19:36:03.9363390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-26T19:36:03.9364540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-08-26T19:36:03.9365620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.9367280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9367830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9369040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9370460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-08-26T19:36:03.9371180Z 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-08-26T19:36:03.9372540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-08-26T19:36:03.9373320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-08-26T19:36:03.9374050Z 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-08-26T19:36:03.9375310Z 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-08-26T19:36:03.9377110Z 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-08-26T19:36:03.9378030Z 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-08-26T19:36:03.9378960Z 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-08-26T19:36:03.9380070Z 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-08-26T19:36:03.9380930Z 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-08-26T19:36:03.9382380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-08-26T19:36:03.9383080Z 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-08-26T19:36:03.9384210Z 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-08-26T19:36:03.9385460Z 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-08-26T19:36:03.9386540Z 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-08-26T19:36:03.9387780Z 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-08-26T19:36:03.9388870Z 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-08-26T19:36:03.9390100Z 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-08-26T19:36:03.9391310Z 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-08-26T19:36:03.9392440Z 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-08-26T19:36:03.9393600Z 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-08-26T19:36:03.9394520Z 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-08-26T19:36:03.9396070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-08-26T19:36:03.9396740Z 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-08-26T19:36:03.9397940Z 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-08-26T19:36:03.9399110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-08-26T19:36:03.9399820Z 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-08-26T19:36:03.9400970Z 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-08-26T19:36:03.9402140Z 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-08-26T19:36:03.9403290Z 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-08-26T19:36:03.9404520Z 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-08-26T19:36:03.9405670Z 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-08-26T19:36:03.9406890Z 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-08-26T19:36:03.9407960Z 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-08-26T19:36:03.9409430Z 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-08-26T19:36:03.9410640Z 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-08-26T19:36:03.9411860Z 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-08-26T19:36:03.9413340Z 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-08-26T19:36:03.9414510Z 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-08-26T19:36:03.9415730Z 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-08-26T19:36:03.9416910Z 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-08-26T19:36:03.9417970Z 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-08-26T19:36:03.9419090Z 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-08-26T19:36:03.9420520Z 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-08-26T19:36:03.9421670Z 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-08-26T19:36:03.9422910Z 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-08-26T19:36:03.9424030Z 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-08-26T19:36:03.9425150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9426330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9427530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9429820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9430480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9431720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9433110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9434250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9435340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_globals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9436600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9438290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9440720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9441760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9442910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9444120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9445710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_experimental.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9446990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9448380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-08-26T19:36:03.9449280Z 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-08-26T19:36:03.9450470Z 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-08-26T19:36:03.9451740Z 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-08-26T19:36:03.9452850Z 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-08-26T19:36:03.9454160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9455320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9456880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9457960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9459110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9460230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-08-26T19:36:03.9461720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-08-26T19:36:03.9462440Z 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-08-26T19:36:03.9520680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/torch_shm_manager -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-08-26T19:36:03.9521890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-08-26T19:36:03.9579370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:03.9580660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-08-26T19:36:03.9581600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-08-26T19:36:03.9582350Z 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-08-26T19:36:03.9583520Z 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-08-26T19:36:03.9584670Z 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-08-26T19:36:03.9585710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-08-26T19:36:03.9586790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-08-26T19:36:03.9587480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-08-26T19:36:03.9588840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-08-26T19:36:03.9589510Z 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-08-26T19:36:03.9590590Z 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-08-26T19:36:03.9591670Z 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-08-26T19:36:03.9593230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9594070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-08-26T19:36:03.9594800Z 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-08-26T19:36:03.9596050Z 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-08-26T19:36:03.9597230Z 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-08-26T19:36:03.9598630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-08-26T19:36:03.9599350Z 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-08-26T19:36:03.9600320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9601470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9602620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9603830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/run.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9605340Z 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-08-26T19:36:03.9606910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-08-26T19:36:03.9607560Z 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-08-26T19:36:03.9608730Z 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-08-26T19:36:03.9610280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-08-26T19:36:03.9611060Z 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-08-26T19:36:03.9612280Z 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-08-26T19:36:03.9613440Z 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-08-26T19:36:03.9614560Z 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-08-26T19:36:03.9615850Z 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-08-26T19:36:03.9617370Z 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-08-26T19:36:03.9618470Z 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-08-26T19:36:03.9620000Z 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-08-26T19:36:03.9621110Z 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-08-26T19:36:03.9622250Z 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-08-26T19:36:03.9623820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-08-26T19:36:03.9624620Z 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-08-26T19:36:03.9625790Z 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-08-26T19:36:03.9627020Z 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-08-26T19:36:03.9628440Z 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-08-26T19:36:03.9629370Z 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-08-26T19:36:03.9630440Z 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-08-26T19:36:03.9631960Z 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-08-26T19:36:03.9632950Z 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-08-26T19:36:03.9634140Z 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-08-26T19:36:03.9635470Z 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-08-26T19:36:03.9636610Z 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-08-26T19:36:03.9637740Z 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-08-26T19:36:03.9638990Z 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-08-26T19:36:03.9640230Z 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-08-26T19:36:03.9641420Z 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-08-26T19:36:03.9642960Z 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-08-26T19:36:03.9644240Z 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-08-26T19:36:03.9645410Z 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-08-26T19:36:03.9646580Z 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-08-26T19:36:03.9647780Z 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-08-26T19:36:03.9649080Z 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-08-26T19:36:03.9650200Z 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-08-26T19:36:03.9651530Z 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-08-26T19:36:03.9652600Z 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-08-26T19:36:03.9653850Z 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-08-26T19:36:03.9655100Z 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-08-26T19:36:03.9656510Z 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-08-26T19:36:03.9657700Z 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-08-26T19:36:03.9658780Z 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-08-26T19:36:03.9660080Z 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-08-26T19:36:03.9661250Z 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-08-26T19:36:03.9662370Z 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-08-26T19:36:03.9663730Z 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-08-26T19:36:03.9664820Z 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-08-26T19:36:03.9665890Z 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-08-26T19:36:03.9667040Z 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-08-26T19:36:03.9668250Z 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-08-26T19:36:03.9669400Z 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-08-26T19:36:03.9670670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9671700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-08-26T19:36:03.9672430Z 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-08-26T19:36:03.9673770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-08-26T19:36:03.9674400Z 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-08-26T19:36:03.9675530Z 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-08-26T19:36:03.9676880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-08-26T19:36:03.9677540Z 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-08-26T19:36:03.9678720Z 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-08-26T19:36:03.9679720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-08-26T19:36:03.9680410Z 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-08-26T19:36:03.9681350Z 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-08-26T19:36:03.9682570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-08-26T19:36:03.9683740Z 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-08-26T19:36:03.9685860Z 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-08-26T19:36:03.9687150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-08-26T19:36:03.9688040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-08-26T19:36:03.9688800Z 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-08-26T19:36:03.9690100Z 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-08-26T19:36:03.9691590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-08-26T19:36:03.9692320Z 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-08-26T19:36:03.9693550Z 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-08-26T19:36:03.9694790Z 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-08-26T19:36:03.9696010Z 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-08-26T19:36:03.9701750Z 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-08-26T19:36:03.9702740Z 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-08-26T19:36:03.9703700Z 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-08-26T19:36:03.9704620Z 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-08-26T19:36:03.9705550Z 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-08-26T19:36:03.9706460Z 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-08-26T19:36:03.9707380Z 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-08-26T19:36:03.9708330Z 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-08-26T19:36:03.9709030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-08-26T19:36:03.9709530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-08-26T19:36:03.9710440Z 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-08-26T19:36:03.9711670Z 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-08-26T19:36:03.9712830Z 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-08-26T19:36:03.9713880Z 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-08-26T19:36:03.9714920Z 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-08-26T19:36:03.9716240Z 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-08-26T19:36:03.9717600Z 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-08-26T19:36:03.9718970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-08-26T19:36:03.9719760Z 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-08-26T19:36:03.9721070Z 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-08-26T19:36:03.9722220Z 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-08-26T19:36:03.9723570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-08-26T19:36:03.9724430Z 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-08-26T19:36:03.9725580Z 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-08-26T19:36:03.9726680Z 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-08-26T19:36:03.9727870Z 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-08-26T19:36:03.9729200Z 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-08-26T19:36:03.9730510Z 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-08-26T19:36:03.9731700Z 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-08-26T19:36:03.9733100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-08-26T19:36:03.9733860Z 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-08-26T19:36:03.9735170Z 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-08-26T19:36:03.9736410Z 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-08-26T19:36:03.9737560Z 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-08-26T19:36:03.9738700Z 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-08-26T19:36:03.9739870Z 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-08-26T19:36:03.9741250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-08-26T19:36:03.9742050Z 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-08-26T19:36:03.9743170Z 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-08-26T19:36:03.9744290Z 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-08-26T19:36:03.9745510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-08-26T19:36:03.9746230Z 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-08-26T19:36:03.9747260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-08-26T19:36:03.9748070Z 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-08-26T19:36:03.9749220Z 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-08-26T19:36:03.9750370Z 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-08-26T19:36:03.9751840Z 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-08-26T19:36:03.9754540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-08-26T19:36:03.9755170Z 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-08-26T19:36:03.9756000Z 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-08-26T19:36:03.9756860Z 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-08-26T19:36:03.9757550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-08-26T19:36:03.9758250Z 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-08-26T19:36:03.9759410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/distributed_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9762260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-08-26T19:36:03.9762920Z 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-08-26T19:36:03.9764210Z 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-08-26T19:36:03.9765340Z 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-08-26T19:36:03.9766580Z 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-08-26T19:36:03.9767600Z 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-08-26T19:36:03.9768780Z 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-08-26T19:36:03.9769890Z 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-08-26T19:36:03.9771000Z 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-08-26T19:36:03.9772560Z 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-08-26T19:36:03.9774660Z 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-08-26T19:36:03.9775450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/argparse_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9776660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_checkpointable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9777840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9778910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/c10d_logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9780300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-08-26T19:36:03.9781120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-08-26T19:36:03.9781860Z 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-08-26T19:36:03.9783040Z 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-08-26T19:36:03.9784370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-08-26T19:36:03.9785170Z 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-08-26T19:36:03.9786290Z 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-08-26T19:36:03.9787230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-08-26T19:36:03.9787950Z 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-08-26T19:36:03.9788920Z 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-08-26T19:36:03.9790090Z 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-08-26T19:36:03.9791320Z 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-08-26T19:36:03.9792670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-08-26T19:36:03.9793540Z 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-08-26T19:36:03.9794790Z 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-08-26T19:36:03.9796080Z 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-08-26T19:36:03.9797120Z 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-08-26T19:36:03.9798310Z 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-08-26T19:36:03.9799400Z 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-08-26T19:36:03.9800700Z 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-08-26T19:36:03.9801910Z 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-08-26T19:36:03.9803060Z 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-08-26T19:36:03.9804370Z 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-08-26T19:36:03.9805580Z 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-08-26T19:36:03.9807080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-08-26T19:36:03.9807880Z 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-08-26T19:36:03.9808960Z 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-08-26T19:36:03.9810290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-08-26T19:36:03.9811130Z 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-08-26T19:36:03.9812500Z 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-08-26T19:36:03.9813650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-08-26T19:36:03.9814430Z 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-08-26T19:36:03.9815940Z 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-08-26T19:36:03.9817150Z 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-08-26T19:36:03.9818310Z 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-08-26T19:36:03.9819620Z 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-08-26T19:36:03.9820970Z 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-08-26T19:36:03.9822760Z 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-08-26T19:36:03.9823620Z 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-08-26T19:36:03.9824860Z 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-08-26T19:36:03.9825910Z 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-08-26T19:36:03.9827210Z 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-08-26T19:36:03.9828370Z 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-08-26T19:36:03.9829500Z 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-08-26T19:36:03.9830720Z 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-08-26T19:36:03.9831880Z 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-08-26T19:36:03.9833050Z 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-08-26T19:36:03.9834450Z 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-08-26T19:36:03.9835610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9836730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_dist2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9838230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-08-26T19:36:03.9838840Z 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-08-26T19:36:03.9840040Z 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-08-26T19:36:03.9841300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/replicate_with_fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-08-26T19:36:03.9842630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-08-26T19:36:03.9843310Z 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-08-26T19:36:03.9844500Z 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-08-26T19:36:03.9845610Z 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-08-26T19:36:03.9846790Z 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-08-26T19:36:03.9848130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-08-26T19:36:03.9848810Z 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-08-26T19:36:03.9850160Z 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-08-26T19:36:03.9851410Z 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-08-26T19:36:03.9852740Z 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-08-26T19:36:03.9854040Z 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-08-26T19:36:03.9855270Z 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-08-26T19:36:03.9856490Z 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-08-26T19:36:03.9857650Z 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-08-26T19:36:03.9858820Z 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-08-26T19:36:03.9860780Z 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-08-26T19:36:03.9862170Z 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-08-26T19:36:03.9863860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-08-26T19:36:03.9864730Z 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-08-26T19:36:03.9866020Z 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-08-26T19:36:03.9867230Z 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-08-26T19:36:03.9868400Z 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-08-26T19:36:03.9870090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-08-26T19:36:03.9870780Z 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-08-26T19:36:03.9871980Z 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-08-26T19:36:03.9873180Z 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-08-26T19:36:03.9874700Z 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-08-26T19:36:03.9875880Z 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-08-26T19:36:03.9877500Z 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-08-26T19:36:03.9878520Z 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-08-26T19:36:03.9879880Z 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-08-26T19:36:03.9881230Z 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-08-26T19:36:03.9882460Z 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-08-26T19:36:03.9884150Z 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-08-26T19:36:03.9885330Z 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-08-26T19:36:03.9887070Z 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-08-26T19:36:03.9888110Z 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-08-26T19:36:03.9889380Z 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-08-26T19:36:03.9890560Z 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-08-26T19:36:03.9891980Z 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-08-26T19:36:03.9893170Z 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-08-26T19:36:03.9894350Z 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-08-26T19:36:03.9895550Z 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-08-26T19:36:03.9896720Z 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-08-26T19:36:03.9898070Z 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-08-26T19:36:03.9899760Z 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-08-26T19:36:03.9900810Z 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-08-26T19:36:03.9902400Z 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-08-26T19:36:03.9903590Z 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-08-26T19:36:03.9905510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9906620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9908280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-08-26T19:36:03.9909050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-08-26T19:36:03.9909760Z 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-08-26T19:36:03.9910990Z 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-08-26T19:36:03.9912200Z 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-08-26T19:36:03.9913710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-08-26T19:36:03.9914390Z 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-08-26T19:36:03.9915490Z 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-08-26T19:36:03.9916830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-08-26T19:36:03.9917590Z 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-08-26T19:36:03.9918730Z 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-08-26T19:36:03.9919930Z 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-08-26T19:36:03.9921090Z 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-08-26T19:36:03.9922280Z 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-08-26T19:36:03.9923360Z 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-08-26T19:36:03.9924480Z 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-08-26T19:36:03.9925800Z 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-08-26T19:36:03.9926970Z 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-08-26T19:36:03.9928210Z 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-08-26T19:36:03.9929710Z 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-08-26T19:36:03.9930860Z 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-08-26T19:36:03.9932200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-08-26T19:36:03.9932910Z 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-08-26T19:36:03.9934150Z 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-08-26T19:36:03.9935250Z 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-08-26T19:36:03.9936650Z 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-08-26T19:36:03.9937640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-08-26T19:36:03.9938600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-08-26T19:36:03.9939520Z 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-08-26T19:36:03.9940670Z 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-08-26T19:36:03.9941840Z 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-08-26T19:36:03.9942950Z 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-08-26T19:36:03.9944020Z 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-08-26T19:36:03.9945170Z 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-08-26T19:36:03.9946390Z 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-08-26T19:36:03.9947600Z 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-08-26T19:36:03.9948920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-08-26T19:36:03.9949650Z 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-08-26T19:36:03.9950970Z 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-08-26T19:36:03.9951970Z 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-08-26T19:36:03.9953120Z 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-08-26T19:36:03.9954310Z 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-08-26T19:36:03.9955370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9956930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-08-26T19:36:03.9957630Z 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-08-26T19:36:03.9958980Z 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-08-26T19:36:03.9960410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9961660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/remote_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9963000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-08-26T19:36:03.9964670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-08-26T19:36:03.9965540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-08-26T19:36:03.9966210Z 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-08-26T19:36:03.9967820Z 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-08-26T19:36:03.9969030Z 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-08-26T19:36:03.9970390Z 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-08-26T19:36:03.9971530Z 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-08-26T19:36:03.9972890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-08-26T19:36:03.9973610Z 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-08-26T19:36:03.9974800Z 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-08-26T19:36:03.9976010Z 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-08-26T19:36:03.9977370Z 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-08-26T19:36:03.9978530Z 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-08-26T19:36:03.9979700Z 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-08-26T19:36:03.9980920Z 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-08-26T19:36:03.9982120Z 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-08-26T19:36:03.9983300Z 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-08-26T19:36:03.9984450Z 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-08-26T19:36:03.9985730Z 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-08-26T19:36:03.9987330Z 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-08-26T19:36:03.9988210Z 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-08-26T19:36:03.9989620Z 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-08-26T19:36:03.9990950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-08-26T19:36:03.9991710Z 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-08-26T19:36:03.9992900Z 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-08-26T19:36:03.9994110Z 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-08-26T19:36:03.9995430Z 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-08-26T19:36:03.9996560Z 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-08-26T19:36:03.9997770Z 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-08-26T19:36:03.9999100Z 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-08-26T19:36:04.0000500Z 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-08-26T19:36:04.0001800Z 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-08-26T19:36:04.0002910Z 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-08-26T19:36:04.0004090Z 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-08-26T19:36:04.0005230Z 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-08-26T19:36:04.0006480Z 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-08-26T19:36:04.0007650Z 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-08-26T19:36:04.0008860Z 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-08-26T19:36:04.0010180Z 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-08-26T19:36:04.0011480Z 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-08-26T19:36:04.0012770Z 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-08-26T19:36:04.0013970Z 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-08-26T19:36:04.0015100Z 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-08-26T19:36:04.0016560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-08-26T19:36:04.0017270Z 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-08-26T19:36:04.0018470Z 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-08-26T19:36:04.0019650Z 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-08-26T19:36:04.0020750Z 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-08-26T19:36:04.0022340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-08-26T19:36:04.0023040Z 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-08-26T19:36:04.0024160Z 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-08-26T19:36:04.0025290Z 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-08-26T19:36:04.0026530Z 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-08-26T19:36:04.0027580Z 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-08-26T19:36:04.0029030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-08-26T19:36:04.0029700Z 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-08-26T19:36:04.0030910Z 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-08-26T19:36:04.0036930Z 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-08-26T19:36:04.0037650Z 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-08-26T19:36:04.0038420Z 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-08-26T19:36:04.0039220Z 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-08-26T19:36:04.0039950Z 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-08-26T19:36:04.0040710Z 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-08-26T19:36:04.0041360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_size_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:04.0041940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0042430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/anomaly_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0043920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-08-26T19:36:04.0044660Z 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-08-26T19:36:04.0045900Z 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-08-26T19:36:04.0047090Z 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-08-26T19:36:04.0048280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0049640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/forward_ad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0050810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0052290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0053310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0054850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/grad_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0056050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0057580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0058790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/gradcheck.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0060360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0061950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-08-26T19:36:04.0063230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_torch_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:04.0066940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0067590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0068780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0070470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-08-26T19:36:04.0071160Z 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-08-26T19:36:04.0072920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-08-26T19:36:04.0073650Z 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-08-26T19:36:04.0074910Z 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-08-26T19:36:04.0076120Z 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-08-26T19:36:04.0077400Z 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-08-26T19:36:04.0078900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-08-26T19:36:04.0079780Z 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-08-26T19:36:04.0080960Z 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-08-26T19:36:04.0082190Z 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-08-26T19:36:04.0083390Z 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-08-26T19:36:04.0084680Z 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-08-26T19:36:04.0085910Z 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-08-26T19:36:04.0087040Z 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-08-26T19:36:04.0088270Z 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-08-26T19:36:04.0089640Z 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-08-26T19:36:04.0090510Z 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-08-26T19:36:04.0091750Z 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-08-26T19:36:04.0092970Z 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-08-26T19:36:04.0094240Z 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-08-26T19:36:04.0095500Z 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-08-26T19:36:04.0096860Z 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-08-26T19:36:04.0098080Z 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-08-26T19:36:04.0099690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-08-26T19:36:04.0100400Z 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-08-26T19:36:04.0101910Z 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-08-26T19:36:04.0103380Z 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-08-26T19:36:04.0104560Z 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-08-26T19:36:04.0105560Z 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-08-26T19:36:04.0106740Z 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-08-26T19:36:04.0108000Z 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-08-26T19:36:04.0109200Z 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-08-26T19:36:04.0115370Z 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-08-26T19:36:04.0116440Z 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-08-26T19:36:04.0117720Z 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-08-26T19:36:04.0118850Z 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-08-26T19:36:04.0120230Z 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-08-26T19:36:04.0121390Z 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-08-26T19:36:04.0122780Z 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-08-26T19:36:04.0123600Z 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-08-26T19:36:04.0125130Z 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-08-26T19:36:04.0126290Z 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-08-26T19:36:04.0127550Z 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-08-26T19:36:04.0128740Z 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-08-26T19:36:04.0130010Z 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-08-26T19:36:04.0133220Z 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-08-26T19:36:04.0134070Z 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-08-26T19:36:04.0135200Z 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-08-26T19:36:04.0136760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/operator_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0138690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0140130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0141570Z 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-08-26T19:36:04.0142770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0144000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0146340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-08-26T19:36:04.0146910Z 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-08-26T19:36:04.0148120Z 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-08-26T19:36:04.0149340Z 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-08-26T19:36:04.0150760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-08-26T19:36:04.0151450Z 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-08-26T19:36:04.0152760Z 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-08-26T19:36:04.0154080Z 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-08-26T19:36:04.0155260Z 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-08-26T19:36:04.0156430Z 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-08-26T19:36:04.0157600Z 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-08-26T19:36:04.0158720Z 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-08-26T19:36:04.0160300Z 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-08-26T19:36:04.0161450Z 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-08-26T19:36:04.0163520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-08-26T19:36:04.0164070Z 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-08-26T19:36:04.0164950Z 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-08-26T19:36:04.0166270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-08-26T19:36:04.0166800Z 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-08-26T19:36:04.0167770Z 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-08-26T19:36:04.0168810Z 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-08-26T19:36:04.0170290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-08-26T19:36:04.0170990Z 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-08-26T19:36:04.0172280Z 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-08-26T19:36:04.0173320Z 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-08-26T19:36:04.0174500Z 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-08-26T19:36:04.0175710Z 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-08-26T19:36:04.0176980Z 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-08-26T19:36:04.0178140Z 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-08-26T19:36:04.0179340Z 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-08-26T19:36:04.0180540Z 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-08-26T19:36:04.0181690Z 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-08-26T19:36:04.0182880Z 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-08-26T19:36:04.0184050Z 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-08-26T19:36:04.0185430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-08-26T19:36:04.0186090Z 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-08-26T19:36:04.0187160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-08-26T19:36:04.0187890Z 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-08-26T19:36:04.0189050Z 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-08-26T19:36:04.0190130Z 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-08-26T19:36:04.0191140Z 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-08-26T19:36:04.0192660Z 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-08-26T19:36:04.0193730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/tensor_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0194930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0196190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/immutable_collections.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0197610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/annotate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0198860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0200180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/interpreter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0201700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_symbolic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0203220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0204790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0206040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_graph_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0207340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-08-26T19:36:04.0208460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:04.0209920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:04.0211010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quasirandom.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:04.0212450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-08-26T19:36:04.0213120Z 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-08-26T19:36:04.0214760Z 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-08-26T19:36:04.0216280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-26T19:36:04.0216960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/queue.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-26T19:36:04.0218090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/_atfork.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-26T19:36:04.0219230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-26T19:36:04.0220380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/spawn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-26T19:36:04.0221520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-26T19:36:04.0222790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-08-26T19:36:04.0224300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0224820Z 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-08-26T19:36:04.0225940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/gds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0227120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0228210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0229390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0230710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/jiterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0231820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nccl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0232960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0234460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0235640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_sanitizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0236830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0237920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_memory_viz.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0239160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/tunable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0241140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-08-26T19:36:04.0241520Z 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-08-26T19:36:04.0242650Z 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-08-26T19:36:04.0243740Z 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-08-26T19:36:04.0244900Z 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-08-26T19:36:04.0245990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0247120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nvtx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0248290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/graphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0249580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0250700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-08-26T19:36:04.0252720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.0253120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/sleef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.0255680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-26T19:36:04.0256020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil_simple.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-26T19:36:04.0257140Z 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-08-26T19:36:04.0258400Z 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-08-26T19:36:04.0259610Z 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-08-26T19:36:04.0261230Z 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-08-26T19:36:04.0263520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/warnings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-26T19:36:04.0264220Z 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-08-26T19:36:04.0265370Z 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-08-26T19:36:04.0266820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-08-26T19:36:04.0267570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit/pybind11_platform_abi_id.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-08-26T19:36:04.0268870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit/pybind11_conduit_v1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-08-26T19:36:04.0270070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit/wrap_include_python_h.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-08-26T19:36:04.0271220Z 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-08-26T19:36:04.0272400Z 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-08-26T19:36:04.0273590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/subinterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-26T19:36:04.0274760Z 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-08-26T19:36:04.0275890Z 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-08-26T19:36:04.0277260Z 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-08-26T19:36:04.0278370Z 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-08-26T19:36:04.0279750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-08-26T19:36:04.0280370Z 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-08-26T19:36:04.0281700Z 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-08-26T19:36:04.0282850Z 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-08-26T19:36:04.0284320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-08-26T19:36:04.0285060Z 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-08-26T19:36:04.0286280Z 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-08-26T19:36:04.0287520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/native_enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-26T19:36:04.0288700Z 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-08-26T19:36:04.0289980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/critical_section.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-26T19:36:04.0291460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-26T19:36:04.0292120Z 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-08-26T19:36:04.0293710Z 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-08-26T19:36:04.0294770Z 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-08-26T19:36:04.0295880Z 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-08-26T19:36:04.0297170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/using_smart_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-26T19:36:04.0298270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/function_record_pyobject.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-26T19:36:04.0299400Z 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-08-26T19:36:04.0300700Z 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-08-26T19:36:04.0301970Z 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-08-26T19:36:04.0303110Z 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-08-26T19:36:04.0304550Z 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-08-26T19:36:04.0305920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-26T19:36:04.0307150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/pybind11_namespace_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-26T19:36:04.0308340Z 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-08-26T19:36:04.0309680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/native_enum_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-26T19:36:04.0310770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/struct_smart_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-08-26T19:36:04.0311920Z 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-08-26T19:36:04.0313040Z 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-08-26T19:36:04.0314250Z 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-08-26T19:36:04.0315870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/trampoline_self_life_support.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-08-26T19:36:04.0317110Z 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-08-26T19:36:04.0318180Z 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-08-26T19:36:04.0319410Z 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-08-26T19:36:04.0320610Z 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-08-26T19:36:04.0322410Z 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-08-26T19:36:04.0323840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-08-26T19:36:04.0324570Z 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-08-26T19:36:04.0325760Z 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-08-26T19:36:04.0327220Z 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-08-26T19:36:04.0328470Z 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-08-26T19:36:04.0329820Z 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-08-26T19:36:04.0330930Z 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-08-26T19:36:04.0332870Z 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-08-26T19:36:04.0333620Z 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-08-26T19:36:04.0334980Z 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-08-26T19:36:04.0336210Z 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-08-26T19:36:04.0337600Z 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-08-26T19:36:04.0338810Z 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-08-26T19:36:04.0340960Z 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-08-26T19:36:04.0342040Z 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-08-26T19:36:04.0344180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2 2025-08-26T19:36:04.0344850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-08-26T19:36:04.0345530Z 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-08-26T19:36:04.0346740Z 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-08-26T19:36:04.0347870Z 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-08-26T19:36:04.0349250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-08-26T19:36:04.0349990Z 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-08-26T19:36:04.0351260Z 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-08-26T19:36:04.0352410Z 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-08-26T19:36:04.0353800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-08-26T19:36:04.0354530Z 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-08-26T19:36:04.0355700Z 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-08-26T19:36:04.0356950Z 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-08-26T19:36:04.0358530Z 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-08-26T19:36:04.0359830Z 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-08-26T19:36:04.0360900Z 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-08-26T19:36:04.0362060Z 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-08-26T19:36:04.0363510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-08-26T19:36:04.0364160Z 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-08-26T19:36:04.0365530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-08-26T19:36:04.0366240Z 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-08-26T19:36:04.0367530Z 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-08-26T19:36:04.0368720Z 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-08-26T19:36:04.0369920Z 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-08-26T19:36:04.0371050Z 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-08-26T19:36:04.0372310Z 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-08-26T19:36:04.0373430Z 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-08-26T19:36:04.0374560Z 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-08-26T19:36:04.0375900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google 2025-08-26T19:36:04.0376970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-08-26T19:36:04.0377710Z 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-08-26T19:36:04.0379120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-08-26T19:36:04.0379840Z 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-08-26T19:36:04.0381300Z 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-08-26T19:36:04.0382400Z 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-08-26T19:36:04.0383660Z 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-08-26T19:36:04.0384840Z 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-08-26T19:36:04.0386040Z 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-08-26T19:36:04.0387420Z 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-08-26T19:36:04.0388650Z 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-08-26T19:36:04.0389820Z 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-08-26T19:36:04.0390950Z 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-08-26T19:36:04.0392110Z 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-08-26T19:36:04.0393360Z 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-08-26T19:36:04.0394500Z 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-08-26T19:36:04.0395650Z 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-08-26T19:36:04.0396920Z 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-08-26T19:36:04.0398040Z 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-08-26T19:36:04.0399450Z 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-08-26T19:36:04.0400910Z 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-08-26T19:36:04.0402170Z 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-08-26T19:36:04.0404450Z 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-08-26T19:36:04.0405150Z 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-08-26T19:36:04.0406540Z 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-08-26T19:36:04.0407920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-08-26T19:36:04.0408700Z 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-08-26T19:36:04.0409990Z 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-08-26T19:36:04.0411130Z 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-08-26T19:36:04.0412380Z 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-08-26T19:36:04.0413740Z 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-08-26T19:36:04.0414720Z 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-08-26T19:36:04.0415850Z 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-08-26T19:36:04.0417260Z 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-08-26T19:36:04.0418330Z 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-08-26T19:36:04.0419790Z 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-08-26T19:36:04.0421000Z 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-08-26T19:36:04.0422340Z 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-08-26T19:36:04.0423540Z 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-08-26T19:36:04.0424920Z 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-08-26T19:36:04.0426240Z 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-08-26T19:36:04.0428320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-08-26T19:36:04.0428790Z 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-08-26T19:36:04.0429940Z 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-08-26T19:36:04.0431150Z 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-08-26T19:36:04.0432390Z 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-08-26T19:36:04.0433750Z 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-08-26T19:36:04.0434980Z 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-08-26T19:36:04.0436260Z 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-08-26T19:36:04.0437410Z 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-08-26T19:36:04.0438540Z 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-08-26T19:36:04.0440160Z 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-08-26T19:36:04.0441630Z 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-08-26T19:36:04.0443090Z 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-08-26T19:36:04.0444360Z 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-08-26T19:36:04.0445560Z 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-08-26T19:36:04.0446790Z 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-08-26T19:36:04.0448280Z 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-08-26T19:36:04.0449380Z 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-08-26T19:36:04.0450970Z 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-08-26T19:36:04.0452680Z 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-08-26T19:36:04.0454120Z 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-08-26T19:36:04.0455420Z 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-08-26T19:36:04.0456680Z 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-08-26T19:36:04.0458070Z 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-08-26T19:36:04.0459640Z 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-08-26T19:36:04.0460810Z 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-08-26T19:36:04.0462130Z 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-08-26T19:36:04.0463330Z 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-08-26T19:36:04.0467510Z 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-08-26T19:36:04.0468380Z 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-08-26T19:36:04.0469760Z 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-08-26T19:36:04.0470940Z 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-08-26T19:36:04.0472240Z 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-08-26T19:36:04.0473600Z 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-08-26T19:36:04.0474840Z 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-08-26T19:36:04.0476020Z 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-08-26T19:36:04.0477240Z 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-08-26T19:36:04.0478770Z 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-08-26T19:36:04.0480040Z 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-08-26T19:36:04.0481240Z 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-08-26T19:36:04.0482420Z 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-08-26T19:36:04.0483730Z 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-08-26T19:36:04.0484940Z 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-08-26T19:36:04.0486940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-08-26T19:36:04.0487420Z 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-08-26T19:36:04.0488650Z 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-08-26T19:36:04.0490210Z 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-08-26T19:36:04.0491610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-08-26T19:36:04.0492660Z 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-08-26T19:36:04.0493540Z 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-08-26T19:36:04.0495120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-08-26T19:36:04.0495840Z 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-08-26T19:36:04.0497090Z 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-08-26T19:36:04.0498390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-08-26T19:36:04.0499150Z 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-08-26T19:36:04.0500440Z 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-08-26T19:36:04.0501670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-08-26T19:36:04.0502460Z 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-08-26T19:36:04.0503610Z 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-08-26T19:36:04.0505300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-08-26T19:36:04.0505810Z 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-08-26T19:36:04.0506990Z 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-08-26T19:36:04.0508280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-08-26T19:36:04.0508990Z 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-08-26T19:36:04.0510240Z 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-08-26T19:36:04.0511550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-08-26T19:36:04.0512240Z 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-08-26T19:36:04.0513500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-08-26T19:36:04.0514280Z 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-08-26T19:36:04.0515770Z 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-08-26T19:36:04.0516800Z 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-08-26T19:36:04.0517990Z 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-08-26T19:36:04.0519320Z 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-08-26T19:36:04.0520670Z 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-08-26T19:36:04.0522280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/cpuinfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.0524460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-08-26T19:36:04.0529670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly 2025-08-26T19:36:04.0529860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/core 2025-08-26T19:36:04.0530280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/core 2025-08-26T19:36:04.0530440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0530850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/quint4x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0531250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0531720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/TypeSafeSignMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0532610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/qint32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0533760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0534950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e5m2fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0536090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/shim_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0537320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e4m3fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0538530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/quint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0539700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e5m2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0540980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e8m0fnu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0542380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/BFloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0543550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/quint2x4.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0544750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/floating_point_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0546100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/bit_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0547220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/qint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0548430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0549500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e4m3fn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0550780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0552210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0553480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_fnuz_cvt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-08-26T19:36:04.0554840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu 2025-08-26T19:36:04.0555710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-08-26T19:36:04.0556460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-08-26T19:36:04.0557780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-26T19:36:04.0558610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-26T19:36:04.0560440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-08-26T19:36:04.0561730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-08-26T19:36:04.0563270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-08-26T19:36:04.0564070Z 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-08-26T19:36:04.0565320Z 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-08-26T19:36:04.0566550Z 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-08-26T19:36:04.0568690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-08-26T19:36:04.0569270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-08-26T19:36:04.0570040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/stableivalue_conversions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-08-26T19:36:04.0571280Z 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-08-26T19:36:04.0572490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/accelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-08-26T19:36:04.0573810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/tensor_struct.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-08-26T19:36:04.0574910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/tensor_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-08-26T19:36:04.0576120Z 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-08-26T19:36:04.0577420Z 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-08-26T19:36:04.0578730Z 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-08-26T19:36:04.0580330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-08-26T19:36:04.0581310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-08-26T19:36:04.0582180Z 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-08-26T19:36:04.0583500Z 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-08-26T19:36:04.0585060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-08-26T19:36:04.0585830Z 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-08-26T19:36:04.0587120Z 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-08-26T19:36:04.0588360Z 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-08-26T19:36:04.0589670Z 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-08-26T19:36:04.0590890Z 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-08-26T19:36:04.0592250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-08-26T19:36:04.0593090Z 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-08-26T19:36:04.0594350Z 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-08-26T19:36:04.0595640Z 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-08-26T19:36:04.0596860Z 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-08-26T19:36:04.0598030Z 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-08-26T19:36:04.0599390Z 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-08-26T19:36:04.0600680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-08-26T19:36:04.0601500Z 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-08-26T19:36:04.0602740Z 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-08-26T19:36:04.0603950Z 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-08-26T19:36:04.0605430Z 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-08-26T19:36:04.0606340Z 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-08-26T19:36:04.0607550Z 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-08-26T19:36:04.0608760Z 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-08-26T19:36:04.0609950Z 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-08-26T19:36:04.0611360Z 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-08-26T19:36:04.0612470Z 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-08-26T19:36:04.0613740Z 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-08-26T19:36:04.0614890Z 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-08-26T19:36:04.0616100Z 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-08-26T19:36:04.0617650Z 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-08-26T19:36:04.0619140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-08-26T19:36:04.0619890Z 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-08-26T19:36:04.0621080Z 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-08-26T19:36:04.0622160Z 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-08-26T19:36:04.0623410Z 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-08-26T19:36:04.0624560Z 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-08-26T19:36:04.0625800Z 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-08-26T19:36:04.0626950Z 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-08-26T19:36:04.0628690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-08-26T19:36:04.0629660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-08-26T19:36:04.0630500Z 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-08-26T19:36:04.0631810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-08-26T19:36:04.0633090Z 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-08-26T19:36:04.0634420Z 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-08-26T19:36:04.0635890Z 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-08-26T19:36:04.0637060Z 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-08-26T19:36:04.0638390Z 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-08-26T19:36:04.0639560Z 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-08-26T19:36:04.0640750Z 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-08-26T19:36:04.0642030Z 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-08-26T19:36:04.0643390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-26T19:36:04.0644160Z 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-08-26T19:36:04.0645340Z 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-08-26T19:36:04.0646650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-26T19:36:04.0647910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-08-26T19:36:04.0649080Z 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-08-26T19:36:04.0650370Z 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-08-26T19:36:04.0651880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-08-26T19:36:04.0652830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-08-26T19:36:04.0653710Z 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-08-26T19:36:04.0655110Z 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-08-26T19:36:04.0656180Z 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-08-26T19:36:04.0657410Z 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-08-26T19:36:04.0658500Z 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-08-26T19:36:04.0659740Z 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-08-26T19:36:04.0660960Z 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-08-26T19:36:04.0662270Z 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-08-26T19:36:04.0663360Z 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-08-26T19:36:04.0664660Z 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-08-26T19:36:04.0665690Z 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-08-26T19:36:04.0666880Z 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-08-26T19:36:04.0668340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-08-26T19:36:04.0669440Z 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-08-26T19:36:04.0670390Z 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-08-26T19:36:04.0671520Z 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-08-26T19:36:04.0672890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-08-26T19:36:04.0673590Z 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-08-26T19:36:04.0674630Z 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-08-26T19:36:04.0675800Z 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-08-26T19:36:04.0676940Z 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-08-26T19:36:04.0678250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-08-26T19:36:04.0678990Z 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-08-26T19:36:04.0680360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-08-26T19:36:04.0681150Z 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-08-26T19:36:04.0682300Z 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-08-26T19:36:04.0683510Z 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-08-26T19:36:04.0684650Z 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-08-26T19:36:04.0685880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-08-26T19:36:04.0686590Z 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-08-26T19:36:04.0687730Z 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-08-26T19:36:04.0689050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed 2025-08-26T19:36:04.0689900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-08-26T19:36:04.0690670Z 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-08-26T19:36:04.0692010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-08-26T19:36:04.0692760Z 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-08-26T19:36:04.0693960Z 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-08-26T19:36:04.0695320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-08-26T19:36:04.0696180Z 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-08-26T19:36:04.0697380Z 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-08-26T19:36:04.0698550Z 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-08-26T19:36:04.0699780Z 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-08-26T19:36:04.0700980Z 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-08-26T19:36:04.0702180Z 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-08-26T19:36:04.0703370Z 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-08-26T19:36:04.0704600Z 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-08-26T19:36:04.0705800Z 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-08-26T19:36:04.0707000Z 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-08-26T19:36:04.0708080Z 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-08-26T19:36:04.0709250Z 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-08-26T19:36:04.0710600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-08-26T19:36:04.0711400Z 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-08-26T19:36:04.0712640Z 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-08-26T19:36:04.0713840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-08-26T19:36:04.0714630Z 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-08-26T19:36:04.0715980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-08-26T19:36:04.0716830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-08-26T19:36:04.0717660Z 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-08-26T19:36:04.0718740Z 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-08-26T19:36:04.0719930Z 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-08-26T19:36:04.0721100Z 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-08-26T19:36:04.0722500Z 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-08-26T19:36:04.0723390Z 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-08-26T19:36:04.0725160Z 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-08-26T19:36:04.0725870Z 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-08-26T19:36:04.0726990Z 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-08-26T19:36:04.0728180Z 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-08-26T19:36:04.0729430Z 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-08-26T19:36:04.0730590Z 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-08-26T19:36:04.0731770Z 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-08-26T19:36:04.0733020Z 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-08-26T19:36:04.0734210Z 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-08-26T19:36:04.0735430Z 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-08-26T19:36:04.0736810Z 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-08-26T19:36:04.0738030Z 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-08-26T19:36:04.0739330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-08-26T19:36:04.0740400Z 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-08-26T19:36:04.0741360Z 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-08-26T19:36:04.0742440Z 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-08-26T19:36:04.0743650Z 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-08-26T19:36:04.0744890Z 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-08-26T19:36:04.0746350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-08-26T19:36:04.0747110Z 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-08-26T19:36:04.0748320Z 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-08-26T19:36:04.0749610Z 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-08-26T19:36:04.0750790Z 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-08-26T19:36:04.0752070Z 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-08-26T19:36:04.0753220Z 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-08-26T19:36:04.0754410Z 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-08-26T19:36:04.0755620Z 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-08-26T19:36:04.0756860Z 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-08-26T19:36:04.0758350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-08-26T19:36:04.0759200Z 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-08-26T19:36:04.0760530Z 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-08-26T19:36:04.0761770Z 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-08-26T19:36:04.0762910Z 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-08-26T19:36:04.0764220Z 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-08-26T19:36:04.0765270Z 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-08-26T19:36:04.0766610Z 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-08-26T19:36:04.0767870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-08-26T19:36:04.0768780Z 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-08-26T19:36:04.0769940Z 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-08-26T19:36:04.0770900Z 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-08-26T19:36:04.0772300Z 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-08-26T19:36:04.0773440Z 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-08-26T19:36:04.0774500Z 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-08-26T19:36:04.0775690Z 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-08-26T19:36:04.0776960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-08-26T19:36:04.0777740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-08-26T19:36:04.0778930Z 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-08-26T19:36:04.0780110Z 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-08-26T19:36:04.0781340Z 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-08-26T19:36:04.0782550Z 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-08-26T19:36:04.0783690Z 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-08-26T19:36:04.0784900Z 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-08-26T19:36:04.0786100Z 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-08-26T19:36:04.0787380Z 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-08-26T19:36:04.0788580Z 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-08-26T19:36:04.0789730Z 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-08-26T19:36:04.0790960Z 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-08-26T19:36:04.0792070Z 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-08-26T19:36:04.0793260Z 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-08-26T19:36:04.0794520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-08-26T19:36:04.0795350Z 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-08-26T19:36:04.0796550Z 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-08-26T19:36:04.0797800Z 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-08-26T19:36:04.0798930Z 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-08-26T19:36:04.0800160Z 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-08-26T19:36:04.0801370Z 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-08-26T19:36:04.0802530Z 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-08-26T19:36:04.0803790Z 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-08-26T19:36:04.0805010Z 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-08-26T19:36:04.0806450Z 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-08-26T19:36:04.0807630Z 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-08-26T19:36:04.0808820Z 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-08-26T19:36:04.0810010Z 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-08-26T19:36:04.0811260Z 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-08-26T19:36:04.0812430Z 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-08-26T19:36:04.0813640Z 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-08-26T19:36:04.0814880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-08-26T19:36:04.0815890Z 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-08-26T19:36:04.0817320Z 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-08-26T19:36:04.0818510Z 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-08-26T19:36:04.0819680Z 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-08-26T19:36:04.0821030Z 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-08-26T19:36:04.0822500Z 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-08-26T19:36:04.0823770Z 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-08-26T19:36:04.0825110Z 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-08-26T19:36:04.0826670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-08-26T19:36:04.0827490Z 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-08-26T19:36:04.0828660Z 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-08-26T19:36:04.0829870Z 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-08-26T19:36:04.0831170Z 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-08-26T19:36:04.0832400Z 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-08-26T19:36:04.0833600Z 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-08-26T19:36:04.0834790Z 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-08-26T19:36:04.0835950Z 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-08-26T19:36:04.0837140Z 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-08-26T19:36:04.0838220Z 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-08-26T19:36:04.0839400Z 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-08-26T19:36:04.0840560Z 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-08-26T19:36:04.0841700Z 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-08-26T19:36:04.0843150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-08-26T19:36:04.0844030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-08-26T19:36:04.0844820Z 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-08-26T19:36:04.0845980Z 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-08-26T19:36:04.0847410Z 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-08-26T19:36:04.0848540Z 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-08-26T19:36:04.0849700Z 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-08-26T19:36:04.0853540Z 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-08-26T19:36:04.0854640Z 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-08-26T19:36:04.0855870Z 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-08-26T19:36:04.0857370Z 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-08-26T19:36:04.0858370Z 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-08-26T19:36:04.0859470Z 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-08-26T19:36:04.0860630Z 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-08-26T19:36:04.0861830Z 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-08-26T19:36:04.0862950Z 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-08-26T19:36:04.0864110Z 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-08-26T19:36:04.0865340Z 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-08-26T19:36:04.0866510Z 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-08-26T19:36:04.0867720Z 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-08-26T19:36:04.0868800Z 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-08-26T19:36:04.0869980Z 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-08-26T19:36:04.0871170Z 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-08-26T19:36:04.0872410Z 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-08-26T19:36:04.0873620Z 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-08-26T19:36:04.0874810Z 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-08-26T19:36:04.0875940Z 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-08-26T19:36:04.0877220Z 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-08-26T19:36:04.0878350Z 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-08-26T19:36:04.0879500Z 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-08-26T19:36:04.0880630Z 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-08-26T19:36:04.0882900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-08-26T19:36:04.0883340Z 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-08-26T19:36:04.0884300Z 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-08-26T19:36:04.0885530Z 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-08-26T19:36:04.0886740Z 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-08-26T19:36:04.0887930Z 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-08-26T19:36:04.0889080Z 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-08-26T19:36:04.0890550Z 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-08-26T19:36:04.0891730Z 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-08-26T19:36:04.0892700Z 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-08-26T19:36:04.0893890Z 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-08-26T19:36:04.0895160Z 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-08-26T19:36:04.0896320Z 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-08-26T19:36:04.0897490Z 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-08-26T19:36:04.0898710Z 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-08-26T19:36:04.0899850Z 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-08-26T19:36:04.0901000Z 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-08-26T19:36:04.0902270Z 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-08-26T19:36:04.0903500Z 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-08-26T19:36:04.0904710Z 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-08-26T19:36:04.0905950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-08-26T19:36:04.0906760Z 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-08-26T19:36:04.0907970Z 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-08-26T19:36:04.0909180Z 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-08-26T19:36:04.0910480Z 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-08-26T19:36:04.0911660Z 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-08-26T19:36:04.0912940Z 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-08-26T19:36:04.0914120Z 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-08-26T19:36:04.0915330Z 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-08-26T19:36:04.0916780Z 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-08-26T19:36:04.0917900Z 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-08-26T19:36:04.0919000Z 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-08-26T19:36:04.0920290Z 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-08-26T19:36:04.0921500Z 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-08-26T19:36:04.0922680Z 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-08-26T19:36:04.0923830Z 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-08-26T19:36:04.0925220Z 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-08-26T19:36:04.0926640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-08-26T19:36:04.0927360Z 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-08-26T19:36:04.0929010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-08-26T19:36:04.0929520Z 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-08-26T19:36:04.0930900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-08-26T19:36:04.0931700Z 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-08-26T19:36:04.0932900Z 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-08-26T19:36:04.0934060Z 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-08-26T19:36:04.0935250Z 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-08-26T19:36:04.0936340Z 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-08-26T19:36:04.0937560Z 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-08-26T19:36:04.0938810Z 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-08-26T19:36:04.0940050Z 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-08-26T19:36:04.0941140Z 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-08-26T19:36:04.0942410Z 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-08-26T19:36:04.0943650Z 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-08-26T19:36:04.0944890Z 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-08-26T19:36:04.0946170Z 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-08-26T19:36:04.0947330Z 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-08-26T19:36:04.0948650Z 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-08-26T19:36:04.0949980Z 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-08-26T19:36:04.0951520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-08-26T19:36:04.0952230Z 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-08-26T19:36:04.0953500Z 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-08-26T19:36:04.0954810Z 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-08-26T19:36:04.0956180Z 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-08-26T19:36:04.0957670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-08-26T19:36:04.0958420Z 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-08-26T19:36:04.0959780Z 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-08-26T19:36:04.0960920Z 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-08-26T19:36:04.0962120Z 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-08-26T19:36:04.0963450Z 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-08-26T19:36:04.0964610Z 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-08-26T19:36:04.0965880Z 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-08-26T19:36:04.0967020Z 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-08-26T19:36:04.0968620Z 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-08-26T19:36:04.0969950Z 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-08-26T19:36:04.0971100Z 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-08-26T19:36:04.0972340Z 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-08-26T19:36:04.0973480Z 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-08-26T19:36:04.0974820Z 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-08-26T19:36:04.0976300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-08-26T19:36:04.0977030Z 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-08-26T19:36:04.0979190Z 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-08-26T19:36:04.0980070Z 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-08-26T19:36:04.0981440Z 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-08-26T19:36:04.0982580Z 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-08-26T19:36:04.0983910Z 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-08-26T19:36:04.0985080Z 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-08-26T19:36:04.0986270Z 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-08-26T19:36:04.0987670Z 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-08-26T19:36:04.0988750Z 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-08-26T19:36:04.0990090Z 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-08-26T19:36:04.0991260Z 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-08-26T19:36:04.0992890Z 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-08-26T19:36:04.0994030Z 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-08-26T19:36:04.0995380Z 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-08-26T19:36:04.0997240Z 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-08-26T19:36:04.0998600Z 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-08-26T19:36:04.0999750Z 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-08-26T19:36:04.1001090Z 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-08-26T19:36:04.1002260Z 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-08-26T19:36:04.1003390Z 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-08-26T19:36:04.1004580Z 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-08-26T19:36:04.1006180Z 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-08-26T19:36:04.1007150Z 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-08-26T19:36:04.1008280Z 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-08-26T19:36:04.1009450Z 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-08-26T19:36:04.1010660Z 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-08-26T19:36:04.1011810Z 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-08-26T19:36:04.1012930Z 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-08-26T19:36:04.1014070Z 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-08-26T19:36:04.1015200Z 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-08-26T19:36:04.1016380Z 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-08-26T19:36:04.1017630Z 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-08-26T19:36:04.1018730Z 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-08-26T19:36:04.1019870Z 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-08-26T19:36:04.1021040Z 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-08-26T19:36:04.1022240Z 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-08-26T19:36:04.1023360Z 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-08-26T19:36:04.1024470Z 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-08-26T19:36:04.1025610Z 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-08-26T19:36:04.1026720Z 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-08-26T19:36:04.1027900Z 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-08-26T19:36:04.1029030Z 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-08-26T19:36:04.1030200Z 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-08-26T19:36:04.1031360Z 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-08-26T19:36:04.1032560Z 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-08-26T19:36:04.1033680Z 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-08-26T19:36:04.1034790Z 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-08-26T19:36:04.1036040Z 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-08-26T19:36:04.1037240Z 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-08-26T19:36:04.1038490Z 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-08-26T19:36:04.1039620Z 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-08-26T19:36:04.1041320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-08-26T19:36:04.1041840Z 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-08-26T19:36:04.1043390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-08-26T19:36:04.1044140Z 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-08-26T19:36:04.1045340Z 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-08-26T19:36:04.1052120Z 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-08-26T19:36:04.1053140Z 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-08-26T19:36:04.1054300Z 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-08-26T19:36:04.1055480Z 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-08-26T19:36:04.1056590Z 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-08-26T19:36:04.1058020Z 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-08-26T19:36:04.1059230Z 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-08-26T19:36:04.1060460Z 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-08-26T19:36:04.1061600Z 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-08-26T19:36:04.1063030Z 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-08-26T19:36:04.1064270Z 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-08-26T19:36:04.1065480Z 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-08-26T19:36:04.1066680Z 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-08-26T19:36:04.1067920Z 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-08-26T19:36:04.1069330Z 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-08-26T19:36:04.1070490Z 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-08-26T19:36:04.1071650Z 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-08-26T19:36:04.1072870Z 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-08-26T19:36:04.1074080Z 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-08-26T19:36:04.1075310Z 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-08-26T19:36:04.1076510Z 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-08-26T19:36:04.1077860Z 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-08-26T19:36:04.1079070Z 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-08-26T19:36:04.1080210Z 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-08-26T19:36:04.1081410Z 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-08-26T19:36:04.1082650Z 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-08-26T19:36:04.1083900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-08-26T19:36:04.1084690Z 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-08-26T19:36:04.1085970Z 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-08-26T19:36:04.1087160Z 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-08-26T19:36:04.1088310Z 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-08-26T19:36:04.1089520Z 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-08-26T19:36:04.1090710Z 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-08-26T19:36:04.1091990Z 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-08-26T19:36:04.1093270Z 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-08-26T19:36:04.1094490Z 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-08-26T19:36:04.1095740Z 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-08-26T19:36:04.1096860Z 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-08-26T19:36:04.1098180Z 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-08-26T19:36:04.1099990Z 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-08-26T19:36:04.1100770Z 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-08-26T19:36:04.1102070Z 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-08-26T19:36:04.1103320Z 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-08-26T19:36:04.1104920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-08-26T19:36:04.1105630Z 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-08-26T19:36:04.1106970Z 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-08-26T19:36:04.1108210Z 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-08-26T19:36:04.1109620Z 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-08-26T19:36:04.1110520Z 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-08-26T19:36:04.1111700Z 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-08-26T19:36:04.1112930Z 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-08-26T19:36:04.1114370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-08-26T19:36:04.1115220Z 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-08-26T19:36:04.1116430Z 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-08-26T19:36:04.1117640Z 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-08-26T19:36:04.1118850Z 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-08-26T19:36:04.1120000Z 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-08-26T19:36:04.1121220Z 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-08-26T19:36:04.1122360Z 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-08-26T19:36:04.1123480Z 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-08-26T19:36:04.1124830Z 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-08-26T19:36:04.1126020Z 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-08-26T19:36:04.1127230Z 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-08-26T19:36:04.1128550Z 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-08-26T19:36:04.1129760Z 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-08-26T19:36:04.1131230Z 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-08-26T19:36:04.1132490Z 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-08-26T19:36:04.1133670Z 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-08-26T19:36:04.1134950Z 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-08-26T19:36:04.1136160Z 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-08-26T19:36:04.1137390Z 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-08-26T19:36:04.1138540Z 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-08-26T19:36:04.1139740Z 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-08-26T19:36:04.1140950Z 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-08-26T19:36:04.1142300Z 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-08-26T19:36:04.1143400Z 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-08-26T19:36:04.1144580Z 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-08-26T19:36:04.1145820Z 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-08-26T19:36:04.1147320Z 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-08-26T19:36:04.1148490Z 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-08-26T19:36:04.1149640Z 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-08-26T19:36:04.1150930Z 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-08-26T19:36:04.1152150Z 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-08-26T19:36:04.1153320Z 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-08-26T19:36:04.1154720Z 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-08-26T19:36:04.1155820Z 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-08-26T19:36:04.1157080Z 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-08-26T19:36:04.1158160Z 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-08-26T19:36:04.1159410Z 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-08-26T19:36:04.1160480Z 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-08-26T19:36:04.1161880Z 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-08-26T19:36:04.1168460Z 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-08-26T19:36:04.1169050Z 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-08-26T19:36:04.1169530Z 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-08-26T19:36:04.1169950Z 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-08-26T19:36:04.1170380Z 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-08-26T19:36:04.1170570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-08-26T19:36:04.1170960Z 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-08-26T19:36:04.1171340Z 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-08-26T19:36:04.1172310Z 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-08-26T19:36:04.1173650Z 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-08-26T19:36:04.1174690Z 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-08-26T19:36:04.1175890Z 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-08-26T19:36:04.1177030Z 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-08-26T19:36:04.1178140Z 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-08-26T19:36:04.1179260Z 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-08-26T19:36:04.1180450Z 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-08-26T19:36:04.1181520Z 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-08-26T19:36:04.1182680Z 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-08-26T19:36:04.1183800Z 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-08-26T19:36:04.1185130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-08-26T19:36:04.1185850Z 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-08-26T19:36:04.1187320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-08-26T19:36:04.1188070Z 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-08-26T19:36:04.1189250Z 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-08-26T19:36:04.1190400Z 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-08-26T19:36:04.1191520Z 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-08-26T19:36:04.1192690Z 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-08-26T19:36:04.1193830Z 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-08-26T19:36:04.1194960Z 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-08-26T19:36:04.1196070Z 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-08-26T19:36:04.1197210Z 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-08-26T19:36:04.1198480Z 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-08-26T19:36:04.1199610Z 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-08-26T19:36:04.1200810Z 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-08-26T19:36:04.1201930Z 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-08-26T19:36:04.1203060Z 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-08-26T19:36:04.1204290Z 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-08-26T19:36:04.1205570Z 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-08-26T19:36:04.1206620Z 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-08-26T19:36:04.1207830Z 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-08-26T19:36:04.1209000Z 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-08-26T19:36:04.1210220Z 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-08-26T19:36:04.1211380Z 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-08-26T19:36:04.1213060Z 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-08-26T19:36:04.1214520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-08-26T19:36:04.1215600Z 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-08-26T19:36:04.1216490Z 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-08-26T19:36:04.1217660Z 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-08-26T19:36:04.1218820Z 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-08-26T19:36:04.1220140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml 2025-08-26T19:36:04.1221240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-08-26T19:36:04.1221860Z 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-08-26T19:36:04.1222970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-08-26T19:36:04.1223770Z 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-08-26T19:36:04.1224970Z 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-08-26T19:36:04.1226220Z 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-08-26T19:36:04.1227380Z 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-08-26T19:36:04.1228540Z 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-08-26T19:36:04.1229600Z 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-08-26T19:36:04.1230950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-08-26T19:36:04.1231750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-08-26T19:36:04.1232570Z 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-08-26T19:36:04.1233690Z 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-08-26T19:36:04.1235100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-08-26T19:36:04.1235810Z 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-08-26T19:36:04.1237020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-08-26T19:36:04.1237780Z 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-08-26T19:36:04.1238870Z 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-08-26T19:36:04.1240050Z 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-08-26T19:36:04.1241170Z 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-08-26T19:36:04.1242350Z 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-08-26T19:36:04.1243790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-08-26T19:36:04.1244670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-08-26T19:36:04.1245470Z 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-08-26T19:36:04.1246700Z 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-08-26T19:36:04.1247880Z 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-08-26T19:36:04.1248990Z 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-08-26T19:36:04.1250420Z 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-08-26T19:36:04.1251580Z 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-08-26T19:36:04.1252770Z 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-08-26T19:36:04.1253900Z 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-08-26T19:36:04.1255090Z 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-08-26T19:36:04.1256280Z 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-08-26T19:36:04.1257490Z 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-08-26T19:36:04.1259000Z 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-08-26T19:36:04.1260060Z 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-08-26T19:36:04.1261230Z 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-08-26T19:36:04.1262500Z 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-08-26T19:36:04.1263640Z 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-08-26T19:36:04.1264800Z 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-08-26T19:36:04.1266140Z 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-08-26T19:36:04.1267380Z 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-08-26T19:36:04.1268570Z 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-08-26T19:36:04.1269810Z 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-08-26T19:36:04.1271130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-08-26T19:36:04.1271860Z 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-08-26T19:36:04.1273090Z 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-08-26T19:36:04.1274270Z 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-08-26T19:36:04.1275540Z 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-08-26T19:36:04.1276860Z 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-08-26T19:36:04.1278040Z 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-08-26T19:36:04.1279230Z 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-08-26T19:36:04.1280470Z 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-08-26T19:36:04.1282020Z 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-08-26T19:36:04.1283190Z 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-08-26T19:36:04.1284300Z 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-08-26T19:36:04.1285460Z 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-08-26T19:36:04.1286650Z 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-08-26T19:36:04.1287790Z 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-08-26T19:36:04.1289060Z 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-08-26T19:36:04.1290190Z 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-08-26T19:36:04.1291370Z 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-08-26T19:36:04.1292470Z 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-08-26T19:36:04.1293770Z 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-08-26T19:36:04.1295000Z 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-08-26T19:36:04.1296170Z 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-08-26T19:36:04.1297420Z 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-08-26T19:36:04.1298620Z 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-08-26T19:36:04.1299840Z 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-08-26T19:36:04.1302040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-08-26T19:36:04.1302460Z 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-08-26T19:36:04.1303560Z 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-08-26T19:36:04.1304830Z 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-08-26T19:36:04.1306070Z 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-08-26T19:36:04.1307150Z 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-08-26T19:36:04.1308360Z 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-08-26T19:36:04.1309620Z 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-08-26T19:36:04.1310750Z 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-08-26T19:36:04.1312050Z 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-08-26T19:36:04.1313160Z 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-08-26T19:36:04.1314480Z 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-08-26T19:36:04.1315950Z 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-08-26T19:36:04.1317250Z 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-08-26T19:36:04.1318360Z 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-08-26T19:36:04.1319590Z 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-08-26T19:36:04.1320690Z 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-08-26T19:36:04.1322210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-08-26T19:36:04.1322980Z 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-08-26T19:36:04.1324320Z 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-08-26T19:36:04.1325520Z 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-08-26T19:36:04.1326800Z 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-08-26T19:36:04.1328130Z 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-08-26T19:36:04.1329430Z 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-08-26T19:36:04.1330910Z 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-08-26T19:36:04.1332250Z 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-08-26T19:36:04.1333530Z 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-08-26T19:36:04.1334910Z 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-08-26T19:36:04.1336180Z 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-08-26T19:36:04.1337460Z 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-08-26T19:36:04.1338640Z 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-08-26T19:36:04.1340000Z 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-08-26T19:36:04.1341230Z 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-08-26T19:36:04.1342500Z 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-08-26T19:36:04.1343600Z 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-08-26T19:36:04.1344940Z 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-08-26T19:36:04.1346420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-08-26T19:36:04.1347240Z 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-08-26T19:36:04.1348550Z 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-08-26T19:36:04.1349790Z 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-08-26T19:36:04.1351130Z 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-08-26T19:36:04.1352290Z 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-08-26T19:36:04.1353600Z 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-08-26T19:36:04.1354990Z 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-08-26T19:36:04.1356110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-08-26T19:36:04.1356980Z 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-08-26T19:36:04.1358110Z 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-08-26T19:36:04.1359380Z 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-08-26T19:36:04.1360480Z 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-08-26T19:36:04.1361630Z 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-08-26T19:36:04.1362950Z 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-08-26T19:36:04.1364270Z 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-08-26T19:36:04.1365550Z 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-08-26T19:36:04.1366740Z 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-08-26T19:36:04.1368130Z 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-08-26T19:36:04.1369280Z 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-08-26T19:36:04.1370540Z 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-08-26T19:36:04.1371750Z 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-08-26T19:36:04.1372950Z 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-08-26T19:36:04.1374080Z 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-08-26T19:36:04.1375240Z 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-08-26T19:36:04.1376490Z 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-08-26T19:36:04.1377610Z 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-08-26T19:36:04.1379050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-08-26T19:36:04.1379930Z 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-08-26T19:36:04.1381150Z 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-08-26T19:36:04.1382460Z 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-08-26T19:36:04.1383590Z 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-08-26T19:36:04.1384890Z 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-08-26T19:36:04.1386130Z 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-08-26T19:36:04.1387440Z 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-08-26T19:36:04.1388530Z 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-08-26T19:36:04.1389660Z 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-08-26T19:36:04.1391180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-08-26T19:36:04.1391990Z 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-08-26T19:36:04.1393310Z 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-08-26T19:36:04.1394450Z 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-08-26T19:36:04.1395590Z 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-08-26T19:36:04.1396840Z 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-08-26T19:36:04.1398390Z 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-08-26T19:36:04.1399580Z 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-08-26T19:36:04.1400760Z 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-08-26T19:36:04.1402020Z 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-08-26T19:36:04.1403200Z 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-08-26T19:36:04.1404550Z 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-08-26T19:36:04.1405710Z 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-08-26T19:36:04.1406890Z 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-08-26T19:36:04.1408060Z 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-08-26T19:36:04.1409260Z 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-08-26T19:36:04.1410620Z 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-08-26T19:36:04.1411730Z 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-08-26T19:36:04.1412920Z 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-08-26T19:36:04.1414090Z 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-08-26T19:36:04.1415470Z 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-08-26T19:36:04.1416520Z 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-08-26T19:36:04.1417730Z 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-08-26T19:36:04.1418890Z 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-08-26T19:36:04.1420110Z 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-08-26T19:36:04.1421310Z 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-08-26T19:36:04.1422530Z 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-08-26T19:36:04.1423640Z 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-08-26T19:36:04.1424850Z 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-08-26T19:36:04.1426060Z 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-08-26T19:36:04.1427260Z 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-08-26T19:36:04.1428430Z 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-08-26T19:36:04.1429520Z 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-08-26T19:36:04.1430790Z 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-08-26T19:36:04.1432040Z 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-08-26T19:36:04.1433270Z 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-08-26T19:36:04.1434510Z 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-08-26T19:36:04.1435630Z 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-08-26T19:36:04.1436810Z 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-08-26T19:36:04.1437990Z 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-08-26T19:36:04.1439400Z 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-08-26T19:36:04.1440530Z 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-08-26T19:36:04.1441730Z 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-08-26T19:36:04.1442880Z 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-08-26T19:36:04.1444090Z 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-08-26T19:36:04.1445340Z 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-08-26T19:36:04.1446660Z 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-08-26T19:36:04.1447790Z 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-08-26T19:36:04.1449090Z 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-08-26T19:36:04.1450260Z 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-08-26T19:36:04.1451510Z 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-08-26T19:36:04.1452730Z 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-08-26T19:36:04.1453870Z 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-08-26T19:36:04.1455140Z 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-08-26T19:36:04.1456380Z 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-08-26T19:36:04.1457620Z 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-08-26T19:36:04.1458830Z 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-08-26T19:36:04.1460010Z 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-08-26T19:36:04.1461170Z 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-08-26T19:36:04.1462650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen 2025-08-26T19:36:04.1463500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-08-26T19:36:04.1464270Z 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-08-26T19:36:04.1465530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-08-26T19:36:04.1466350Z 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-08-26T19:36:04.1467700Z 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-08-26T19:36:04.1468910Z 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-08-26T19:36:04.1470170Z 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-08-26T19:36:04.1471270Z 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-08-26T19:36:04.1472600Z 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-08-26T19:36:04.1473920Z 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-08-26T19:36:04.1475160Z 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-08-26T19:36:04.1476350Z 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-08-26T19:36:04.1477500Z 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-08-26T19:36:04.1478830Z 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-08-26T19:36:04.1480320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-08-26T19:36:04.1481180Z 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-08-26T19:36:04.1482410Z 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-08-26T19:36:04.1483550Z 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-08-26T19:36:04.1484750Z 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-08-26T19:36:04.1486030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-08-26T19:36:04.1486830Z 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-08-26T19:36:04.1488010Z 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-08-26T19:36:04.1489250Z 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-08-26T19:36:04.1490730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-08-26T19:36:04.1491510Z 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-08-26T19:36:04.1492840Z 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-08-26T19:36:04.1494110Z 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-08-26T19:36:04.1495240Z 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-08-26T19:36:04.1496510Z 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-08-26T19:36:04.1497670Z 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-08-26T19:36:04.1498850Z 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-08-26T19:36:04.1500010Z 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-08-26T19:36:04.1501130Z 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-08-26T19:36:04.1502280Z 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-08-26T19:36:04.1503490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-08-26T19:36:04.1504310Z 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-08-26T19:36:04.1505590Z 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-08-26T19:36:04.1506740Z 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-08-26T19:36:04.1507810Z 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-08-26T19:36:04.1509390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-08-26T19:36:04.1510180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-08-26T19:36:04.1511010Z 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-08-26T19:36:04.1512240Z 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-08-26T19:36:04.1513330Z 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-08-26T19:36:04.1514490Z 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-08-26T19:36:04.1515720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-08-26T19:36:04.1516500Z 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-08-26T19:36:04.1517730Z 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-08-26T19:36:04.1518840Z 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-08-26T19:36:04.1520020Z 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-08-26T19:36:04.1521140Z 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-08-26T19:36:04.1522350Z 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-08-26T19:36:04.1523560Z 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-08-26T19:36:04.1524650Z 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-08-26T19:36:04.1525840Z 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-08-26T19:36:04.1527000Z 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-08-26T19:36:04.1528240Z 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-08-26T19:36:04.1529310Z 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-08-26T19:36:04.1530430Z 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-08-26T19:36:04.1531610Z 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-08-26T19:36:04.1532770Z 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-08-26T19:36:04.1534170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-08-26T19:36:04.1534850Z 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-08-26T19:36:04.1535990Z 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-08-26T19:36:04.1537160Z 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-08-26T19:36:04.1538270Z 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-08-26T19:36:04.1539400Z 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-08-26T19:36:04.1540560Z 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-08-26T19:36:04.1541770Z 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-08-26T19:36:04.1543060Z 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-08-26T19:36:04.1544160Z 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-08-26T19:36:04.1545300Z 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-08-26T19:36:04.1546610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-08-26T19:36:04.1547380Z 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-08-26T19:36:04.1548590Z 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-08-26T19:36:04.1550350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-08-26T19:36:04.1550820Z 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-08-26T19:36:04.1551750Z 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-08-26T19:36:04.1552880Z 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-08-26T19:36:04.1554030Z 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-08-26T19:36:04.1555200Z 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-08-26T19:36:04.1556330Z 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-08-26T19:36:04.1557720Z 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-08-26T19:36:04.1558610Z 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-08-26T19:36:04.1559820Z 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-08-26T19:36:04.1561130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-08-26T19:36:04.1561890Z 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-08-26T19:36:04.1563050Z 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-08-26T19:36:04.1564160Z 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-08-26T19:36:04.1565330Z 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-08-26T19:36:04.1566440Z 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-08-26T19:36:04.1567700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-08-26T19:36:04.1568410Z 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-08-26T19:36:04.1569530Z 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-08-26T19:36:04.1570710Z 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-08-26T19:36:04.1571860Z 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-08-26T19:36:04.1572930Z 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-08-26T19:36:04.1574290Z 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-08-26T19:36:04.1575550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/PyInterpreterHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-08-26T19:36:04.1576830Z 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-08-26T19:36:04.1578110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy 2025-08-26T19:36:04.1578940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-08-26T19:36:04.1579720Z 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-08-26T19:36:04.1581060Z 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-08-26T19:36:04.1582200Z 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-08-26T19:36:04.1585460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-08-26T19:36:04.1586020Z 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-08-26T19:36:04.1586990Z 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-08-26T19:36:04.1588140Z 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-08-26T19:36:04.1589520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-08-26T19:36:04.1590280Z 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-08-26T19:36:04.1591410Z 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-08-26T19:36:04.1592520Z 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-08-26T19:36:04.1593760Z 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-08-26T19:36:04.1594950Z 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-08-26T19:36:04.1596180Z 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-08-26T19:36:04.1597350Z 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-08-26T19:36:04.1598480Z 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-08-26T19:36:04.1599690Z 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-08-26T19:36:04.1600920Z 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-08-26T19:36:04.1602110Z 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-08-26T19:36:04.1603230Z 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-08-26T19:36:04.1604380Z 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-08-26T19:36:04.1605630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-08-26T19:36:04.1606370Z 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-08-26T19:36:04.1607740Z 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-08-26T19:36:04.1608870Z 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-08-26T19:36:04.1610130Z 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-08-26T19:36:04.1611330Z 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-08-26T19:36:04.1612540Z 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-08-26T19:36:04.1613740Z 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-08-26T19:36:04.1614870Z 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-08-26T19:36:04.1616120Z 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-08-26T19:36:04.1617340Z 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-08-26T19:36:04.1618530Z 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-08-26T19:36:04.1619780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-08-26T19:36:04.1620550Z 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-08-26T19:36:04.1621730Z 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-08-26T19:36:04.1623190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-08-26T19:36:04.1623920Z 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-08-26T19:36:04.1625220Z 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-08-26T19:36:04.1626320Z 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-08-26T19:36:04.1627660Z 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-08-26T19:36:04.1628820Z 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-08-26T19:36:04.1630140Z 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-08-26T19:36:04.1631420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-08-26T19:36:04.1632600Z 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-08-26T19:36:04.1633570Z 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-08-26T19:36:04.1634750Z 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-08-26T19:36:04.1635790Z 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-08-26T19:36:04.1636740Z 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-08-26T19:36:04.1637830Z 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-08-26T19:36:04.1639020Z 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-08-26T19:36:04.1640390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-08-26T19:36:04.1641120Z 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-08-26T19:36:04.1642520Z 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-08-26T19:36:04.1643700Z 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-08-26T19:36:04.1645010Z 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-08-26T19:36:04.1646240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-08-26T19:36:04.1647250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-08-26T19:36:04.1648030Z 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-08-26T19:36:04.1649150Z 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-08-26T19:36:04.1650420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api 2025-08-26T19:36:04.1651210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include 2025-08-26T19:36:04.1652170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-08-26T19:36:04.1652950Z 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-08-26T19:36:04.1654140Z 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-08-26T19:36:04.1655380Z 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-08-26T19:36:04.1656590Z 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-08-26T19:36:04.1657910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-08-26T19:36:04.1658900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-08-26T19:36:04.1659730Z 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-08-26T19:36:04.1661470Z 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-08-26T19:36:04.1662650Z 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-08-26T19:36:04.1663750Z 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-08-26T19:36:04.1664890Z 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-08-26T19:36:04.1666180Z 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-08-26T19:36:04.1667390Z 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-08-26T19:36:04.1668530Z 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-08-26T19:36:04.1669710Z 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-08-26T19:36:04.1670870Z 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-08-26T19:36:04.1672080Z 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-08-26T19:36:04.1673250Z 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-08-26T19:36:04.1674510Z 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-08-26T19:36:04.1675830Z 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-08-26T19:36:04.1676940Z 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-08-26T19:36:04.1678280Z 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-08-26T19:36:04.1679490Z 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-08-26T19:36:04.1680700Z 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-08-26T19:36:04.1681930Z 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-08-26T19:36:04.1683090Z 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-08-26T19:36:04.1684190Z 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-08-26T19:36:04.1685480Z 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-08-26T19:36:04.1691000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-08-26T19:36:04.1691850Z 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-08-26T19:36:04.1692990Z 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-08-26T19:36:04.1693750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-08-26T19:36:04.1694540Z 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-08-26T19:36:04.1695620Z 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-08-26T19:36:04.1696710Z 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-08-26T19:36:04.1697770Z 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-08-26T19:36:04.1698770Z 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-08-26T19:36:04.1699760Z 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-08-26T19:36:04.1700780Z 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-08-26T19:36:04.1701750Z 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-08-26T19:36:04.1702510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-08-26T19:36:04.1703340Z 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-08-26T19:36:04.1704580Z 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-08-26T19:36:04.1705860Z 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-08-26T19:36:04.1707240Z 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-08-26T19:36:04.1708650Z 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-08-26T19:36:04.1710020Z 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-08-26T19:36:04.1711240Z 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-08-26T19:36:04.1712470Z 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-08-26T19:36:04.1713810Z 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-08-26T19:36:04.1715370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-08-26T19:36:04.1716290Z 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-08-26T19:36:04.1717850Z 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-08-26T19:36:04.1719310Z 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-08-26T19:36:04.1720580Z 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-08-26T19:36:04.1721870Z 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-08-26T19:36:04.1723130Z 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-08-26T19:36:04.1724550Z 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-08-26T19:36:04.1726090Z 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-08-26T19:36:04.1727350Z 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-08-26T19:36:04.1728720Z 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-08-26T19:36:04.1729970Z 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-08-26T19:36:04.1731170Z 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-08-26T19:36:04.1732660Z 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-08-26T19:36:04.1733780Z 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-08-26T19:36:04.1734980Z 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-08-26T19:36:04.1736360Z 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-08-26T19:36:04.1737680Z 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-08-26T19:36:04.1738880Z 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-08-26T19:36:04.1740270Z 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-08-26T19:36:04.1741490Z 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-08-26T19:36:04.1742660Z 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-08-26T19:36:04.1743890Z 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-08-26T19:36:04.1745150Z 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-08-26T19:36:04.1746410Z 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-08-26T19:36:04.1747650Z 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-08-26T19:36:04.1748920Z 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-08-26T19:36:04.1750530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-08-26T19:36:04.1751420Z 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-08-26T19:36:04.1752690Z 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-08-26T19:36:04.1754100Z 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-08-26T19:36:04.1755280Z 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-08-26T19:36:04.1756540Z 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-08-26T19:36:04.1757900Z 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-08-26T19:36:04.1759100Z 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-08-26T19:36:04.1760400Z 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-08-26T19:36:04.1761650Z 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-08-26T19:36:04.1762810Z 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-08-26T19:36:04.1763970Z 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-08-26T19:36:04.1765310Z 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-08-26T19:36:04.1766730Z 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-08-26T19:36:04.1768100Z 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-08-26T19:36:04.1769420Z 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-08-26T19:36:04.1770670Z 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-08-26T19:36:04.1772220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-08-26T19:36:04.1773010Z 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-08-26T19:36:04.1774160Z 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-08-26T19:36:04.1775580Z 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-08-26T19:36:04.1776840Z 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-08-26T19:36:04.1778000Z 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-08-26T19:36:04.1779220Z 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-08-26T19:36:04.1780800Z 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-08-26T19:36:04.1782040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-08-26T19:36:04.1782810Z 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-08-26T19:36:04.1784000Z 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-08-26T19:36:04.1785220Z 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-08-26T19:36:04.1786530Z 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-08-26T19:36:04.1787790Z 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-08-26T19:36:04.1789070Z 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-08-26T19:36:04.1790300Z 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-08-26T19:36:04.1791730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-08-26T19:36:04.1792650Z 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-08-26T19:36:04.1794050Z 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-08-26T19:36:04.1795400Z 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-08-26T19:36:04.1796490Z 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-08-26T19:36:04.1797830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-08-26T19:36:04.1798620Z 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-08-26T19:36:04.1800010Z 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-08-26T19:36:04.1801360Z 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-08-26T19:36:04.1802520Z 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-08-26T19:36:04.1803700Z 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-08-26T19:36:04.1805200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nativert 2025-08-26T19:36:04.1806030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nativert 2025-08-26T19:36:04.1807380Z 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-08-26T19:36:04.1808550Z 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-08-26T19:36:04.1809890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-08-26T19:36:04.1810920Z 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-08-26T19:36:04.1812610Z 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-08-26T19:36:04.1814020Z 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-08-26T19:36:04.1815330Z 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-08-26T19:36:04.1816550Z 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-08-26T19:36:04.1817950Z 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-08-26T19:36:04.1819130Z 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-08-26T19:36:04.1820500Z 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-08-26T19:36:04.1821940Z 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-08-26T19:36:04.1823160Z 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-08-26T19:36:04.1824490Z 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-08-26T19:36:04.1825750Z 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-08-26T19:36:04.1827400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-08-26T19:36:04.1828200Z 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-08-26T19:36:04.1829430Z 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-08-26T19:36:04.1831170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-08-26T19:36:04.1832000Z 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-08-26T19:36:04.1833120Z 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-08-26T19:36:04.1834350Z 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-08-26T19:36:04.1835520Z 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-08-26T19:36:04.1836880Z 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-08-26T19:36:04.1838020Z 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-08-26T19:36:04.1839300Z 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-08-26T19:36:04.1840380Z 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-08-26T19:36:04.1841600Z 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-08-26T19:36:04.1842980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-08-26T19:36:04.1843790Z 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-08-26T19:36:04.1845080Z 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-08-26T19:36:04.1846330Z 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-08-26T19:36:04.1847450Z 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-08-26T19:36:04.1848910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-08-26T19:36:04.1849760Z 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-08-26T19:36:04.1850970Z 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-08-26T19:36:04.1852310Z 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-08-26T19:36:04.1853510Z 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-08-26T19:36:04.1854650Z 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-08-26T19:36:04.1856160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-08-26T19:36:04.1857010Z 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-08-26T19:36:04.1858180Z 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-08-26T19:36:04.1859330Z 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-08-26T19:36:04.1860460Z 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-08-26T19:36:04.1861640Z 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-08-26T19:36:04.1862780Z 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-08-26T19:36:04.1863900Z 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-08-26T19:36:04.1864970Z 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-08-26T19:36:04.1866100Z 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-08-26T19:36:04.1867440Z 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-08-26T19:36:04.1868900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-08-26T19:36:04.1869760Z 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-08-26T19:36:04.1870930Z 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-08-26T19:36:04.1872080Z 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-08-26T19:36:04.1873230Z 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-08-26T19:36:04.1874430Z 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-08-26T19:36:04.1875640Z 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-08-26T19:36:04.1877120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-08-26T19:36:04.1877930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-08-26T19:36:04.1878730Z 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-08-26T19:36:04.1880000Z 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-08-26T19:36:04.1881400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-08-26T19:36:04.1882160Z 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-08-26T19:36:04.1883430Z 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-08-26T19:36:04.1884650Z 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-08-26T19:36:04.1885870Z 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-08-26T19:36:04.1887160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-08-26T19:36:04.1887890Z 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-08-26T19:36:04.1889110Z 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-08-26T19:36:04.1890640Z 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-08-26T19:36:04.1891800Z 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-08-26T19:36:04.1892960Z 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-08-26T19:36:04.1894210Z 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-08-26T19:36:04.1895430Z 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-08-26T19:36:04.1896640Z 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-08-26T19:36:04.1898110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-08-26T19:36:04.1898880Z 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-08-26T19:36:04.1900130Z 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-08-26T19:36:04.1901340Z 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-08-26T19:36:04.1902820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-08-26T19:36:04.1903610Z 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-08-26T19:36:04.1904720Z 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-08-26T19:36:04.1905820Z 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-08-26T19:36:04.1907080Z 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-08-26T19:36:04.1908230Z 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-08-26T19:36:04.1909420Z 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-08-26T19:36:04.1910680Z 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-08-26T19:36:04.1911850Z 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-08-26T19:36:04.1913050Z 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-08-26T19:36:04.1914370Z 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-08-26T19:36:04.1915520Z 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-08-26T19:36:04.1916700Z 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-08-26T19:36:04.1917960Z 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-08-26T19:36:04.1919270Z 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-08-26T19:36:04.1920510Z 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-08-26T19:36:04.1921750Z 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-08-26T19:36:04.1922930Z 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-08-26T19:36:04.1924220Z 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-08-26T19:36:04.1925540Z 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-08-26T19:36:04.1926780Z 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-08-26T19:36:04.1927950Z 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-08-26T19:36:04.1929350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-08-26T19:36:04.1930130Z 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-08-26T19:36:04.1931360Z 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-08-26T19:36:04.1932550Z 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-08-26T19:36:04.1934130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-08-26T19:36:04.1934810Z 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-08-26T19:36:04.1935980Z 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-08-26T19:36:04.1937230Z 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-08-26T19:36:04.1938430Z 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-08-26T19:36:04.1939610Z 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-08-26T19:36:04.1940760Z 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-08-26T19:36:04.1941990Z 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-08-26T19:36:04.1943330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-08-26T19:36:04.1944010Z 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-08-26T19:36:04.1945180Z 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-08-26T19:36:04.1946340Z 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-08-26T19:36:04.1947550Z 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-08-26T19:36:04.1948690Z 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-08-26T19:36:04.1949920Z 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-08-26T19:36:04.1951430Z 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-08-26T19:36:04.1952640Z 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-08-26T19:36:04.1953920Z 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-08-26T19:36:04.1955150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/nnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.1956850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-08-26T19:36:04.1957550Z 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-08-26T19:36:04.1958750Z 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-08-26T19:36:04.1959950Z 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-08-26T19:36:04.1961080Z 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-08-26T19:36:04.1962240Z 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-08-26T19:36:04.1963410Z 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-08-26T19:36:04.1964610Z 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-08-26T19:36:04.1965770Z 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-08-26T19:36:04.1967000Z 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-08-26T19:36:04.1968090Z 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-08-26T19:36:04.1969270Z 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-08-26T19:36:04.1970420Z 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-08-26T19:36:04.1971660Z 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-08-26T19:36:04.1972850Z 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-08-26T19:36:04.1973970Z 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-08-26T19:36:04.1975160Z 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-08-26T19:36:04.1976200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/xnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.1978360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.1979560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.1980870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/qnnpack_func.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.1982240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-08-26T19:36:04.1982840Z 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-08-26T19:36:04.1984190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels 2025-08-26T19:36:04.1985150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul 2025-08-26T19:36:04.1986170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-08-26T19:36:04.1987190Z 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-08-26T19:36:04.1988650Z 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-08-26T19:36:04.1990090Z 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-08-26T19:36:04.1991570Z 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-08-26T19:36:04.1993000Z 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-08-26T19:36:04.1994410Z 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-08-26T19:36:04.1995810Z 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-08-26T19:36:04.1997250Z 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-08-26T19:36:04.1998720Z 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-08-26T19:36:04.2000140Z 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-08-26T19:36:04.2001570Z 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-08-26T19:36:04.2003040Z 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-08-26T19:36:04.2004040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-08-26T19:36:04.2005070Z 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-08-26T19:36:04.2006510Z 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-08-26T19:36:04.2007900Z 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-08-26T19:36:04.2009320Z 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-08-26T19:36:04.2010740Z 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-08-26T19:36:04.2011710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-08-26T19:36:04.2012600Z 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-08-26T19:36:04.2013860Z 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-08-26T19:36:04.2015180Z 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-08-26T19:36:04.2016140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-08-26T19:36:04.2017020Z 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-08-26T19:36:04.2018290Z 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-08-26T19:36:04.2019580Z 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-08-26T19:36:04.2020900Z 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-08-26T19:36:04.2021840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-08-26T19:36:04.2022860Z 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-08-26T19:36:04.2024340Z 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-08-26T19:36:04.2025760Z 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-08-26T19:36:04.2027190Z 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-08-26T19:36:04.2028690Z 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-08-26T19:36:04.2034620Z 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-08-26T19:36:04.2036100Z 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-08-26T19:36:04.2037560Z 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-08-26T19:36:04.2038580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-08-26T19:36:04.2039630Z 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-08-26T19:36:04.2041090Z 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-08-26T19:36:04.2042510Z 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-08-26T19:36:04.2043410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-08-26T19:36:04.2044150Z 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-08-26T19:36:04.2045200Z 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-08-26T19:36:04.2046280Z 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-08-26T19:36:04.2047300Z 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-08-26T19:36:04.2048310Z 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-08-26T19:36:04.2049330Z 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-08-26T19:36:04.2050360Z 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-08-26T19:36:04.2051400Z 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-08-26T19:36:04.2052380Z 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-08-26T19:36:04.2053390Z 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-08-26T19:36:04.2054420Z 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-08-26T19:36:04.2055440Z 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-08-26T19:36:04.2056490Z 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-08-26T19:36:04.2057560Z 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-08-26T19:36:04.2058600Z 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-08-26T19:36:04.2059660Z 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-08-26T19:36:04.2060700Z 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-08-26T19:36:04.2061740Z 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-08-26T19:36:04.2062750Z 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-08-26T19:36:04.2063750Z 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-08-26T19:36:04.2064810Z 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-08-26T19:36:04.2065830Z 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-08-26T19:36:04.2066830Z 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-08-26T19:36:04.2067860Z 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-08-26T19:36:04.2068960Z 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-08-26T19:36:04.2070010Z 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-08-26T19:36:04.2071040Z 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-08-26T19:36:04.2072110Z 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-08-26T19:36:04.2073160Z 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-08-26T19:36:04.2074180Z 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-08-26T19:36:04.2075360Z 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-08-26T19:36:04.2076500Z 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-08-26T19:36:04.2077680Z 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-08-26T19:36:04.2078890Z 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-08-26T19:36:04.2080100Z 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-08-26T19:36:04.2081310Z 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-08-26T19:36:04.2082470Z 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-08-26T19:36:04.2083690Z 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-08-26T19:36:04.2084910Z 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-08-26T19:36:04.2086160Z 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-08-26T19:36:04.2087380Z 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-08-26T19:36:04.2089130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-08-26T19:36:04.2090210Z 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-08-26T19:36:04.2091630Z 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-08-26T19:36:04.2093060Z 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-08-26T19:36:04.2094500Z 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-08-26T19:36:04.2095940Z 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-08-26T19:36:04.2097390Z 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-08-26T19:36:04.2098810Z 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-08-26T19:36:04.2100230Z 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-08-26T19:36:04.2101700Z 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-08-26T19:36:04.2103130Z 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-08-26T19:36:04.2104590Z 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-08-26T19:36:04.2106030Z 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-08-26T19:36:04.2107040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-08-26T19:36:04.2108020Z 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-08-26T19:36:04.2109430Z 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-08-26T19:36:04.2110410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-08-26T19:36:04.2111440Z 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-08-26T19:36:04.2112850Z 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-08-26T19:36:04.2113830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-08-26T19:36:04.2114860Z 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-08-26T19:36:04.2116270Z 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-08-26T19:36:04.2117680Z 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-08-26T19:36:04.2119120Z 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-08-26T19:36:04.2120510Z 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-08-26T19:36:04.2121470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-08-26T19:36:04.2122510Z 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-08-26T19:36:04.2123930Z 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-08-26T19:36:04.2125320Z 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-08-26T19:36:04.2126730Z 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-08-26T19:36:04.2128140Z 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-08-26T19:36:04.2129130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-08-26T19:36:04.2130070Z 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-08-26T19:36:04.2131390Z 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-08-26T19:36:04.2132700Z 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-08-26T19:36:04.2133680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-08-26T19:36:04.2134690Z 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-08-26T19:36:04.2136120Z 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-08-26T19:36:04.2137570Z 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-08-26T19:36:04.2138560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-08-26T19:36:04.2139530Z 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-08-26T19:36:04.2140910Z 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-08-26T19:36:04.2141840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-08-26T19:36:04.2142740Z 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-08-26T19:36:04.2144050Z 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-08-26T19:36:04.2145180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-08-26T19:36:04.2146140Z 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-08-26T19:36:04.2147460Z 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-08-26T19:36:04.2148400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-08-26T19:36:04.2149370Z 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-08-26T19:36:04.2150780Z 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-08-26T19:36:04.2151820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-08-26T19:36:04.2152730Z 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-08-26T19:36:04.2154050Z 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-08-26T19:36:04.2155000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-08-26T19:36:04.2155970Z 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-08-26T19:36:04.2157330Z 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-08-26T19:36:04.2158270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-08-26T19:36:04.2159240Z 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-08-26T19:36:04.2160550Z 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-08-26T19:36:04.2161560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.2162740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/clog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.2163940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/omp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:04.2166490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-08-26T19:36:04.2167160Z 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-08-26T19:36:04.2168500Z 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-08-26T19:36:04.2169710Z 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-08-26T19:36:04.2170800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseMPSFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-08-26T19:36:04.2172000Z 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-08-26T19:36:04.2173230Z 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-08-26T19:36:04.2174610Z 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-08-26T19:36:04.2175670Z 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-08-26T19:36:04.2177010Z 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-08-26T19:36:04.2177910Z 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-08-26T19:36:04.2179220Z 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-08-26T19:36:04.2180320Z 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-08-26T19:36:04.2181640Z 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-08-26T19:36:04.2182880Z 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-08-26T19:36:04.2184080Z 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-08-26T19:36:04.2185330Z 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-08-26T19:36:04.2186500Z 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-08-26T19:36:04.2187710Z 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-08-26T19:36:04.2188820Z 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-08-26T19:36:04.2190140Z 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-08-26T19:36:04.2191900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-08-26T19:36:04.2192550Z 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-08-26T19:36:04.2193830Z 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-08-26T19:36:04.2195200Z 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-08-26T19:36:04.2198150Z 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-08-26T19:36:04.2199100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-08-26T19:36:04.2199900Z 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-08-26T19:36:04.2201200Z 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-08-26T19:36:04.2202390Z 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-08-26T19:36:04.2203860Z 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-08-26T19:36:04.2204970Z 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-08-26T19:36:04.2206260Z 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-08-26T19:36:04.2207490Z 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-08-26T19:36:04.2208660Z 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-08-26T19:36:04.2209990Z 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-08-26T19:36:04.2211160Z 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-08-26T19:36:04.2212560Z 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-08-26T19:36:04.2213670Z 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-08-26T19:36:04.2214880Z 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-08-26T19:36:04.2216090Z 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-08-26T19:36:04.2217320Z 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-08-26T19:36:04.2218520Z 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-08-26T19:36:04.2219930Z 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-08-26T19:36:04.2221390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-08-26T19:36:04.2222130Z 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-08-26T19:36:04.2223390Z 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-08-26T19:36:04.2224650Z 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-08-26T19:36:04.2225750Z 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-08-26T19:36:04.2227030Z 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-08-26T19:36:04.2228340Z 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-08-26T19:36:04.2229590Z 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-08-26T19:36:04.2230900Z 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-08-26T19:36:04.2232030Z 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-08-26T19:36:04.2233210Z 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-08-26T19:36:04.2234780Z 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-08-26T19:36:04.2236110Z 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-08-26T19:36:04.2237340Z 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-08-26T19:36:04.2238540Z 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-08-26T19:36:04.2239740Z 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-08-26T19:36:04.2240930Z 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-08-26T19:36:04.2242150Z 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-08-26T19:36:04.2243270Z 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-08-26T19:36:04.2244470Z 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-08-26T19:36:04.2245680Z 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-08-26T19:36:04.2246970Z 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-08-26T19:36:04.2248140Z 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-08-26T19:36:04.2249260Z 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-08-26T19:36:04.2250420Z 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-08-26T19:36:04.2251640Z 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-08-26T19:36:04.2252840Z 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-08-26T19:36:04.2254070Z 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-08-26T19:36:04.2255220Z 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-08-26T19:36:04.2256490Z 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-08-26T19:36:04.2257730Z 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-08-26T19:36:04.2258930Z 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-08-26T19:36:04.2260130Z 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-08-26T19:36:04.2261300Z 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-08-26T19:36:04.2262620Z 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-08-26T19:36:04.2263580Z 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-08-26T19:36:04.2264760Z 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-08-26T19:36:04.2265970Z 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-08-26T19:36:04.2267230Z 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-08-26T19:36:04.2268620Z 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-08-26T19:36:04.2269850Z 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-08-26T19:36:04.2270940Z 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-08-26T19:36:04.2272380Z 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-08-26T19:36:04.2273570Z 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-08-26T19:36:04.2274790Z 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-08-26T19:36:04.2275950Z 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-08-26T19:36:04.2277110Z 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-08-26T19:36:04.2278430Z 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-08-26T19:36:04.2279650Z 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-08-26T19:36:04.2280770Z 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-08-26T19:36:04.2282260Z 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-08-26T19:36:04.2283460Z 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-08-26T19:36:04.2285040Z 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-08-26T19:36:04.2286360Z 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-08-26T19:36:04.2287730Z 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-08-26T19:36:04.2289120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-08-26T19:36:04.2289950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-08-26T19:36:04.2290730Z 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-08-26T19:36:04.2292110Z 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-08-26T19:36:04.2293320Z 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-08-26T19:36:04.2294590Z 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-08-26T19:36:04.2295830Z 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-08-26T19:36:04.2297070Z 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-08-26T19:36:04.2298290Z 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-08-26T19:36:04.2299520Z 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-08-26T19:36:04.2300680Z 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-08-26T19:36:04.2301990Z 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-08-26T19:36:04.2303140Z 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-08-26T19:36:04.2304330Z 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-08-26T19:36:04.2305470Z 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-08-26T19:36:04.2306660Z 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-08-26T19:36:04.2307840Z 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-08-26T19:36:04.2309030Z 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-08-26T19:36:04.2310310Z 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-08-26T19:36:04.2311480Z 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-08-26T19:36:04.2312750Z 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-08-26T19:36:04.2314420Z 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-08-26T19:36:04.2315780Z 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-08-26T19:36:04.2316890Z 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-08-26T19:36:04.2318120Z 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-08-26T19:36:04.2319610Z 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-08-26T19:36:04.2321360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-08-26T19:36:04.2321950Z 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-08-26T19:36:04.2323190Z 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-08-26T19:36:04.2324430Z 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-08-26T19:36:04.2325760Z 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-08-26T19:36:04.2326890Z 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-08-26T19:36:04.2328020Z 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-08-26T19:36:04.2329250Z 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-08-26T19:36:04.2330340Z 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-08-26T19:36:04.2331710Z 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-08-26T19:36:04.2332970Z 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-08-26T19:36:04.2334090Z 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-08-26T19:36:04.2336480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-08-26T19:36:04.2336880Z 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-08-26T19:36:04.2338130Z 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-08-26T19:36:04.2339150Z 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-08-26T19:36:04.2340280Z 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-08-26T19:36:04.2341370Z 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-08-26T19:36:04.2342680Z 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-08-26T19:36:04.2343860Z 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-08-26T19:36:04.2344980Z 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-08-26T19:36:04.2346260Z 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-08-26T19:36:04.2347380Z 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-08-26T19:36:04.2348560Z 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-08-26T19:36:04.2349720Z 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-08-26T19:36:04.2350780Z 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-08-26T19:36:04.2351960Z 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-08-26T19:36:04.2353140Z 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-08-26T19:36:04.2354500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse 2025-08-26T19:36:04.2355310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized 2025-08-26T19:36:04.2356170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-08-26T19:36:04.2356930Z 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-08-26T19:36:04.2358170Z 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-08-26T19:36:04.2359400Z 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-08-26T19:36:04.2360440Z 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-08-26T19:36:04.2361590Z 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-08-26T19:36:04.2362730Z 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-08-26T19:36:04.2363890Z 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-08-26T19:36:04.2365060Z 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-08-26T19:36:04.2366210Z 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-08-26T19:36:04.2367320Z 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-08-26T19:36:04.2368460Z 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-08-26T19:36:04.2369670Z 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-08-26T19:36:04.2370840Z 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-08-26T19:36:04.2372020Z 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-08-26T19:36:04.2373090Z 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-08-26T19:36:04.2374330Z 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-08-26T19:36:04.2375650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-08-26T19:36:04.2376410Z 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-08-26T19:36:04.2377850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-08-26T19:36:04.2378740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-08-26T19:36:04.2379870Z 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-08-26T19:36:04.2381020Z 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-08-26T19:36:04.2382440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-08-26T19:36:04.2383270Z 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-08-26T19:36:04.2384630Z 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-08-26T19:36:04.2385950Z 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-08-26T19:36:04.2387310Z 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-08-26T19:36:04.2388590Z 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-08-26T19:36:04.2389810Z 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-08-26T19:36:04.2391080Z 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-08-26T19:36:04.2392490Z 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-08-26T19:36:04.2393760Z 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-08-26T19:36:04.2394940Z 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-08-26T19:36:04.2396080Z 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-08-26T19:36:04.2397670Z 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-08-26T19:36:04.2398980Z 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-08-26T19:36:04.2400410Z 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-08-26T19:36:04.2401860Z 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-08-26T19:36:04.2402990Z 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-08-26T19:36:04.2404750Z 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-08-26T19:36:04.2406840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-08-26T19:36:04.2407350Z 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-08-26T19:36:04.2408430Z 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-08-26T19:36:04.2409640Z 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-08-26T19:36:04.2410870Z 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-08-26T19:36:04.2412060Z 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-08-26T19:36:04.2413260Z 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-08-26T19:36:04.2414500Z 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-08-26T19:36:04.2416560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-08-26T19:36:04.2417090Z 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-08-26T19:36:04.2418280Z 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-08-26T19:36:04.2419590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-08-26T19:36:04.2420720Z 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-08-26T19:36:04.2421580Z 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-08-26T19:36:04.2422720Z 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-08-26T19:36:04.2423790Z 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-08-26T19:36:04.2424980Z 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-08-26T19:36:04.2426120Z 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-08-26T19:36:04.2427260Z 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-08-26T19:36:04.2428420Z 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-08-26T19:36:04.2429670Z 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-08-26T19:36:04.2430990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-08-26T19:36:04.2431800Z 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-08-26T19:36:04.2433020Z 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-08-26T19:36:04.2434220Z 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-08-26T19:36:04.2435450Z 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-08-26T19:36:04.2436610Z 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-08-26T19:36:04.2438080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-08-26T19:36:04.2438830Z 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-08-26T19:36:04.2440050Z 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-08-26T19:36:04.2441350Z 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-08-26T19:36:04.2442690Z 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-08-26T19:36:04.2443920Z 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-08-26T19:36:04.2444910Z 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-08-26T19:36:04.2446130Z 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-08-26T19:36:04.2447380Z 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-08-26T19:36:04.2448490Z 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-08-26T19:36:04.2449690Z 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-08-26T19:36:04.2450910Z 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-08-26T19:36:04.2452070Z 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-08-26T19:36:04.2453250Z 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-08-26T19:36:04.2454400Z 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-08-26T19:36:04.2455570Z 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-08-26T19:36:04.2456980Z 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-08-26T19:36:04.2457940Z 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-08-26T19:36:04.2459100Z 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-08-26T19:36:04.2460240Z 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-08-26T19:36:04.2461460Z 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-08-26T19:36:04.2462590Z 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-08-26T19:36:04.2463760Z 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-08-26T19:36:04.2465000Z 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-08-26T19:36:04.2466090Z 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-08-26T19:36:04.2467360Z 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-08-26T19:36:04.2468520Z 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-08-26T19:36:04.2469640Z 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-08-26T19:36:04.2470890Z 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-08-26T19:36:04.2472100Z 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-08-26T19:36:04.2473580Z 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-08-26T19:36:04.2474680Z 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-08-26T19:36:04.2476010Z 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-08-26T19:36:04.2477160Z 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-08-26T19:36:04.2478290Z 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-08-26T19:36:04.2479700Z 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-08-26T19:36:04.2485100Z 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-08-26T19:36:04.2485590Z 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-08-26T19:36:04.2486030Z 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-08-26T19:36:04.2486400Z 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-08-26T19:36:04.2486790Z 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-08-26T19:36:04.2487640Z 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-08-26T19:36:04.2489340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-08-26T19:36:04.2490200Z 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-08-26T19:36:04.2491360Z 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-08-26T19:36:04.2493340Z 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-08-26T19:36:04.2494190Z 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-08-26T19:36:04.2495400Z 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-08-26T19:36:04.2496540Z 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-08-26T19:36:04.2497780Z 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-08-26T19:36:04.2498920Z 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-08-26T19:36:04.2500200Z 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-08-26T19:36:04.2501460Z 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-08-26T19:36:04.2502650Z 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-08-26T19:36:04.2503860Z 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-08-26T19:36:04.2505140Z 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-08-26T19:36:04.2506350Z 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-08-26T19:36:04.2507340Z 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-08-26T19:36:04.2508720Z 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-08-26T19:36:04.2509790Z 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-08-26T19:36:04.2511040Z 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-08-26T19:36:04.2512180Z 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-08-26T19:36:04.2513410Z 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-08-26T19:36:04.2514530Z 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-08-26T19:36:04.2515700Z 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-08-26T19:36:04.2516960Z 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-08-26T19:36:04.2518120Z 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-08-26T19:36:04.2519830Z 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-08-26T19:36:04.2521840Z 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-08-26T19:36:04.2522250Z 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-08-26T19:36:04.2522920Z 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-08-26T19:36:04.2524660Z 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-08-26T19:36:04.2525950Z 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-08-26T19:36:04.2527130Z 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-08-26T19:36:04.2528480Z 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-08-26T19:36:04.2529520Z 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-08-26T19:36:04.2530880Z 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-08-26T19:36:04.2532230Z 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-08-26T19:36:04.2533250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adagrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-08-26T19:36:04.2534520Z 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-08-26T19:36:04.2535700Z 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-08-26T19:36:04.2536930Z 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-08-26T19:36:04.2538100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adagrad_utils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-08-26T19:36:04.2539310Z 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-08-26T19:36:04.2540520Z 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-08-26T19:36:04.2541680Z 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-08-26T19:36:04.2542840Z 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-08-26T19:36:04.2543930Z 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-08-26T19:36:04.2545370Z 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-08-26T19:36:04.2546410Z 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-08-26T19:36:04.2547540Z 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-08-26T19:36:04.2548790Z 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-08-26T19:36:04.2549930Z 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-08-26T19:36:04.2551020Z 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-08-26T19:36:04.2552340Z 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-08-26T19:36:04.2553380Z 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-08-26T19:36:04.2554850Z 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-08-26T19:36:04.2556080Z 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-08-26T19:36:04.2557360Z 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-08-26T19:36:04.2558810Z 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-08-26T19:36:04.2560170Z 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-08-26T19:36:04.2561330Z 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-08-26T19:36:04.2562550Z 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-08-26T19:36:04.2563820Z 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-08-26T19:36:04.2564820Z 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-08-26T19:36:04.2566080Z 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-08-26T19:36:04.2567090Z 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-08-26T19:36:04.2568590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-08-26T19:36:04.2569340Z 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-08-26T19:36:04.2570820Z 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-08-26T19:36:04.2571920Z 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-08-26T19:36:04.2573050Z 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-08-26T19:36:04.2574440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-08-26T19:36:04.2575190Z 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-08-26T19:36:04.2576710Z 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-08-26T19:36:04.2577880Z 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-08-26T19:36:04.2578940Z 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-08-26T19:36:04.2580230Z 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-08-26T19:36:04.2581560Z 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-08-26T19:36:04.2582720Z 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-08-26T19:36:04.2583860Z 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-08-26T19:36:04.2584980Z 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-08-26T19:36:04.2586400Z 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-08-26T19:36:04.2587580Z 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-08-26T19:36:04.2588690Z 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-08-26T19:36:04.2589890Z 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-08-26T19:36:04.2591190Z 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-08-26T19:36:04.2592420Z 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-08-26T19:36:04.2593570Z 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-08-26T19:36:04.2594800Z 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-08-26T19:36:04.2596060Z 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-08-26T19:36:04.2597220Z 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-08-26T19:36:04.2598330Z 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-08-26T19:36:04.2599690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-08-26T19:36:04.2600450Z 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-08-26T19:36:04.2601670Z 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-08-26T19:36:04.2602860Z 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-08-26T19:36:04.2604080Z 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-08-26T19:36:04.2605340Z 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-08-26T19:36:04.2606550Z 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-08-26T19:36:04.2607760Z 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-08-26T19:36:04.2608970Z 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-08-26T19:36:04.2610200Z 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-08-26T19:36:04.2611360Z 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-08-26T19:36:04.2612720Z 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-08-26T19:36:04.2614170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-08-26T19:36:04.2614940Z 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-08-26T19:36:04.2616150Z 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-08-26T19:36:04.2617290Z 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-08-26T19:36:04.2618490Z 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-08-26T19:36:04.2619700Z 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-08-26T19:36:04.2621070Z 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-08-26T19:36:04.2622320Z 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-08-26T19:36:04.2623330Z 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-08-26T19:36:04.2624450Z 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-08-26T19:36:04.2625620Z 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-08-26T19:36:04.2627050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-08-26T19:36:04.2627810Z 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-08-26T19:36:04.2629050Z 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-08-26T19:36:04.2630420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-08-26T19:36:04.2631220Z 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-08-26T19:36:04.2632640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-08-26T19:36:04.2633510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-08-26T19:36:04.2634440Z 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-08-26T19:36:04.2636150Z 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-08-26T19:36:04.2637510Z 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-08-26T19:36:04.2638900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-08-26T19:36:04.2639800Z 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-08-26T19:36:04.2641060Z 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-08-26T19:36:04.2642500Z 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-08-26T19:36:04.2643790Z 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-08-26T19:36:04.2645380Z 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-08-26T19:36:04.2646650Z 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-08-26T19:36:04.2647840Z 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-08-26T19:36:04.2649200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-08-26T19:36:04.2650190Z 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-08-26T19:36:04.2651530Z 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-08-26T19:36:04.2652690Z 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-08-26T19:36:04.2654020Z 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-08-26T19:36:04.2655320Z 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-08-26T19:36:04.2656750Z 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-08-26T19:36:04.2658140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-08-26T19:36:04.2659060Z 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-08-26T19:36:04.2660290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-08-26T19:36:04.2661170Z 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-08-26T19:36:04.2662500Z 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-08-26T19:36:04.2664090Z 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-08-26T19:36:04.2665740Z 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-08-26T19:36:04.2666890Z 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-08-26T19:36:04.2668120Z 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-08-26T19:36:04.2669410Z 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-08-26T19:36:04.2670830Z 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-08-26T19:36:04.2672620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-08-26T19:36:04.2673400Z 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-08-26T19:36:04.2674620Z 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-08-26T19:36:04.2675750Z 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-08-26T19:36:04.2677260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-08-26T19:36:04.2678090Z 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-08-26T19:36:04.2679400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-08-26T19:36:04.2680240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-08-26T19:36:04.2681060Z 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-08-26T19:36:04.2682260Z 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-08-26T19:36:04.2683510Z 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-08-26T19:36:04.2684650Z 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-08-26T19:36:04.2686110Z 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-08-26T19:36:04.2687130Z 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-08-26T19:36:04.2688280Z 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-08-26T19:36:04.2689590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-08-26T19:36:04.2690270Z 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-08-26T19:36:04.2691430Z 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-08-26T19:36:04.2692570Z 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-08-26T19:36:04.2693860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-08-26T19:36:04.2694660Z 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-08-26T19:36:04.2695880Z 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-08-26T19:36:04.2696950Z 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-08-26T19:36:04.2698070Z 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-08-26T19:36:04.2699270Z 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-08-26T19:36:04.2700550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-08-26T19:36:04.2701260Z 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-08-26T19:36:04.2702460Z 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-08-26T19:36:04.2703560Z 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-08-26T19:36:04.2704670Z 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-08-26T19:36:04.2705950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-08-26T19:36:04.2706730Z 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-08-26T19:36:04.2707890Z 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-08-26T19:36:04.2709010Z 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-08-26T19:36:04.2710130Z 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-08-26T19:36:04.2711240Z 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-08-26T19:36:04.2713130Z 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-08-26T19:36:04.2714230Z 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-08-26T19:36:04.2715380Z 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-08-26T19:36:04.2716610Z 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-08-26T19:36:04.2717800Z 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-08-26T19:36:04.2719020Z 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-08-26T19:36:04.2720220Z 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-08-26T19:36:04.2721550Z 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-08-26T19:36:04.2722800Z 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-08-26T19:36:04.2724120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-08-26T19:36:04.2724830Z 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-08-26T19:36:04.2726110Z 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-08-26T19:36:04.2727250Z 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-08-26T19:36:04.2728530Z 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-08-26T19:36:04.2729760Z 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-08-26T19:36:04.2730910Z 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-08-26T19:36:04.2732050Z 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-08-26T19:36:04.2733380Z 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-08-26T19:36:04.2734790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn 2025-08-26T19:36:04.2735620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-08-26T19:36:04.2736370Z 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-08-26T19:36:04.2737810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-08-26T19:36:04.2738560Z 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-08-26T19:36:04.2739780Z 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-08-26T19:36:04.2741110Z 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-08-26T19:36:04.2742280Z 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-08-26T19:36:04.2743600Z 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-08-26T19:36:04.2744810Z 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-08-26T19:36:04.2745950Z 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-08-26T19:36:04.2747060Z 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-08-26T19:36:04.2748210Z 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-08-26T19:36:04.2749330Z 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-08-26T19:36:04.2750560Z 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-08-26T19:36:04.2751840Z 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-08-26T19:36:04.2753060Z 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-08-26T19:36:04.2754200Z 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-08-26T19:36:04.2755370Z 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-08-26T19:36:04.2756620Z 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-08-26T19:36:04.2757850Z 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-08-26T19:36:04.2759080Z 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-08-26T19:36:04.2760340Z 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-08-26T19:36:04.2761460Z 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-08-26T19:36:04.2762750Z 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-08-26T19:36:04.2763980Z 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-08-26T19:36:04.2765100Z 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-08-26T19:36:04.2766340Z 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-08-26T19:36:04.2767660Z 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-08-26T19:36:04.2769140Z 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-08-26T19:36:04.2770350Z 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-08-26T19:36:04.2771530Z 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-08-26T19:36:04.2772920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-08-26T19:36:04.2773630Z 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-08-26T19:36:04.2774840Z 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-08-26T19:36:04.2776580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-08-26T19:36:04.2776920Z 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-08-26T19:36:04.2778190Z 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-08-26T19:36:04.2779300Z 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-08-26T19:36:04.2780780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-08-26T19:36:04.2781400Z 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-08-26T19:36:04.2782560Z 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-08-26T19:36:04.2783960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-08-26T19:36:04.2784670Z 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-08-26T19:36:04.2785990Z 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-08-26T19:36:04.2787160Z 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-08-26T19:36:04.2788480Z 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-08-26T19:36:04.2789710Z 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-08-26T19:36:04.2791200Z 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-08-26T19:36:04.2792680Z 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-08-26T19:36:04.2794240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-08-26T19:36:04.2794960Z 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-08-26T19:36:04.2796250Z 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-08-26T19:36:04.2797360Z 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-08-26T19:36:04.2798650Z 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-08-26T19:36:04.2799790Z 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-08-26T19:36:04.2801230Z 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-08-26T19:36:04.2802610Z 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-08-26T19:36:04.2803840Z 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-08-26T19:36:04.2805200Z 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-08-26T19:36:04.2806310Z 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-08-26T19:36:04.2807600Z 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-08-26T19:36:04.2809050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-08-26T19:36:04.2809850Z 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-08-26T19:36:04.2812030Z 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-08-26T19:36:04.2813100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-08-26T19:36:04.2813860Z 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-08-26T19:36:04.2815200Z 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-08-26T19:36:04.2816330Z 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-08-26T19:36:04.2817610Z 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-08-26T19:36:04.2818930Z 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-08-26T19:36:04.2820150Z 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-08-26T19:36:04.2821950Z 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-08-26T19:36:04.2822850Z 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-08-26T19:36:04.2824100Z 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-08-26T19:36:04.2825540Z 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-08-26T19:36:04.2826760Z 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-08-26T19:36:04.2828010Z 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-08-26T19:36:04.2829650Z 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-08-26T19:36:04.2830560Z 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-08-26T19:36:04.2832190Z 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-08-26T19:36:04.2833450Z 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-08-26T19:36:04.2834570Z 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-08-26T19:36:04.2835720Z 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-08-26T19:36:04.2836900Z 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-08-26T19:36:04.2838270Z 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-08-26T19:36:04.2839640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-08-26T19:36:04.2840350Z 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-08-26T19:36:04.2841860Z 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-08-26T19:36:04.2842980Z 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-08-26T19:36:04.2844600Z 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-08-26T19:36:04.2845880Z 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-08-26T19:36:04.2847390Z 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-08-26T19:36:04.2848310Z 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-08-26T19:36:04.2849680Z 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-08-26T19:36:04.2851050Z 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-08-26T19:36:04.2852520Z 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-08-26T19:36:04.2853720Z 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-08-26T19:36:04.2855150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-08-26T19:36:04.2855750Z 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-08-26T19:36:04.2857130Z 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-08-26T19:36:04.2858370Z 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-08-26T19:36:04.2859550Z 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-08-26T19:36:04.2860820Z 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-08-26T19:36:04.2862150Z 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-08-26T19:36:04.2863330Z 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-08-26T19:36:04.2864500Z 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-08-26T19:36:04.2865630Z 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-08-26T19:36:04.2866740Z 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-08-26T19:36:04.2868380Z 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-08-26T19:36:04.2869590Z 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-08-26T19:36:04.2870780Z 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-08-26T19:36:04.2871860Z 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-08-26T19:36:04.2873140Z 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-08-26T19:36:04.2878780Z 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-08-26T19:36:04.2879550Z 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-08-26T19:36:04.2880690Z 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-08-26T19:36:04.2881850Z 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-08-26T19:36:04.2883820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-08-26T19:36:04.2884260Z 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-08-26T19:36:04.2885300Z 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-08-26T19:36:04.2886470Z 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-08-26T19:36:04.2887770Z 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-08-26T19:36:04.2888880Z 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-08-26T19:36:04.2890090Z 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-08-26T19:36:04.2891210Z 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-08-26T19:36:04.2892400Z 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-08-26T19:36:04.2893550Z 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-08-26T19:36:04.2894670Z 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-08-26T19:36:04.2895800Z 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-08-26T19:36:04.2897050Z 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-08-26T19:36:04.2898150Z 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-08-26T19:36:04.2899370Z 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-08-26T19:36:04.2900620Z 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-08-26T19:36:04.2901800Z 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-08-26T19:36:04.2902890Z 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-08-26T19:36:04.2903960Z 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-08-26T19:36:04.2905160Z 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-08-26T19:36:04.2906280Z 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-08-26T19:36:04.2907470Z 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-08-26T19:36:04.2908560Z 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-08-26T19:36:04.2909680Z 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-08-26T19:36:04.2911070Z 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-08-26T19:36:04.2912210Z 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-08-26T19:36:04.2913350Z 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-08-26T19:36:04.2914510Z 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-08-26T19:36:04.2915730Z 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-08-26T19:36:04.2916940Z 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-08-26T19:36:04.2918120Z 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-08-26T19:36:04.2919680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-08-26T19:36:04.2920400Z 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-08-26T19:36:04.2921570Z 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-08-26T19:36:04.2922790Z 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-08-26T19:36:04.2924020Z 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-08-26T19:36:04.2925250Z 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-08-26T19:36:04.2926430Z 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-08-26T19:36:04.2927710Z 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-08-26T19:36:04.2928810Z 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-08-26T19:36:04.2930070Z 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-08-26T19:36:04.2931190Z 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-08-26T19:36:04.2932320Z 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-08-26T19:36:04.2933640Z 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-08-26T19:36:04.2934880Z 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-08-26T19:36:04.2936190Z 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-08-26T19:36:04.2937460Z 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-08-26T19:36:04.2938500Z 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-08-26T19:36:04.2939900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-08-26T19:36:04.2940610Z 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-08-26T19:36:04.2941880Z 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-08-26T19:36:04.2943070Z 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-08-26T19:36:04.2944260Z 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-08-26T19:36:04.2945570Z 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-08-26T19:36:04.2947010Z 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-08-26T19:36:04.2948080Z 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-08-26T19:36:04.2949300Z 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-08-26T19:36:04.2950600Z 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-08-26T19:36:04.2951970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-08-26T19:36:04.2952690Z 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-08-26T19:36:04.2953910Z 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-08-26T19:36:04.2955020Z 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-08-26T19:36:04.2956390Z 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-08-26T19:36:04.2957820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-08-26T19:36:04.2958530Z 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-08-26T19:36:04.2959700Z 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-08-26T19:36:04.2960870Z 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-08-26T19:36:04.2962080Z 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-08-26T19:36:04.2963460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-08-26T19:36:04.2964210Z 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-08-26T19:36:04.2965480Z 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-08-26T19:36:04.2966560Z 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-08-26T19:36:04.2967950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-08-26T19:36:04.2968680Z 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-08-26T19:36:04.2969840Z 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-08-26T19:36:04.2971060Z 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-08-26T19:36:04.2972240Z 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-08-26T19:36:04.2973390Z 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-08-26T19:36:04.2974510Z 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-08-26T19:36:04.2975670Z 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-08-26T19:36:04.2988060Z 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-08-26T19:36:04.2989220Z 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-08-26T19:36:04.2990530Z 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-08-26T19:36:04.2991640Z 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-08-26T19:36:04.2992830Z 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-08-26T19:36:04.2994150Z 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-08-26T19:36:04.2995410Z 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-08-26T19:36:04.2996550Z 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-08-26T19:36:04.2997800Z 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-08-26T19:36:04.3007090Z 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-08-26T19:36:04.3007970Z 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-08-26T19:36:04.3009040Z 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-08-26T19:36:04.3010300Z 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-08-26T19:36:04.3011460Z 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-08-26T19:36:04.3012640Z 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-08-26T19:36:04.3013840Z 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-08-26T19:36:04.3015040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrMPSFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-08-26T19:36:04.3016170Z 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-08-26T19:36:04.3017390Z 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-08-26T19:36:04.3018490Z 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-08-26T19:36:04.3019630Z 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-08-26T19:36:04.3020730Z 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-08-26T19:36:04.3021880Z 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-08-26T19:36:04.3023020Z 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-08-26T19:36:04.3024540Z 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-08-26T19:36:04.3025590Z 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-08-26T19:36:04.3026890Z 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-08-26T19:36:04.3028020Z 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-08-26T19:36:04.3029120Z 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-08-26T19:36:04.3030300Z 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-08-26T19:36:04.3031530Z 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-08-26T19:36:04.3032650Z 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-08-26T19:36:04.3033900Z 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-08-26T19:36:04.3035040Z 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-08-26T19:36:04.3036170Z 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-08-26T19:36:04.3037770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-08-26T19:36:04.3038450Z 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-08-26T19:36:04.3039700Z 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-08-26T19:36:04.3040890Z 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-08-26T19:36:04.3042130Z 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-08-26T19:36:04.3043330Z 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-08-26T19:36:04.3044380Z 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-08-26T19:36:04.3045520Z 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-08-26T19:36:04.3046750Z 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-08-26T19:36:04.3047950Z 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-08-26T19:36:04.3049110Z 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-08-26T19:36:04.3050240Z 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-08-26T19:36:04.3051460Z 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-08-26T19:36:04.3052750Z 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-08-26T19:36:04.3054020Z 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-08-26T19:36:04.3055120Z 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-08-26T19:36:04.3056450Z 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-08-26T19:36:04.3057590Z 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-08-26T19:36:04.3059030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip 2025-08-26T19:36:04.3059940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-08-26T19:36:04.3060700Z 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-08-26T19:36:04.3062000Z 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-08-26T19:36:04.3063260Z 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-08-26T19:36:04.3064410Z 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-08-26T19:36:04.3065570Z 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-08-26T19:36:04.3066760Z 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-08-26T19:36:04.3068060Z 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-08-26T19:36:04.3069720Z 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-08-26T19:36:04.3070760Z 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-08-26T19:36:04.3072000Z 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-08-26T19:36:04.3073160Z 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-08-26T19:36:04.3074400Z 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-08-26T19:36:04.3076970Z 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-08-26T19:36:04.3077730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseMPSFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-08-26T19:36:04.3078920Z 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-08-26T19:36:04.3085540Z 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-08-26T19:36:04.3086560Z 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-08-26T19:36:04.3087620Z 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-08-26T19:36:04.3089170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrMPSFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-08-26T19:36:04.3126380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.3126840Z 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-08-26T19:36:04.3128120Z 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-08-26T19:36:04.3129380Z 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-08-26T19:36:04.3130660Z 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-08-26T19:36:04.3131900Z 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-08-26T19:36:04.3132930Z 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-08-26T19:36:04.3134140Z 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-08-26T19:36:04.3135380Z 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-08-26T19:36:04.3136640Z 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-08-26T19:36:04.3137840Z 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-08-26T19:36:04.3139040Z 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-08-26T19:36:04.3140220Z 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-08-26T19:36:04.3141770Z 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-08-26T19:36:04.3142620Z 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-08-26T19:36:04.3143780Z 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-08-26T19:36:04.3144970Z 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-08-26T19:36:04.3146130Z 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-08-26T19:36:04.3147380Z 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-08-26T19:36:04.3148510Z 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-08-26T19:36:04.3149800Z 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-08-26T19:36:04.3151080Z 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-08-26T19:36:04.3152370Z 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-08-26T19:36:04.3153520Z 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-08-26T19:36:04.3154950Z 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-08-26T19:36:04.3156040Z 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-08-26T19:36:04.3157340Z 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-08-26T19:36:04.3158860Z 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-08-26T19:36:04.3160080Z 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-08-26T19:36:04.3161270Z 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-08-26T19:36:04.3162500Z 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-08-26T19:36:04.3163770Z 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-08-26T19:36:04.3164990Z 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-08-26T19:36:04.3166030Z 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-08-26T19:36:04.3167230Z 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-08-26T19:36:04.3168440Z 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-08-26T19:36:04.3169750Z 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-08-26T19:36:04.3170860Z 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-08-26T19:36:04.3172040Z 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-08-26T19:36:04.3173140Z 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-08-26T19:36:04.3174300Z 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-08-26T19:36:04.3175410Z 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-08-26T19:36:04.3176570Z 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-08-26T19:36:04.3177710Z 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-08-26T19:36:04.3178940Z 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-08-26T19:36:04.3180090Z 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-08-26T19:36:04.3181100Z 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-08-26T19:36:04.3182250Z 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-08-26T19:36:04.3188710Z 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-08-26T19:36:04.3189130Z 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-08-26T19:36:04.3189830Z 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-08-26T19:36:04.3190180Z 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-08-26T19:36:04.3190610Z 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-08-26T19:36:04.3190970Z 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-08-26T19:36:04.3191410Z 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-08-26T19:36:04.3192300Z 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-08-26T19:36:04.3193540Z 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-08-26T19:36:04.3194890Z 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-08-26T19:36:04.3196050Z 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-08-26T19:36:04.3197220Z 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-08-26T19:36:04.3198420Z 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-08-26T19:36:04.3199540Z 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-08-26T19:36:04.3200710Z 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-08-26T19:36:04.3201890Z 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-08-26T19:36:04.3203370Z 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-08-26T19:36:04.3204500Z 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-08-26T19:36:04.3205730Z 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-08-26T19:36:04.3206810Z 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-08-26T19:36:04.3208010Z 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-08-26T19:36:04.3209100Z 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-08-26T19:36:04.3210270Z 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-08-26T19:36:04.3211420Z 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-08-26T19:36:04.3212580Z 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-08-26T19:36:04.3213680Z 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-08-26T19:36:04.3214860Z 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-08-26T19:36:04.3216100Z 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-08-26T19:36:04.3217190Z 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-08-26T19:36:04.3218450Z 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-08-26T19:36:04.3219460Z 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-08-26T19:36:04.3220680Z 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-08-26T19:36:04.3221790Z 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-08-26T19:36:04.3223070Z 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-08-26T19:36:04.3224210Z 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-08-26T19:36:04.3225400Z 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-08-26T19:36:04.3226540Z 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-08-26T19:36:04.3227710Z 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-08-26T19:36:04.3228860Z 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-08-26T19:36:04.3230140Z 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-08-26T19:36:04.3231350Z 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-08-26T19:36:04.3232530Z 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-08-26T19:36:04.3233660Z 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-08-26T19:36:04.3234880Z 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-08-26T19:36:04.3236090Z 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-08-26T19:36:04.3237190Z 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-08-26T19:36:04.3238430Z 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-08-26T19:36:04.3239570Z 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-08-26T19:36:04.3240930Z 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-08-26T19:36:04.3242190Z 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-08-26T19:36:04.3243210Z 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-08-26T19:36:04.3244450Z 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-08-26T19:36:04.3245540Z 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-08-26T19:36:04.3246770Z 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-08-26T19:36:04.3247870Z 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-08-26T19:36:04.3249010Z 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-08-26T19:36:04.3250110Z 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-08-26T19:36:04.3251300Z 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-08-26T19:36:04.3252480Z 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-08-26T19:36:04.3253680Z 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-08-26T19:36:04.3254760Z 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-08-26T19:36:04.3255950Z 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-08-26T19:36:04.3257130Z 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-08-26T19:36:04.3258340Z 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-08-26T19:36:04.3259530Z 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-08-26T19:36:04.3260700Z 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-08-26T19:36:04.3261980Z 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-08-26T19:36:04.3263270Z 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-08-26T19:36:04.3264330Z 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-08-26T19:36:04.3265570Z 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-08-26T19:36:04.3267060Z 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-08-26T19:36:04.3268140Z 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-08-26T19:36:04.3269250Z 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-08-26T19:36:04.3270360Z 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-08-26T19:36:04.3271590Z 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-08-26T19:36:04.3272770Z 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-08-26T19:36:04.3274030Z 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-08-26T19:36:04.3275250Z 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-08-26T19:36:04.3276430Z 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-08-26T19:36:04.3277700Z 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-08-26T19:36:04.3278910Z 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-08-26T19:36:04.3280080Z 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-08-26T19:36:04.3281360Z 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-08-26T19:36:04.3282530Z 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-08-26T19:36:04.3283630Z 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-08-26T19:36:04.3284860Z 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-08-26T19:36:04.3286000Z 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-08-26T19:36:04.3287360Z 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-08-26T19:36:04.3288600Z 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-08-26T19:36:04.3289880Z 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-08-26T19:36:04.3291180Z 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-08-26T19:36:04.3292240Z 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-08-26T19:36:04.3293440Z 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-08-26T19:36:04.3294870Z 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-08-26T19:36:04.3296250Z 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-08-26T19:36:04.3297530Z 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-08-26T19:36:04.3298560Z 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-08-26T19:36:04.3299780Z 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-08-26T19:36:04.3301000Z 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-08-26T19:36:04.3302250Z 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-08-26T19:36:04.3303350Z 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-08-26T19:36:04.3304880Z 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-08-26T19:36:04.3306090Z 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-08-26T19:36:04.3307300Z 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-08-26T19:36:04.3308420Z 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-08-26T19:36:04.3309780Z 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-08-26T19:36:04.3310980Z 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-08-26T19:36:04.3312190Z 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-08-26T19:36:04.3313390Z 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-08-26T19:36:04.3314630Z 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-08-26T19:36:04.3315810Z 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-08-26T19:36:04.3317030Z 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-08-26T19:36:04.3318160Z 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-08-26T19:36:04.3319270Z 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-08-26T19:36:04.3320650Z 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-08-26T19:36:04.3321840Z 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-08-26T19:36:04.3323130Z 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-08-26T19:36:04.3324270Z 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-08-26T19:36:04.3325450Z 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-08-26T19:36:04.3326930Z 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-08-26T19:36:04.3327980Z 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-08-26T19:36:04.3329180Z 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-08-26T19:36:04.3330250Z 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-08-26T19:36:04.3331390Z 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-08-26T19:36:04.3332490Z 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-08-26T19:36:04.3333710Z 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-08-26T19:36:04.3334950Z 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-08-26T19:36:04.3336010Z 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-08-26T19:36:04.3337300Z 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-08-26T19:36:04.3338270Z 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-08-26T19:36:04.3339440Z 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-08-26T19:36:04.3340640Z 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-08-26T19:36:04.3341820Z 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-08-26T19:36:04.3342900Z 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-08-26T19:36:04.3344030Z 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-08-26T19:36:04.3345180Z 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-08-26T19:36:04.3346370Z 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-08-26T19:36:04.3347480Z 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-08-26T19:36:04.3348630Z 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-08-26T19:36:04.3350100Z 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-08-26T19:36:04.3350900Z 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-08-26T19:36:04.3352030Z 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-08-26T19:36:04.3353280Z 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-08-26T19:36:04.3354340Z 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-08-26T19:36:04.3355480Z 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-08-26T19:36:04.3356630Z 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-08-26T19:36:04.3357790Z 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-08-26T19:36:04.3358850Z 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-08-26T19:36:04.3360040Z 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-08-26T19:36:04.3361250Z 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-08-26T19:36:04.3362380Z 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-08-26T19:36:04.3363550Z 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-08-26T19:36:04.3364690Z 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-08-26T19:36:04.3365890Z 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-08-26T19:36:04.3367000Z 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-08-26T19:36:04.3368210Z 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-08-26T19:36:04.3369400Z 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-08-26T19:36:04.3370530Z 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-08-26T19:36:04.3371690Z 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-08-26T19:36:04.3372940Z 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-08-26T19:36:04.3374160Z 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-08-26T19:36:04.3375380Z 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-08-26T19:36:04.3376480Z 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-08-26T19:36:04.3377800Z 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-08-26T19:36:04.3378930Z 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-08-26T19:36:04.3380070Z 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-08-26T19:36:04.3381230Z 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-08-26T19:36:04.3382470Z 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-08-26T19:36:04.3383610Z 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-08-26T19:36:04.3384740Z 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-08-26T19:36:04.3385910Z 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-08-26T19:36:04.3387100Z 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-08-26T19:36:04.3388170Z 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-08-26T19:36:04.3389390Z 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-08-26T19:36:04.3390580Z 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-08-26T19:36:04.3391700Z 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-08-26T19:36:04.3392890Z 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-08-26T19:36:04.3394010Z 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-08-26T19:36:04.3395150Z 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-08-26T19:36:04.3396330Z 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-08-26T19:36:04.3397490Z 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-08-26T19:36:04.3398660Z 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-08-26T19:36:04.3399850Z 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-08-26T19:36:04.3401070Z 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-08-26T19:36:04.3402210Z 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-08-26T19:36:04.3403430Z 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-08-26T19:36:04.3404580Z 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-08-26T19:36:04.3405810Z 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-08-26T19:36:04.3407010Z 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-08-26T19:36:04.3408190Z 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-08-26T19:36:04.3409380Z 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-08-26T19:36:04.3410490Z 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-08-26T19:36:04.3411780Z 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-08-26T19:36:04.3413000Z 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-08-26T19:36:04.3414060Z 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-08-26T19:36:04.3415290Z 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-08-26T19:36:04.3416450Z 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-08-26T19:36:04.3417840Z 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-08-26T19:36:04.3418970Z 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-08-26T19:36:04.3420350Z 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-08-26T19:36:04.3421510Z 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-08-26T19:36:04.3422650Z 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-08-26T19:36:04.3423850Z 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-08-26T19:36:04.3424950Z 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-08-26T19:36:04.3426220Z 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-08-26T19:36:04.3427440Z 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-08-26T19:36:04.3428610Z 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-08-26T19:36:04.3429800Z 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-08-26T19:36:04.3430970Z 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-08-26T19:36:04.3432140Z 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-08-26T19:36:04.3433340Z 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-08-26T19:36:04.3434820Z 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-08-26T19:36:04.3435920Z 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-08-26T19:36:04.3437060Z 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-08-26T19:36:04.3438190Z 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-08-26T19:36:04.3439510Z 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-08-26T19:36:04.3440650Z 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-08-26T19:36:04.3441960Z 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-08-26T19:36:04.3443090Z 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-08-26T19:36:04.3444400Z 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-08-26T19:36:04.3445430Z 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-08-26T19:36:04.3446810Z 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-08-26T19:36:04.3448090Z 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-08-26T19:36:04.3449210Z 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-08-26T19:36:04.3450260Z 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-08-26T19:36:04.3451470Z 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-08-26T19:36:04.3452760Z 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-08-26T19:36:04.3453820Z 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-08-26T19:36:04.3455010Z 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-08-26T19:36:04.3456090Z 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-08-26T19:36:04.3457300Z 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-08-26T19:36:04.3458620Z 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-08-26T19:36:04.3459520Z 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-08-26T19:36:04.3460670Z 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-08-26T19:36:04.3461960Z 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-08-26T19:36:04.3463080Z 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-08-26T19:36:04.3464490Z 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-08-26T19:36:04.3465620Z 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-08-26T19:36:04.3466890Z 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-08-26T19:36:04.3468240Z 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-08-26T19:36:04.3469330Z 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-08-26T19:36:04.3470540Z 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-08-26T19:36:04.3471830Z 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-08-26T19:36:04.3473040Z 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-08-26T19:36:04.3474300Z 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-08-26T19:36:04.3475430Z 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-08-26T19:36:04.3476580Z 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-08-26T19:36:04.3477910Z 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-08-26T19:36:04.3478800Z 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-08-26T19:36:04.3479920Z 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-08-26T19:36:04.3481170Z 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-08-26T19:36:04.3482290Z 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-08-26T19:36:04.3483650Z 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-08-26T19:36:04.3484730Z 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-08-26T19:36:04.3486070Z 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-08-26T19:36:04.3487390Z 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-08-26T19:36:04.3488800Z 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-08-26T19:36:04.3490350Z 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-08-26T19:36:04.3491630Z 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-08-26T19:36:04.3493010Z 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-08-26T19:36:04.3494630Z 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-08-26T19:36:04.3495750Z 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-08-26T19:36:04.3497110Z 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-08-26T19:36:04.3498590Z 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-08-26T19:36:04.3501130Z 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-08-26T19:36:04.3502190Z 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-08-26T19:36:04.3503600Z 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-08-26T19:36:04.3505140Z 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-08-26T19:36:04.3506580Z 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-08-26T19:36:04.3508000Z 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-08-26T19:36:04.3509360Z 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-08-26T19:36:04.3510670Z 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-08-26T19:36:04.3511980Z 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-08-26T19:36:04.3513500Z 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-08-26T19:36:04.3713980Z 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-08-26T19:36:04.3723620Z 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-08-26T19:36:04.4196460Z 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-08-26T19:36:04.4197950Z 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-08-26T19:36:04.4199610Z 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-08-26T19:36:04.4201260Z 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-08-26T19:36:04.4202700Z 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-08-26T19:36:04.4204200Z 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-08-26T19:36:04.4205900Z 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-08-26T19:36:04.4207410Z 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-08-26T19:36:04.4209110Z 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-08-26T19:36:04.4210600Z 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-08-26T19:36:04.4212340Z 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-08-26T19:36:04.4213740Z 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-08-26T19:36:04.4215180Z 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-08-26T19:36:04.4216690Z 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-08-26T19:36:04.4218290Z 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-08-26T19:36:04.4220030Z 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-08-26T19:36:04.4221200Z 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-08-26T19:36:04.4222670Z 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-08-26T19:36:04.4224080Z 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-08-26T19:36:04.4225830Z 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-08-26T19:36:04.4227520Z 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-08-26T19:36:04.4229140Z 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-08-26T19:36:04.4230710Z 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-08-26T19:36:04.4231890Z 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-08-26T19:36:04.4233310Z 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-08-26T19:36:04.4234670Z 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-08-26T19:36:04.4236040Z 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-08-26T19:36:04.4237630Z 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-08-26T19:36:04.4238910Z 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-08-26T19:36:04.4240270Z 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-08-26T19:36:04.4241560Z 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-08-26T19:36:04.4242940Z 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-08-26T19:36:04.4244300Z 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-08-26T19:36:04.4245740Z 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-08-26T19:36:04.4247120Z 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-08-26T19:36:04.4248390Z 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-08-26T19:36:04.4249720Z 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-08-26T19:36:04.4251110Z 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-08-26T19:36:04.4252530Z 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-08-26T19:36:04.4253880Z 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-08-26T19:36:04.4255160Z 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-08-26T19:36:04.4256780Z 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-08-26T19:36:04.4258170Z 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-08-26T19:36:04.4259600Z 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-08-26T19:36:04.4261040Z 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-08-26T19:36:04.4262240Z 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-08-26T19:36:04.4263740Z 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-08-26T19:36:04.4265070Z 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-08-26T19:36:04.4266770Z 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-08-26T19:36:04.4267980Z 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-08-26T19:36:04.4269430Z 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-08-26T19:36:04.4270810Z 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-08-26T19:36:04.4272170Z 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-08-26T19:36:04.4273630Z 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-08-26T19:36:04.4274950Z 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-08-26T19:36:04.4276320Z 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-08-26T19:36:04.4277580Z 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-08-26T19:36:04.4279020Z 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-08-26T19:36:04.4280410Z 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-08-26T19:36:04.4281770Z 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-08-26T19:36:04.4283300Z 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-08-26T19:36:04.4284690Z 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-08-26T19:36:04.4285990Z 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-08-26T19:36:04.4287320Z 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-08-26T19:36:04.4288720Z 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-08-26T19:36:04.4289970Z 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-08-26T19:36:04.4291340Z 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-08-26T19:36:04.4292770Z 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-08-26T19:36:04.4294080Z 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-08-26T19:36:04.4295660Z 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-08-26T19:36:04.4296850Z 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-08-26T19:36:04.4298250Z 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-08-26T19:36:04.4299740Z 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-08-26T19:36:04.4301110Z 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-08-26T19:36:04.4302460Z 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-08-26T19:36:04.4303780Z 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-08-26T19:36:04.4305290Z 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-08-26T19:36:04.4306760Z 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-08-26T19:36:04.4308210Z 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-08-26T19:36:04.4309510Z 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-08-26T19:36:04.4310900Z 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-08-26T19:36:04.4312340Z 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-08-26T19:36:04.4313830Z 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-08-26T19:36:04.4315140Z 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-08-26T19:36:04.4316380Z 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-08-26T19:36:04.4317930Z 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-08-26T19:36:04.4319220Z 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-08-26T19:36:04.4320790Z 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-08-26T19:36:04.4322190Z 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-08-26T19:36:04.4323600Z 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-08-26T19:36:04.4325150Z 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-08-26T19:36:04.4326700Z 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-08-26T19:36:04.4328120Z 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-08-26T19:36:04.4329630Z 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-08-26T19:36:04.4331280Z 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-08-26T19:36:04.4332860Z 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-08-26T19:36:04.4334120Z 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-08-26T19:36:04.4335550Z 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-08-26T19:36:04.4336840Z 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-08-26T19:36:04.4338290Z 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-08-26T19:36:04.4339730Z 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-08-26T19:36:04.4341140Z 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-08-26T19:36:04.4342810Z 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-08-26T19:36:04.4344220Z 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-08-26T19:36:04.4345590Z 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-08-26T19:36:04.4347120Z 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-08-26T19:36:04.4348620Z 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-08-26T19:36:04.4349840Z 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-08-26T19:36:04.4351400Z 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-08-26T19:36:04.4352770Z 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-08-26T19:36:04.4354210Z 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-08-26T19:36:04.4355640Z 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-08-26T19:36:04.4357170Z 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-08-26T19:36:04.4358670Z 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-08-26T19:36:04.4360110Z 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-08-26T19:36:04.4361630Z 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-08-26T19:36:04.4363060Z 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-08-26T19:36:04.4364470Z 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-08-26T19:36:04.4365900Z 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-08-26T19:36:04.4367360Z 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-08-26T19:36:04.4368890Z 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-08-26T19:36:04.4370340Z 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-08-26T19:36:04.4371770Z 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-08-26T19:36:04.4373180Z 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-08-26T19:36:04.4374490Z 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-08-26T19:36:04.4375720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.4377130Z 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-08-26T19:36:04.4378500Z 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-08-26T19:36:04.4379770Z 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-08-26T19:36:04.4381090Z 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-08-26T19:36:04.4382560Z 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-08-26T19:36:04.4383870Z 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-08-26T19:36:04.4385320Z 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-08-26T19:36:04.4386580Z 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-08-26T19:36:04.4387960Z 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-08-26T19:36:04.4389390Z 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-08-26T19:36:04.4390750Z 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-08-26T19:36:04.4392120Z 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-08-26T19:36:04.4393480Z 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-08-26T19:36:04.4394830Z 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-08-26T19:36:04.4396290Z 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-08-26T19:36:04.4397710Z 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-08-26T19:36:04.4398960Z 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-08-26T19:36:04.4400480Z 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-08-26T19:36:04.4401870Z 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-08-26T19:36:04.4403380Z 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-08-26T19:36:04.4404570Z 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-08-26T19:36:04.4406000Z 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-08-26T19:36:04.4407410Z 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-08-26T19:36:04.4408720Z 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-08-26T19:36:04.4410010Z 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-08-26T19:36:04.4411470Z 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-08-26T19:36:04.4412740Z 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-08-26T19:36:04.4414000Z 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-08-26T19:36:04.4415410Z 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-08-26T19:36:04.4416700Z 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-08-26T19:36:04.4417990Z 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-08-26T19:36:04.4419300Z 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-08-26T19:36:04.4420550Z 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-08-26T19:36:04.4421820Z 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-08-26T19:36:04.4423000Z 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-08-26T19:36:04.4424380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.4425680Z 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-08-26T19:36:04.4427130Z 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-08-26T19:36:04.4428390Z 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-08-26T19:36:04.4429800Z 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-08-26T19:36:04.4431160Z 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-08-26T19:36:04.4432410Z 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-08-26T19:36:04.4433690Z 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-08-26T19:36:04.4434900Z 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-08-26T19:36:04.4436280Z 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-08-26T19:36:04.4437660Z 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-08-26T19:36:04.4438880Z 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-08-26T19:36:04.4440130Z 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-08-26T19:36:04.4441420Z 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-08-26T19:36:04.4442770Z 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-08-26T19:36:04.4444060Z 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-08-26T19:36:04.4445400Z 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-08-26T19:36:04.4446680Z 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-08-26T19:36:04.4448110Z 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-08-26T19:36:04.4449390Z 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-08-26T19:36:04.4450630Z 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-08-26T19:36:04.4451860Z 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-08-26T19:36:04.4453270Z 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-08-26T19:36:04.4454540Z 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-08-26T19:36:04.4455820Z 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-08-26T19:36:04.4457240Z 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-08-26T19:36:04.4458370Z 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-08-26T19:36:04.4459640Z 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-08-26T19:36:04.4460850Z 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-08-26T19:36:04.4462280Z 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-08-26T19:36:04.4463450Z 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-08-26T19:36:04.4464720Z 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-08-26T19:36:04.4465970Z 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-08-26T19:36:04.4467300Z 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-08-26T19:36:04.4468600Z 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-08-26T19:36:04.4469840Z 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-08-26T19:36:04.4471350Z 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-08-26T19:36:04.4472500Z 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-08-26T19:36:04.4473830Z 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-08-26T19:36:04.4475060Z 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-08-26T19:36:04.4476310Z 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-08-26T19:36:04.4477630Z 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-08-26T19:36:04.4478920Z 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-08-26T19:36:04.4480240Z 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-08-26T19:36:04.4481430Z 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-08-26T19:36:04.4482680Z 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-08-26T19:36:04.4484340Z 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-08-26T19:36:04.4485670Z 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-08-26T19:36:04.4486910Z 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-08-26T19:36:04.4488260Z 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-08-26T19:36:04.4489620Z 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-08-26T19:36:04.4490860Z 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-08-26T19:36:04.4492140Z 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-08-26T19:36:04.4493490Z 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-08-26T19:36:04.4494850Z 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-08-26T19:36:04.4496400Z 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-08-26T19:36:04.4497900Z 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-08-26T19:36:04.4499140Z 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-08-26T19:36:04.4500510Z 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-08-26T19:36:04.4501700Z 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-08-26T19:36:04.4502970Z 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-08-26T19:36:04.4504420Z 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-08-26T19:36:04.4505650Z 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-08-26T19:36:04.4506910Z 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-08-26T19:36:04.4508310Z 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-08-26T19:36:04.4509470Z 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-08-26T19:36:04.4510610Z 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-08-26T19:36:04.4511770Z 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-08-26T19:36:04.4512950Z 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-08-26T19:36:04.4514110Z 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-08-26T19:36:04.4515270Z 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-08-26T19:36:04.4516510Z 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-08-26T19:36:04.4517720Z 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-08-26T19:36:04.4518860Z 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-08-26T19:36:04.4520160Z 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-08-26T19:36:04.4521310Z 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-08-26T19:36:04.4522520Z 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-08-26T19:36:04.4523810Z 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-08-26T19:36:04.4524950Z 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-08-26T19:36:04.4526070Z 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-08-26T19:36:04.4527250Z 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-08-26T19:36:04.4528380Z 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-08-26T19:36:04.4529440Z 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-08-26T19:36:04.4530580Z 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-08-26T19:36:04.4531740Z 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-08-26T19:36:04.4532860Z 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-08-26T19:36:04.4534010Z 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-08-26T19:36:04.4535180Z 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-08-26T19:36:04.4536240Z 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-08-26T19:36:04.4537440Z 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-08-26T19:36:04.4538800Z 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-08-26T19:36:04.4539850Z 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-08-26T19:36:04.4540980Z 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-08-26T19:36:04.4545970Z 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-08-26T19:36:04.4546570Z 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-08-26T19:36:04.4546950Z 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-08-26T19:36:04.4547310Z 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-08-26T19:36:04.4547680Z 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-08-26T19:36:04.4548030Z 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-08-26T19:36:04.4548990Z 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-08-26T19:36:04.4550130Z 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-08-26T19:36:04.4551310Z 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-08-26T19:36:04.4552490Z 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-08-26T19:36:04.4553590Z 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-08-26T19:36:04.4554800Z 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-08-26T19:36:04.4555970Z 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-08-26T19:36:04.4557200Z 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-08-26T19:36:04.4558430Z 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-08-26T19:36:04.4559630Z 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-08-26T19:36:04.4560710Z 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-08-26T19:36:04.4561860Z 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-08-26T19:36:04.4562970Z 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-08-26T19:36:04.4564170Z 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-08-26T19:36:04.4565310Z 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-08-26T19:36:04.4566500Z 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-08-26T19:36:04.4567630Z 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-08-26T19:36:04.4568710Z 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-08-26T19:36:04.4569880Z 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-08-26T19:36:04.4571140Z 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-08-26T19:36:04.4572240Z 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-08-26T19:36:04.4573490Z 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-08-26T19:36:04.4574600Z 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-08-26T19:36:04.4575830Z 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-08-26T19:36:04.4576930Z 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-08-26T19:36:04.4578170Z 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-08-26T19:36:04.4579310Z 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-08-26T19:36:04.4580560Z 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-08-26T19:36:04.4581670Z 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-08-26T19:36:04.4583010Z 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-08-26T19:36:04.4584130Z 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-08-26T19:36:04.4585380Z 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-08-26T19:36:04.4586500Z 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-08-26T19:36:04.4587770Z 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-08-26T19:36:04.4588960Z 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-08-26T19:36:04.4590290Z 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-08-26T19:36:04.4591400Z 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-08-26T19:36:04.4592770Z 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-08-26T19:36:04.4593890Z 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-08-26T19:36:04.4595070Z 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-08-26T19:36:04.4596190Z 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-08-26T19:36:04.4597370Z 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-08-26T19:36:04.4598590Z 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-08-26T19:36:04.4599810Z 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-08-26T19:36:04.4601000Z 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-08-26T19:36:04.4602180Z 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-08-26T19:36:04.4603680Z 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-08-26T19:36:04.4604600Z 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-08-26T19:36:04.4605760Z 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-08-26T19:36:04.4606860Z 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-08-26T19:36:04.4608010Z 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-08-26T19:36:04.4609240Z 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-08-26T19:36:04.4610410Z 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-08-26T19:36:04.4611700Z 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-08-26T19:36:04.4613280Z 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-08-26T19:36:04.4614600Z 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-08-26T19:36:04.4615790Z 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-08-26T19:36:04.4617000Z 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-08-26T19:36:04.4618330Z 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-08-26T19:36:04.4619590Z 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-08-26T19:36:04.4620730Z 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-08-26T19:36:04.4622050Z 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-08-26T19:36:04.4623150Z 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-08-26T19:36:04.4624320Z 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-08-26T19:36:04.4625580Z 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-08-26T19:36:04.4626790Z 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-08-26T19:36:04.4627990Z 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-08-26T19:36:04.4629290Z 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-08-26T19:36:04.4630410Z 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-08-26T19:36:04.4631600Z 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-08-26T19:36:04.4632920Z 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-08-26T19:36:04.4633960Z 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-08-26T19:36:04.4635110Z 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-08-26T19:36:04.4636290Z 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-08-26T19:36:04.4637490Z 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-08-26T19:36:04.4638740Z 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-08-26T19:36:04.4639860Z 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-08-26T19:36:04.4641120Z 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-08-26T19:36:04.4642350Z 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-08-26T19:36:04.4643580Z 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-08-26T19:36:04.4644780Z 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-08-26T19:36:04.4646080Z 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-08-26T19:36:04.4647230Z 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-08-26T19:36:04.4648500Z 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-08-26T19:36:04.4649860Z 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-08-26T19:36:04.4650980Z 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-08-26T19:36:04.4652170Z 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-08-26T19:36:04.4653310Z 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-08-26T19:36:04.4654720Z 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-08-26T19:36:04.4655860Z 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-08-26T19:36:04.4657200Z 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-08-26T19:36:04.4658250Z 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-08-26T19:36:04.4659780Z 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-08-26T19:36:04.4660800Z 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-08-26T19:36:04.4662060Z 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-08-26T19:36:04.4663160Z 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-08-26T19:36:04.4664400Z 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-08-26T19:36:04.4665790Z 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-08-26T19:36:04.4666890Z 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-08-26T19:36:04.4668040Z 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-08-26T19:36:04.4669300Z 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-08-26T19:36:04.4670320Z 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-08-26T19:36:04.4671600Z 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-08-26T19:36:04.4672580Z 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-08-26T19:36:04.4673810Z 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-08-26T19:36:04.4675130Z 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-08-26T19:36:04.4676350Z 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-08-26T19:36:04.4677300Z 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-08-26T19:36:04.4678580Z 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-08-26T19:36:04.4679590Z 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-08-26T19:36:04.4680800Z 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-08-26T19:36:04.4681920Z 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-08-26T19:36:04.4683470Z 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-08-26T19:36:04.4684730Z 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-08-26T19:36:04.4687280Z 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-08-26T19:36:04.4687650Z 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-08-26T19:36:04.4688370Z 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-08-26T19:36:04.4689520Z 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-08-26T19:36:04.4690900Z 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-08-26T19:36:04.4691800Z 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-08-26T19:36:04.4692890Z 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-08-26T19:36:04.4694080Z 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-08-26T19:36:04.4695180Z 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-08-26T19:36:04.4696290Z 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-08-26T19:36:04.4697440Z 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-08-26T19:36:04.4698570Z 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-08-26T19:36:04.4699800Z 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-08-26T19:36:04.4700860Z 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-08-26T19:36:04.4701990Z 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-08-26T19:36:04.4703350Z 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-08-26T19:36:04.4704510Z 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-08-26T19:36:04.4706030Z 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-08-26T19:36:04.4706760Z 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-08-26T19:36:04.4707920Z 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-08-26T19:36:04.4709280Z 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-08-26T19:36:04.4710530Z 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-08-26T19:36:04.4711580Z 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-08-26T19:36:04.4712720Z 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-08-26T19:36:04.4714030Z 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-08-26T19:36:04.4715310Z 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-08-26T19:36:04.4716480Z 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-08-26T19:36:04.4717590Z 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-08-26T19:36:04.4718780Z 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-08-26T19:36:04.4719970Z 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-08-26T19:36:04.4721220Z 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-08-26T19:36:04.4722340Z 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-08-26T19:36:04.4723550Z 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-08-26T19:36:04.4724720Z 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-08-26T19:36:04.4725850Z 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-08-26T19:36:04.4727100Z 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-08-26T19:36:04.4728370Z 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-08-26T19:36:04.4729610Z 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-08-26T19:36:04.4731000Z 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-08-26T19:36:04.4732090Z 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-08-26T19:36:04.4733330Z 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-08-26T19:36:04.4734700Z 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-08-26T19:36:04.4735810Z 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-08-26T19:36:04.4736980Z 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-08-26T19:36:04.4738200Z 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-08-26T19:36:04.4739350Z 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-08-26T19:36:04.4740500Z 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-08-26T19:36:04.4741690Z 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-08-26T19:36:04.4742880Z 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-08-26T19:36:04.4744330Z 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-08-26T19:36:04.4745450Z 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-08-26T19:36:04.4746680Z 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-08-26T19:36:04.4747780Z 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-08-26T19:36:04.4748940Z 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-08-26T19:36:04.4750140Z 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-08-26T19:36:04.4751320Z 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-08-26T19:36:04.4752550Z 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-08-26T19:36:04.4753760Z 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-08-26T19:36:04.4754950Z 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-08-26T19:36:04.4756210Z 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-08-26T19:36:04.4757580Z 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-08-26T19:36:04.4758790Z 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-08-26T19:36:04.4760360Z 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-08-26T19:36:04.4761430Z 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-08-26T19:36:04.4762700Z 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-08-26T19:36:04.4763960Z 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-08-26T19:36:04.4765160Z 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-08-26T19:36:04.4766310Z 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-08-26T19:36:04.4767600Z 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-08-26T19:36:04.4768840Z 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-08-26T19:36:04.4769970Z 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-08-26T19:36:04.4771170Z 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-08-26T19:36:04.4772650Z 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-08-26T19:36:04.4773920Z 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-08-26T19:36:04.4775190Z 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-08-26T19:36:04.4776500Z 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-08-26T19:36:04.4777740Z 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-08-26T19:36:04.4778950Z 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-08-26T19:36:04.4780170Z 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-08-26T19:36:04.4781430Z 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-08-26T19:36:04.4782510Z 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-08-26T19:36:04.4783850Z 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-08-26T19:36:04.4784960Z 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-08-26T19:36:04.4786260Z 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-08-26T19:36:04.4787370Z 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-08-26T19:36:04.4788770Z 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-08-26T19:36:04.4789970Z 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-08-26T19:36:04.4791160Z 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-08-26T19:36:04.4792370Z 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-08-26T19:36:04.4793750Z 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-08-26T19:36:04.4794970Z 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-08-26T19:36:04.4796200Z 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-08-26T19:36:04.4797440Z 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-08-26T19:36:04.4798590Z 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-08-26T19:36:04.4799820Z 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-08-26T19:36:04.4801170Z 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-08-26T19:36:04.4802310Z 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-08-26T19:36:04.4803500Z 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-08-26T19:36:04.4804790Z 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-08-26T19:36:04.4805960Z 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-08-26T19:36:04.4807160Z 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-08-26T19:36:04.4808370Z 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-08-26T19:36:04.4809550Z 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-08-26T19:36:04.4810690Z 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-08-26T19:36:04.4811970Z 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-08-26T19:36:04.4813290Z 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-08-26T19:36:04.4814340Z 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-08-26T19:36:04.4815560Z 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-08-26T19:36:04.4816750Z 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-08-26T19:36:04.4817890Z 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-08-26T19:36:04.4819230Z 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-08-26T19:36:04.4820290Z 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-08-26T19:36:04.4821530Z 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-08-26T19:36:04.4822880Z 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-08-26T19:36:04.4824160Z 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-08-26T19:36:04.4825250Z 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-08-26T19:36:04.4826410Z 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-08-26T19:36:04.4827720Z 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-08-26T19:36:04.4828820Z 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-08-26T19:36:04.4830170Z 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-08-26T19:36:04.4831420Z 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-08-26T19:36:04.4832470Z 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-08-26T19:36:04.4833700Z 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-08-26T19:36:04.4834850Z 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-08-26T19:36:04.4836000Z 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-08-26T19:36:04.4837290Z 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-08-26T19:36:04.4838300Z 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-08-26T19:36:04.4839600Z 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-08-26T19:36:04.4840680Z 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-08-26T19:36:04.4841960Z 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-08-26T19:36:04.4843090Z 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-08-26T19:36:04.4844140Z 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-08-26T19:36:04.4845390Z 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-08-26T19:36:04.4846780Z 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-08-26T19:36:04.4847900Z 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-08-26T19:36:04.4849940Z 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-08-26T19:36:04.4850400Z 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-08-26T19:36:04.4851460Z 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-08-26T19:36:04.4852990Z 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-08-26T19:36:04.4853720Z 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-08-26T19:36:04.4855010Z 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-08-26T19:36:04.4856130Z 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-08-26T19:36:04.4857310Z 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-08-26T19:36:04.4858460Z 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-08-26T19:36:04.4859670Z 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-08-26T19:36:04.4860860Z 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-08-26T19:36:04.4862100Z 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-08-26T19:36:04.4863290Z 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-08-26T19:36:04.4864400Z 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-08-26T19:36:04.4865560Z 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-08-26T19:36:04.4866970Z 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-08-26T19:36:04.4867990Z 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-08-26T19:36:04.4869180Z 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-08-26T19:36:04.4870420Z 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-08-26T19:36:04.4871540Z 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-08-26T19:36:04.4872800Z 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-08-26T19:36:04.4873860Z 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-08-26T19:36:04.4875190Z 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-08-26T19:36:04.4876290Z 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-08-26T19:36:04.4877340Z 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-08-26T19:36:04.4878560Z 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-08-26T19:36:04.4879830Z 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-08-26T19:36:04.4880980Z 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-08-26T19:36:04.4882170Z 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-08-26T19:36:04.4883340Z 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-08-26T19:36:04.4884420Z 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-08-26T19:36:04.4885790Z 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-08-26T19:36:04.4886810Z 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-08-26T19:36:04.4887870Z 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-08-26T19:36:04.4889050Z 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-08-26T19:36:04.4890250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.4891450Z 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-08-26T19:36:04.4892500Z 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-08-26T19:36:04.4893760Z 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-08-26T19:36:04.4894920Z 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-08-26T19:36:04.4896410Z 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-08-26T19:36:04.4897330Z 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-08-26T19:36:04.4898580Z 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-08-26T19:36:04.4899850Z 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-08-26T19:36:04.4900920Z 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-08-26T19:36:04.4902200Z 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-08-26T19:36:04.4903270Z 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-08-26T19:36:04.4904530Z 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-08-26T19:36:04.4905610Z 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-08-26T19:36:04.4906780Z 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-08-26T19:36:04.4907940Z 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-08-26T19:36:04.4909150Z 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-08-26T19:36:04.4910270Z 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-08-26T19:36:04.4911410Z 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-08-26T19:36:04.4912640Z 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-08-26T19:36:04.4913810Z 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-08-26T19:36:04.4915060Z 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-08-26T19:36:04.4916260Z 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-08-26T19:36:04.4917650Z 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-08-26T19:36:04.4918640Z 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-08-26T19:36:04.4919940Z 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-08-26T19:36:04.4921100Z 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-08-26T19:36:04.4922590Z 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-08-26T19:36:04.4923750Z 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-08-26T19:36:04.4924840Z 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-08-26T19:36:04.4926020Z 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-08-26T19:36:04.4927310Z 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-08-26T19:36:04.4928530Z 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-08-26T19:36:04.4929680Z 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-08-26T19:36:04.4930870Z 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-08-26T19:36:04.4932160Z 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-08-26T19:36:04.4933300Z 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-08-26T19:36:04.4934550Z 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-08-26T19:36:04.4935730Z 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-08-26T19:36:04.4937130Z 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-08-26T19:36:04.4938350Z 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-08-26T19:36:04.4939470Z 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-08-26T19:36:04.4940710Z 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-08-26T19:36:04.4942040Z 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-08-26T19:36:04.4943290Z 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-08-26T19:36:04.4944480Z 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-08-26T19:36:04.4945620Z 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-08-26T19:36:04.4946850Z 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-08-26T19:36:04.4947910Z 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-08-26T19:36:04.4949090Z 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-08-26T19:36:04.4950310Z 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-08-26T19:36:04.4951430Z 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-08-26T19:36:04.4952580Z 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-08-26T19:36:04.4953810Z 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-08-26T19:36:04.4955050Z 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-08-26T19:36:04.4956270Z 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-08-26T19:36:04.4957440Z 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-08-26T19:36:04.4958590Z 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-08-26T19:36:04.4959770Z 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-08-26T19:36:04.4960870Z 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-08-26T19:36:04.4962120Z 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-08-26T19:36:04.4963320Z 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-08-26T19:36:04.4964450Z 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-08-26T19:36:04.4965700Z 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-08-26T19:36:04.4966960Z 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-08-26T19:36:04.4968140Z 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-08-26T19:36:04.4969410Z 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-08-26T19:36:04.4970350Z 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-08-26T19:36:04.4971480Z 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-08-26T19:36:04.4972780Z 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-08-26T19:36:04.4973940Z 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-08-26T19:36:04.4975250Z 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-08-26T19:36:04.4976380Z 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-08-26T19:36:04.4977660Z 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-08-26T19:36:04.4978870Z 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-08-26T19:36:04.4979980Z 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-08-26T19:36:04.4981150Z 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-08-26T19:36:04.4982330Z 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-08-26T19:36:04.4983570Z 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-08-26T19:36:04.4984640Z 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-08-26T19:36:04.4985900Z 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-08-26T19:36:04.4987150Z 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-08-26T19:36:04.4988230Z 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-08-26T19:36:04.4989490Z 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-08-26T19:36:04.4990620Z 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-08-26T19:36:04.4991880Z 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-08-26T19:36:04.4993100Z 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-08-26T19:36:04.4994400Z 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-08-26T19:36:04.4995520Z 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-08-26T19:36:04.4996750Z 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-08-26T19:36:04.4998020Z 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-08-26T19:36:04.4999250Z 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-08-26T19:36:04.5000640Z 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-08-26T19:36:04.5001980Z 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-08-26T19:36:04.5003230Z 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-08-26T19:36:04.5004480Z 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-08-26T19:36:04.5005710Z 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-08-26T19:36:04.5006880Z 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-08-26T19:36:04.5008080Z 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-08-26T19:36:04.5009370Z 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-08-26T19:36:04.5010860Z 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-08-26T19:36:04.5012340Z 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-08-26T19:36:04.5013790Z 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-08-26T19:36:04.5014900Z 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-08-26T19:36:04.5016070Z 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-08-26T19:36:04.5017290Z 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-08-26T19:36:04.5018540Z 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-08-26T19:36:04.5019890Z 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-08-26T19:36:04.5021230Z 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-08-26T19:36:04.5022760Z 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-08-26T19:36:04.5024070Z 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-08-26T19:36:04.5025540Z 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-08-26T19:36:04.5026990Z 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-08-26T19:36:04.5028480Z 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-08-26T19:36:04.5029810Z 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-08-26T19:36:04.5031360Z 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-08-26T19:36:04.5032540Z 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-08-26T19:36:04.5033540Z 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-08-26T19:36:04.5034720Z 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-08-26T19:36:04.5035900Z 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-08-26T19:36:04.5037160Z 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-08-26T19:36:04.5038370Z 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-08-26T19:36:04.5039590Z 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-08-26T19:36:04.5040750Z 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-08-26T19:36:04.5041900Z 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-08-26T19:36:04.5043140Z 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-08-26T19:36:04.5044300Z 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-08-26T19:36:04.5045590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.5046790Z 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-08-26T19:36:04.5047910Z 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-08-26T19:36:04.5049330Z 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-08-26T19:36:04.5050420Z 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-08-26T19:36:04.5051550Z 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-08-26T19:36:04.5052900Z 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-08-26T19:36:04.5054080Z 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-08-26T19:36:04.5055230Z 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-08-26T19:36:04.5056610Z 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-08-26T19:36:04.5057690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.5059280Z 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-08-26T19:36:04.5061030Z 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-08-26T19:36:04.5062110Z 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-08-26T19:36:04.5063360Z 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-08-26T19:36:04.5064520Z 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-08-26T19:36:04.5065690Z 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-08-26T19:36:04.5067030Z 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-08-26T19:36:04.5068290Z 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-08-26T19:36:04.5069590Z 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-08-26T19:36:04.5070730Z 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-08-26T19:36:04.5071990Z 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-08-26T19:36:04.5073220Z 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-08-26T19:36:04.5074490Z 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-08-26T19:36:04.5075800Z 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-08-26T19:36:04.5077090Z 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-08-26T19:36:04.5078360Z 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-08-26T19:36:04.5079610Z 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-08-26T19:36:04.5080780Z 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-08-26T19:36:04.5081930Z 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-08-26T19:36:04.5083270Z 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-08-26T19:36:04.5084380Z 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-08-26T19:36:04.5085650Z 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-08-26T19:36:04.5087060Z 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-08-26T19:36:04.5088220Z 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-08-26T19:36:04.5089390Z 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-08-26T19:36:04.5090680Z 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-08-26T19:36:04.5091970Z 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-08-26T19:36:04.5093100Z 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-08-26T19:36:04.5094410Z 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-08-26T19:36:04.5095630Z 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-08-26T19:36:04.5096890Z 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-08-26T19:36:04.5098130Z 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-08-26T19:36:04.5099350Z 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-08-26T19:36:04.5100580Z 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-08-26T19:36:04.5101910Z 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-08-26T19:36:04.5103170Z 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-08-26T19:36:04.5104290Z 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-08-26T19:36:04.5105590Z 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-08-26T19:36:04.5106840Z 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-08-26T19:36:04.5108280Z 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-08-26T19:36:04.5109410Z 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-08-26T19:36:04.5110600Z 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-08-26T19:36:04.5111880Z 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-08-26T19:36:04.5113070Z 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-08-26T19:36:04.5114480Z 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-08-26T19:36:04.5115860Z 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-08-26T19:36:04.5116720Z 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-08-26T19:36:04.5117880Z 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-08-26T19:36:04.5119060Z 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-08-26T19:36:04.5120320Z 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-08-26T19:36:04.5121430Z 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-08-26T19:36:04.5122760Z 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-08-26T19:36:04.5123920Z 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-08-26T19:36:04.5125120Z 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-08-26T19:36:04.5126250Z 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-08-26T19:36:04.5127420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.5128670Z 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-08-26T19:36:04.5129830Z 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-08-26T19:36:04.5131030Z 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-08-26T19:36:04.5132250Z 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-08-26T19:36:04.5133340Z 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-08-26T19:36:04.5134710Z 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-08-26T19:36:04.5135740Z 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-08-26T19:36:04.5136920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.5138180Z 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-08-26T19:36:04.5139400Z 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-08-26T19:36:04.5140530Z 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-08-26T19:36:04.5141950Z 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-08-26T19:36:04.5143050Z 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-08-26T19:36:04.5144250Z 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-08-26T19:36:04.5145440Z 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-08-26T19:36:04.5146630Z 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-08-26T19:36:04.5147980Z 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-08-26T19:36:04.5149300Z 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-08-26T19:36:04.5150350Z 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-08-26T19:36:04.5151520Z 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-08-26T19:36:04.5152760Z 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-08-26T19:36:04.5153920Z 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-08-26T19:36:04.5155110Z 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-08-26T19:36:04.5156420Z 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-08-26T19:36:04.5157610Z 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-08-26T19:36:04.5158690Z 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-08-26T19:36:04.5160070Z 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-08-26T19:36:04.5161150Z 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-08-26T19:36:04.5162360Z 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-08-26T19:36:04.5163440Z 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-08-26T19:36:04.5164700Z 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-08-26T19:36:04.5165900Z 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-08-26T19:36:04.5167130Z 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-08-26T19:36:04.5168210Z 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-08-26T19:36:04.5169390Z 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-08-26T19:36:04.5170630Z 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-08-26T19:36:04.5171770Z 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-08-26T19:36:04.5172940Z 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-08-26T19:36:04.5174060Z 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-08-26T19:36:04.5175210Z 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-08-26T19:36:04.5176390Z 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-08-26T19:36:04.5177660Z 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-08-26T19:36:04.5178830Z 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-08-26T19:36:04.5179970Z 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-08-26T19:36:04.5181080Z 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-08-26T19:36:04.5187060Z 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-08-26T19:36:04.5187660Z 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-08-26T19:36:04.5188420Z 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-08-26T19:36:04.5188810Z 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-08-26T19:36:04.5189270Z 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-08-26T19:36:04.5189620Z 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-08-26T19:36:04.5190030Z 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-08-26T19:36:04.5190790Z 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-08-26T19:36:04.5192010Z 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-08-26T19:36:04.5193270Z 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-08-26T19:36:04.5194560Z 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-08-26T19:36:04.5195750Z 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-08-26T19:36:04.5196810Z 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-08-26T19:36:04.5198040Z 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-08-26T19:36:04.5199350Z 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-08-26T19:36:04.5200380Z 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-08-26T19:36:04.5201550Z 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-08-26T19:36:04.5202800Z 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-08-26T19:36:04.5203910Z 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-08-26T19:36:04.5205240Z 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-08-26T19:36:04.5206450Z 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-08-26T19:36:04.5207710Z 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-08-26T19:36:04.5208900Z 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-08-26T19:36:04.5210200Z 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-08-26T19:36:04.5211360Z 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-08-26T19:36:04.5212460Z 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-08-26T19:36:04.5213690Z 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-08-26T19:36:04.5214830Z 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-08-26T19:36:04.5216000Z 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-08-26T19:36:04.5217140Z 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-08-26T19:36:04.5218320Z 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-08-26T19:36:04.5219720Z 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-08-26T19:36:04.5220590Z 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-08-26T19:36:04.5221940Z 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-08-26T19:36:04.5223090Z 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-08-26T19:36:04.5224250Z 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-08-26T19:36:04.5225440Z 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-08-26T19:36:04.5226610Z 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-08-26T19:36:04.5227790Z 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-08-26T19:36:04.5228910Z 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-08-26T19:36:04.5230200Z 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-08-26T19:36:04.5231360Z 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-08-26T19:36:04.5232650Z 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-08-26T19:36:04.5233900Z 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-08-26T19:36:04.5235060Z 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-08-26T19:36:04.5236230Z 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-08-26T19:36:04.5237380Z 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-08-26T19:36:04.5238520Z 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-08-26T19:36:04.5239690Z 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-08-26T19:36:04.5240830Z 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-08-26T19:36:04.5242110Z 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-08-26T19:36:04.5243290Z 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-08-26T19:36:04.5244480Z 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-08-26T19:36:04.5245770Z 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-08-26T19:36:04.5246800Z 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-08-26T19:36:04.5248110Z 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-08-26T19:36:04.5249210Z 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-08-26T19:36:04.5250360Z 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-08-26T19:36:04.5251590Z 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-08-26T19:36:04.5252780Z 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-08-26T19:36:04.5253990Z 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-08-26T19:36:04.5255160Z 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-08-26T19:36:04.5256350Z 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-08-26T19:36:04.5257470Z 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-08-26T19:36:04.5258650Z 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-08-26T19:36:04.5259900Z 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-08-26T19:36:04.5260980Z 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-08-26T19:36:04.5262170Z 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-08-26T19:36:04.5263360Z 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-08-26T19:36:04.5264560Z 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-08-26T19:36:04.5265740Z 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-08-26T19:36:04.5266940Z 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-08-26T19:36:04.5268130Z 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-08-26T19:36:04.5269350Z 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-08-26T19:36:04.5270530Z 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-08-26T19:36:04.5271660Z 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-08-26T19:36:04.5272930Z 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-08-26T19:36:04.5274190Z 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-08-26T19:36:04.5275250Z 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-08-26T19:36:04.5276490Z 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-08-26T19:36:04.5277620Z 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-08-26T19:36:04.5278930Z 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-08-26T19:36:04.5280150Z 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-08-26T19:36:04.5281320Z 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-08-26T19:36:04.5282460Z 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-08-26T19:36:04.5283570Z 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-08-26T19:36:04.5284930Z 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-08-26T19:36:04.5286160Z 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-08-26T19:36:04.5287380Z 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-08-26T19:36:04.5288710Z 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-08-26T19:36:04.5290000Z 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-08-26T19:36:04.5290980Z 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-08-26T19:36:04.5292300Z 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-08-26T19:36:04.5293420Z 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-08-26T19:36:04.5294610Z 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-08-26T19:36:04.5295910Z 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-08-26T19:36:04.5297060Z 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-08-26T19:36:04.5298260Z 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-08-26T19:36:04.5299520Z 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-08-26T19:36:04.5300640Z 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-08-26T19:36:04.5301940Z 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-08-26T19:36:04.5303140Z 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-08-26T19:36:04.5304310Z 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-08-26T19:36:04.5305510Z 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-08-26T19:36:04.5306650Z 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-08-26T19:36:04.5307770Z 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-08-26T19:36:04.5308920Z 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-08-26T19:36:04.5310270Z 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-08-26T19:36:04.5311580Z 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-08-26T19:36:04.5313060Z 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-08-26T19:36:04.5314530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.5315660Z 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-08-26T19:36:04.5316980Z 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-08-26T19:36:04.5318200Z 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-08-26T19:36:04.5319330Z 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-08-26T19:36:04.5320500Z 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-08-26T19:36:04.5321740Z 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-08-26T19:36:04.5322980Z 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-08-26T19:36:04.5324330Z 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-08-26T19:36:04.5325670Z 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-08-26T19:36:04.5326900Z 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-08-26T19:36:04.5327970Z 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-08-26T19:36:04.5329210Z 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-08-26T19:36:04.5330320Z 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-08-26T19:36:04.5331750Z 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-08-26T19:36:04.5332800Z 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-08-26T19:36:04.5334020Z 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-08-26T19:36:04.5335250Z 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-08-26T19:36:04.5336430Z 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-08-26T19:36:04.5337590Z 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-08-26T19:36:04.5338990Z 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-08-26T19:36:04.5339860Z 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-08-26T19:36:04.5340980Z 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-08-26T19:36:04.5342220Z 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-08-26T19:36:04.5343310Z 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-08-26T19:36:04.5344540Z 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-08-26T19:36:04.5345620Z 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-08-26T19:36:04.5346750Z 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-08-26T19:36:04.5347880Z 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-08-26T19:36:04.5349120Z 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-08-26T19:36:04.5350290Z 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-08-26T19:36:04.5351520Z 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-08-26T19:36:04.5352640Z 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-08-26T19:36:04.5354010Z 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-08-26T19:36:04.5355070Z 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-08-26T19:36:04.5356180Z 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-08-26T19:36:04.5357290Z 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-08-26T19:36:04.5358440Z 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-08-26T19:36:04.5359750Z 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-08-26T19:36:04.5360960Z 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-08-26T19:36:04.5362090Z 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-08-26T19:36:04.5363210Z 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-08-26T19:36:04.5364430Z 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-08-26T19:36:04.5365630Z 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-08-26T19:36:04.5366800Z 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-08-26T19:36:04.5368170Z 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-08-26T19:36:04.5369240Z 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-08-26T19:36:04.5370460Z 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-08-26T19:36:04.5371670Z 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-08-26T19:36:04.5372840Z 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-08-26T19:36:04.5374020Z 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-08-26T19:36:04.5375210Z 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-08-26T19:36:04.5376410Z 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-08-26T19:36:04.5377700Z 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-08-26T19:36:04.5378820Z 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-08-26T19:36:04.5379910Z 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-08-26T19:36:04.5381060Z 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-08-26T19:36:04.5382260Z 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-08-26T19:36:04.5383350Z 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-08-26T19:36:04.5384730Z 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-08-26T19:36:04.5385780Z 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-08-26T19:36:04.5387020Z 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-08-26T19:36:04.5388250Z 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-08-26T19:36:04.5389660Z 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-08-26T19:36:04.5390550Z 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-08-26T19:36:04.5391690Z 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-08-26T19:36:04.5392860Z 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-08-26T19:36:04.5394140Z 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-08-26T19:36:04.5395250Z 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-08-26T19:36:04.5396580Z 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-08-26T19:36:04.5397880Z 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-08-26T19:36:04.5399190Z 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-08-26T19:36:04.5400300Z 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-08-26T19:36:04.5401410Z 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-08-26T19:36:04.5402640Z 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-08-26T19:36:04.5403860Z 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-08-26T19:36:04.5405010Z 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-08-26T19:36:04.5406270Z 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-08-26T19:36:04.5407640Z 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-08-26T19:36:04.5408620Z 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-08-26T19:36:04.5409710Z 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-08-26T19:36:04.5411090Z 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-08-26T19:36:04.5412150Z 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-08-26T19:36:04.5413350Z 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-08-26T19:36:04.5414550Z 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-08-26T19:36:04.5415680Z 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-08-26T19:36:04.5417040Z 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-08-26T19:36:04.5418010Z 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-08-26T19:36:04.5419220Z 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-08-26T19:36:04.5420390Z 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-08-26T19:36:04.5421540Z 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-08-26T19:36:04.5422830Z 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-08-26T19:36:04.5424050Z 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-08-26T19:36:04.5425260Z 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-08-26T19:36:04.5426510Z 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-08-26T19:36:04.5427670Z 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-08-26T19:36:04.5428870Z 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-08-26T19:36:04.5430070Z 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-08-26T19:36:04.5431300Z 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-08-26T19:36:04.5432590Z 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-08-26T19:36:04.5433750Z 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-08-26T19:36:04.5434900Z 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-08-26T19:36:04.5436160Z 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-08-26T19:36:04.5437650Z 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-08-26T19:36:04.5438560Z 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-08-26T19:36:04.5439770Z 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-08-26T19:36:04.5440960Z 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-08-26T19:36:04.5442100Z 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-08-26T19:36:04.5443400Z 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-08-26T19:36:04.5444560Z 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-08-26T19:36:04.5445790Z 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-08-26T19:36:04.5447030Z 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-08-26T19:36:04.5448140Z 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-08-26T19:36:04.5449380Z 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-08-26T19:36:04.5450710Z 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-08-26T19:36:04.5451840Z 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-08-26T19:36:04.5453060Z 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-08-26T19:36:04.5454190Z 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-08-26T19:36:04.5455320Z 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-08-26T19:36:04.5456430Z 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-08-26T19:36:04.5457630Z 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-08-26T19:36:04.5458940Z 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-08-26T19:36:04.5460030Z 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-08-26T19:36:04.5461280Z 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-08-26T19:36:04.5462440Z 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-08-26T19:36:04.5463640Z 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-08-26T19:36:04.5464750Z 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-08-26T19:36:04.5465970Z 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-08-26T19:36:04.5467220Z 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-08-26T19:36:04.5468530Z 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-08-26T19:36:04.5469760Z 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-08-26T19:36:04.5470970Z 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-08-26T19:36:04.5472100Z 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-08-26T19:36:04.5473310Z 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-08-26T19:36:04.5474540Z 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-08-26T19:36:04.5475640Z 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-08-26T19:36:04.5476840Z 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-08-26T19:36:04.5478050Z 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-08-26T19:36:04.5479240Z 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-08-26T19:36:04.5480590Z 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-08-26T19:36:04.5481690Z 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-08-26T19:36:04.5482870Z 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-08-26T19:36:04.5483880Z 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-08-26T19:36:04.5485120Z 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-08-26T19:36:04.5486360Z 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-08-26T19:36:04.5487490Z 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-08-26T19:36:04.5488700Z 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-08-26T19:36:04.5489710Z 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-08-26T19:36:04.5491030Z 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-08-26T19:36:04.5492120Z 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-08-26T19:36:04.5493280Z 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-08-26T19:36:04.5494360Z 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-08-26T19:36:04.5495550Z 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-08-26T19:36:04.5496760Z 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-08-26T19:36:04.5497900Z 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-08-26T19:36:04.5499100Z 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-08-26T19:36:04.5500280Z 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-08-26T19:36:04.5501530Z 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-08-26T19:36:04.5502690Z 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-08-26T19:36:04.5504000Z 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-08-26T19:36:04.5505180Z 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-08-26T19:36:04.5506400Z 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-08-26T19:36:04.5507600Z 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-08-26T19:36:04.5508750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.5509930Z 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-08-26T19:36:04.5511050Z 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-08-26T19:36:04.5512350Z 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-08-26T19:36:04.5513430Z 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-08-26T19:36:04.5514860Z 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-08-26T19:36:04.5515860Z 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-08-26T19:36:04.5516980Z 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-08-26T19:36:04.5518240Z 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-08-26T19:36:04.5519360Z 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-08-26T19:36:04.5520560Z 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-08-26T19:36:04.5521610Z 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-08-26T19:36:04.5522730Z 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-08-26T19:36:04.5523910Z 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-08-26T19:36:04.5525060Z 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-08-26T19:36:04.5526240Z 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-08-26T19:36:04.5527460Z 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-08-26T19:36:04.5528720Z 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-08-26T19:36:04.5529840Z 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-08-26T19:36:04.5531000Z 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-08-26T19:36:04.5532140Z 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-08-26T19:36:04.5533280Z 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-08-26T19:36:04.5534440Z 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-08-26T19:36:04.5535930Z 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-08-26T19:36:04.5537330Z 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-08-26T19:36:04.5538380Z 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-08-26T19:36:04.5539500Z 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-08-26T19:36:04.5540610Z 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-08-26T19:36:04.5541940Z 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-08-26T19:36:04.5543080Z 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-08-26T19:36:04.5544210Z 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-08-26T19:36:04.5545320Z 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-08-26T19:36:04.5546530Z 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-08-26T19:36:04.5547680Z 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-08-26T19:36:04.5548890Z 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-08-26T19:36:04.5550030Z 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-08-26T19:36:04.5551250Z 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-08-26T19:36:04.5552390Z 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-08-26T19:36:04.5553520Z 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-08-26T19:36:04.5554620Z 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-08-26T19:36:04.5555860Z 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-08-26T19:36:04.5556920Z 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-08-26T19:36:04.5558060Z 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-08-26T19:36:04.5559320Z 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-08-26T19:36:04.5560500Z 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-08-26T19:36:04.5561700Z 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-08-26T19:36:04.5562960Z 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-08-26T19:36:04.5564070Z 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-08-26T19:36:04.5565260Z 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-08-26T19:36:04.5566560Z 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-08-26T19:36:04.5567610Z 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-08-26T19:36:04.5568790Z 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-08-26T19:36:04.5569940Z 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-08-26T19:36:04.5571220Z 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-08-26T19:36:04.5572460Z 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-08-26T19:36:04.5573580Z 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-08-26T19:36:04.5574900Z 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-08-26T19:36:04.5576010Z 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-08-26T19:36:04.5577700Z 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-08-26T19:36:04.5578860Z 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-08-26T19:36:04.5580140Z 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-08-26T19:36:04.5581470Z 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-08-26T19:36:04.5582870Z 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-08-26T19:36:04.5584290Z 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-08-26T19:36:04.5585340Z 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-08-26T19:36:04.5586540Z 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-08-26T19:36:04.5587680Z 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-08-26T19:36:04.5588810Z 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-08-26T19:36:04.5589980Z 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-08-26T19:36:04.5591280Z 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-08-26T19:36:04.5592440Z 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-08-26T19:36:04.5593680Z 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-08-26T19:36:04.5594770Z 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-08-26T19:36:04.5595960Z 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-08-26T19:36:04.5597140Z 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-08-26T19:36:04.5598290Z 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-08-26T19:36:04.5599550Z 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-08-26T19:36:04.5600610Z 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-08-26T19:36:04.5601970Z 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-08-26T19:36:04.5603150Z 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-08-26T19:36:04.5604230Z 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-08-26T19:36:04.5605430Z 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-08-26T19:36:04.5606520Z 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-08-26T19:36:04.5607760Z 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-08-26T19:36:04.5608880Z 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-08-26T19:36:04.5610040Z 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-08-26T19:36:04.5611170Z 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-08-26T19:36:04.5612380Z 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-08-26T19:36:04.5613490Z 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-08-26T19:36:04.5614670Z 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-08-26T19:36:04.5615820Z 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-08-26T19:36:04.5617110Z 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-08-26T19:36:04.5618310Z 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-08-26T19:36:04.5620560Z 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-08-26T19:36:04.5621620Z 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-08-26T19:36:04.5622840Z 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-08-26T19:36:04.5624200Z 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-08-26T19:36:04.5625300Z 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-08-26T19:36:04.5626440Z 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-08-26T19:36:04.5627680Z 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-08-26T19:36:04.5628910Z 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-08-26T19:36:04.5630120Z 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-08-26T19:36:04.5631220Z 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-08-26T19:36:04.5632410Z 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-08-26T19:36:04.5633700Z 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-08-26T19:36:04.5634900Z 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-08-26T19:36:04.5635960Z 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-08-26T19:36:04.5637290Z 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-08-26T19:36:04.5638440Z 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-08-26T19:36:04.5639890Z 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-08-26T19:36:04.5640740Z 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-08-26T19:36:04.5641850Z 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-08-26T19:36:04.5643130Z 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-08-26T19:36:04.5644270Z 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-08-26T19:36:04.5645370Z 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-08-26T19:36:04.5646570Z 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-08-26T19:36:04.5647770Z 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-08-26T19:36:04.5648980Z 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-08-26T19:36:04.5650200Z 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-08-26T19:36:04.5651320Z 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-08-26T19:36:04.5652460Z 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-08-26T19:36:04.5653750Z 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-08-26T19:36:04.5654990Z 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-08-26T19:36:04.5656070Z 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-08-26T19:36:04.5657220Z 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-08-26T19:36:04.5658500Z 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-08-26T19:36:04.5659570Z 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-08-26T19:36:04.5660710Z 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-08-26T19:36:04.5661880Z 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-08-26T19:36:04.5663000Z 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-08-26T19:36:04.5664150Z 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-08-26T19:36:04.5665440Z 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-08-26T19:36:04.5666660Z 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-08-26T19:36:04.5667790Z 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-08-26T19:36:04.5668850Z 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-08-26T19:36:04.5670020Z 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-08-26T19:36:04.5671310Z 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-08-26T19:36:04.5672480Z 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-08-26T19:36:04.5673560Z 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-08-26T19:36:04.5674700Z 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-08-26T19:36:04.5675910Z 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-08-26T19:36:04.5677100Z 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-08-26T19:36:04.5678160Z 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-08-26T19:36:04.5679360Z 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-08-26T19:36:04.5680690Z 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-08-26T19:36:04.5681930Z 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-08-26T19:36:04.5682970Z 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-08-26T19:36:04.5684130Z 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-08-26T19:36:04.5685340Z 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-08-26T19:36:04.5686650Z 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-08-26T19:36:04.5687810Z 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-08-26T19:36:04.5689020Z 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-08-26T19:36:04.5690240Z 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-08-26T19:36:04.5691470Z 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-08-26T19:36:04.5692750Z 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-08-26T19:36:04.5693900Z 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-08-26T19:36:04.5694960Z 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-08-26T19:36:04.5696210Z 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-08-26T19:36:04.5697400Z 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-08-26T19:36:04.5698500Z 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-08-26T19:36:04.5699720Z 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-08-26T19:36:04.5700890Z 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-08-26T19:36:04.5702090Z 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-08-26T19:36:04.5703250Z 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-08-26T19:36:04.5704370Z 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-08-26T19:36:04.5705520Z 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-08-26T19:36:04.5706710Z 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-08-26T19:36:04.5708070Z 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-08-26T19:36:04.5709290Z 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-08-26T19:36:04.5710300Z 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-08-26T19:36:04.5711580Z 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-08-26T19:36:04.5713100Z 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-08-26T19:36:04.5714010Z 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-08-26T19:36:04.5715070Z 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-08-26T19:36:04.5716220Z 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-08-26T19:36:04.5717510Z 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-08-26T19:36:04.5718900Z 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-08-26T19:36:04.5719950Z 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-08-26T19:36:04.5721150Z 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-08-26T19:36:04.5722420Z 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-08-26T19:36:04.5723590Z 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-08-26T19:36:04.5724860Z 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-08-26T19:36:04.5725900Z 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-08-26T19:36:04.5727110Z 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-08-26T19:36:04.5728280Z 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-08-26T19:36:04.5729520Z 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-08-26T19:36:04.5730570Z 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-08-26T19:36:04.5731740Z 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-08-26T19:36:04.5732980Z 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-08-26T19:36:04.5734200Z 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-08-26T19:36:04.5735440Z 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-08-26T19:36:04.5736850Z 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-08-26T19:36:04.5737910Z 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-08-26T19:36:04.5739400Z 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-08-26T19:36:04.5740420Z 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-08-26T19:36:04.5741680Z 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-08-26T19:36:04.5742830Z 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-08-26T19:36:04.5743970Z 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-08-26T19:36:04.5745150Z 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-08-26T19:36:04.5746320Z 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-08-26T19:36:04.5747430Z 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-08-26T19:36:04.5748550Z 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-08-26T19:36:04.5749820Z 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-08-26T19:36:04.5750850Z 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-08-26T19:36:04.5752120Z 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-08-26T19:36:04.5753210Z 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-08-26T19:36:04.5754380Z 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-08-26T19:36:04.5755520Z 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-08-26T19:36:04.5756790Z 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-08-26T19:36:04.5757880Z 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-08-26T19:36:04.5759060Z 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-08-26T19:36:04.5760240Z 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-08-26T19:36:04.5761390Z 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-08-26T19:36:04.5762590Z 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-08-26T19:36:04.5763580Z 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-08-26T19:36:04.5764870Z 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-08-26T19:36:04.5766050Z 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-08-26T19:36:04.5767260Z 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-08-26T19:36:04.5768480Z 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-08-26T19:36:04.5769620Z 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-08-26T19:36:04.5770710Z 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-08-26T19:36:04.5771890Z 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-08-26T19:36:04.5773070Z 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-08-26T19:36:04.5774270Z 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-08-26T19:36:04.5775350Z 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-08-26T19:36:04.5776480Z 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-08-26T19:36:04.5777750Z 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-08-26T19:36:04.5778940Z 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-08-26T19:36:04.5780080Z 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-08-26T19:36:04.5781130Z 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-08-26T19:36:04.5782280Z 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-08-26T19:36:04.5783480Z 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-08-26T19:36:04.5784790Z 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-08-26T19:36:04.5786030Z 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-08-26T19:36:04.5787300Z 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-08-26T19:36:04.5788380Z 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-08-26T19:36:04.5789860Z 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-08-26T19:36:04.5791330Z 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-08-26T19:36:04.5793110Z 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-08-26T19:36:04.5794320Z 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-08-26T19:36:04.5795530Z 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-08-26T19:36:04.5796700Z 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-08-26T19:36:04.5797860Z 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-08-26T19:36:04.5799070Z 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-08-26T19:36:04.5800300Z 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-08-26T19:36:04.5801500Z 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-08-26T19:36:04.5802630Z 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-08-26T19:36:04.5803740Z 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-08-26T19:36:04.5804890Z 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-08-26T19:36:04.5806060Z 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-08-26T19:36:04.5807230Z 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-08-26T19:36:04.5808450Z 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-08-26T19:36:04.5809690Z 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-08-26T19:36:04.5810890Z 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-08-26T19:36:04.5811870Z 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-08-26T19:36:04.5813030Z 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-08-26T19:36:04.5814180Z 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-08-26T19:36:04.5819380Z 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-08-26T19:36:04.5819800Z 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-08-26T19:36:04.5820420Z 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-08-26T19:36:04.5820820Z 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-08-26T19:36:04.5821210Z 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-08-26T19:36:04.5821560Z 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-08-26T19:36:04.5822390Z 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-08-26T19:36:04.5823560Z 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-08-26T19:36:04.5824730Z 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-08-26T19:36:04.5825960Z 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-08-26T19:36:04.5827390Z 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-08-26T19:36:04.5828540Z 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-08-26T19:36:04.5829800Z 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-08-26T19:36:04.5831050Z 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-08-26T19:36:04.5832090Z 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-08-26T19:36:04.5833170Z 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-08-26T19:36:04.5834300Z 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-08-26T19:36:04.5835390Z 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-08-26T19:36:04.5836520Z 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-08-26T19:36:04.5837710Z 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-08-26T19:36:04.5839070Z 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-08-26T19:36:04.5840310Z 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-08-26T19:36:04.5841170Z 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-08-26T19:36:04.5842410Z 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-08-26T19:36:04.5843550Z 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-08-26T19:36:04.5844690Z 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-08-26T19:36:04.5845820Z 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-08-26T19:36:04.5847080Z 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-08-26T19:36:04.5848150Z 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-08-26T19:36:04.5849310Z 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-08-26T19:36:04.5850420Z 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-08-26T19:36:04.5851670Z 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-08-26T19:36:04.5852810Z 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-08-26T19:36:04.5854030Z 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-08-26T19:36:04.5855420Z 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-08-26T19:36:04.5856460Z 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-08-26T19:36:04.5857700Z 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-08-26T19:36:04.5859110Z 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-08-26T19:36:04.5860050Z 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-08-26T19:36:04.5861260Z 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-08-26T19:36:04.5862500Z 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-08-26T19:36:04.5863730Z 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-08-26T19:36:04.5864810Z 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-08-26T19:36:04.5865940Z 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-08-26T19:36:04.5867150Z 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-08-26T19:36:04.5868260Z 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-08-26T19:36:04.5869440Z 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-08-26T19:36:04.5870620Z 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-08-26T19:36:04.5871680Z 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-08-26T19:36:04.5872880Z 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-08-26T19:36:04.5874020Z 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-08-26T19:36:04.5875280Z 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-08-26T19:36:04.5876360Z 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-08-26T19:36:04.5877600Z 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-08-26T19:36:04.5878690Z 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-08-26T19:36:04.5879770Z 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-08-26T19:36:04.5881000Z 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-08-26T19:36:04.5882170Z 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-08-26T19:36:04.5883270Z 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-08-26T19:36:04.5884570Z 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-08-26T19:36:04.5885760Z 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-08-26T19:36:04.5887050Z 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-08-26T19:36:04.5887930Z 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-08-26T19:36:04.5889110Z 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-08-26T19:36:04.5890280Z 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-08-26T19:36:04.5891530Z 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-08-26T19:36:04.5892720Z 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-08-26T19:36:04.5893940Z 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-08-26T19:36:04.5895200Z 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-08-26T19:36:04.5896490Z 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-08-26T19:36:04.5897790Z 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-08-26T19:36:04.5898810Z 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-08-26T19:36:04.5899910Z 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-08-26T19:36:04.5901110Z 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-08-26T19:36:04.5902270Z 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-08-26T19:36:04.5903410Z 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-08-26T19:36:04.5904640Z 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-08-26T19:36:04.5905890Z 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-08-26T19:36:04.5906980Z 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-08-26T19:36:04.5908280Z 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-08-26T19:36:04.5909550Z 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-08-26T19:36:04.5910710Z 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-08-26T19:36:04.5911780Z 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-08-26T19:36:04.5912980Z 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-08-26T19:36:04.5914350Z 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-08-26T19:36:04.5915570Z 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-08-26T19:36:04.5916620Z 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-08-26T19:36:04.5917840Z 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-08-26T19:36:04.5919030Z 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-08-26T19:36:04.5920150Z 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-08-26T19:36:04.5921520Z 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-08-26T19:36:04.5922660Z 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-08-26T19:36:04.5923980Z 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-08-26T19:36:04.5925060Z 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-08-26T19:36:04.5926280Z 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-08-26T19:36:04.5927510Z 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-08-26T19:36:04.5928720Z 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-08-26T19:36:04.5929910Z 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-08-26T19:36:04.5931220Z 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-08-26T19:36:04.5932330Z 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-08-26T19:36:04.5933420Z 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-08-26T19:36:04.5934640Z 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-08-26T19:36:04.5935830Z 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-08-26T19:36:04.5937020Z 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-08-26T19:36:04.5938190Z 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-08-26T19:36:04.5939490Z 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-08-26T19:36:04.5940550Z 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-08-26T19:36:04.5941710Z 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-08-26T19:36:04.5942850Z 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-08-26T19:36:04.5944230Z 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-08-26T19:36:04.5945270Z 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-08-26T19:36:04.5946500Z 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-08-26T19:36:04.5947640Z 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-08-26T19:36:04.5948930Z 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-08-26T19:36:04.5950110Z 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-08-26T19:36:04.5951430Z 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-08-26T19:36:04.5952700Z 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-08-26T19:36:04.5953800Z 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-08-26T19:36:04.5954980Z 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-08-26T19:36:04.5956160Z 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-08-26T19:36:04.5957320Z 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-08-26T19:36:04.5958520Z 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-08-26T19:36:04.5959670Z 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-08-26T19:36:04.5960830Z 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-08-26T19:36:04.5962150Z 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-08-26T19:36:04.5963260Z 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-08-26T19:36:04.5964460Z 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-08-26T19:36:04.5965590Z 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-08-26T19:36:04.5966750Z 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-08-26T19:36:04.5968040Z 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-08-26T19:36:04.5969080Z 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-08-26T19:36:04.5970230Z 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-08-26T19:36:04.5971430Z 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-08-26T19:36:04.5972550Z 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-08-26T19:36:04.5973940Z 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-08-26T19:36:04.5974930Z 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-08-26T19:36:04.5976050Z 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-08-26T19:36:04.5977330Z 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-08-26T19:36:04.5978430Z 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-08-26T19:36:04.5979560Z 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-08-26T19:36:04.5980890Z 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-08-26T19:36:04.5982160Z 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-08-26T19:36:04.5983260Z 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-08-26T19:36:04.5984440Z 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-08-26T19:36:04.5985700Z 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-08-26T19:36:04.5987040Z 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-08-26T19:36:04.5988030Z 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-08-26T19:36:04.5989240Z 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-08-26T19:36:04.5990540Z 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-08-26T19:36:04.5991750Z 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-08-26T19:36:04.5992870Z 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-08-26T19:36:04.5994070Z 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-08-26T19:36:04.5995340Z 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-08-26T19:36:04.5996750Z 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-08-26T19:36:04.5998100Z 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-08-26T19:36:04.5999330Z 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-08-26T19:36:04.6000560Z 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-08-26T19:36:04.6001610Z 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-08-26T19:36:04.6002890Z 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-08-26T19:36:04.6004110Z 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-08-26T19:36:04.6005240Z 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-08-26T19:36:04.6006430Z 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-08-26T19:36:04.6007580Z 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-08-26T19:36:04.6008720Z 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-08-26T19:36:04.6009800Z 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-08-26T19:36:04.6011060Z 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-08-26T19:36:04.6012170Z 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-08-26T19:36:04.6013400Z 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-08-26T19:36:04.6014560Z 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-08-26T19:36:04.6015650Z 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-08-26T19:36:04.6016830Z 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-08-26T19:36:04.6017930Z 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-08-26T19:36:04.6019190Z 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-08-26T19:36:04.6020360Z 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-08-26T19:36:04.6021580Z 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-08-26T19:36:04.6022720Z 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-08-26T19:36:04.6023900Z 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-08-26T19:36:04.6025000Z 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-08-26T19:36:04.6026190Z 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-08-26T19:36:04.6027470Z 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-08-26T19:36:04.6028530Z 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-08-26T19:36:04.6029710Z 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-08-26T19:36:04.6030860Z 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-08-26T19:36:04.6032130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.6033230Z 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-08-26T19:36:04.6034310Z 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-08-26T19:36:04.6035490Z 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-08-26T19:36:04.6036630Z 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-08-26T19:36:04.6037930Z 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-08-26T19:36:04.6039120Z 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-08-26T19:36:04.6040370Z 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-08-26T19:36:04.6041580Z 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-08-26T19:36:04.6042890Z 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-08-26T19:36:04.6043810Z 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-08-26T19:36:04.6044870Z 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-08-26T19:36:04.6046030Z 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-08-26T19:36:04.6047270Z 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-08-26T19:36:04.6048420Z 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-08-26T19:36:04.6049690Z 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-08-26T19:36:04.6051030Z 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-08-26T19:36:04.6052150Z 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-08-26T19:36:04.6053230Z 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-08-26T19:36:04.6054360Z 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-08-26T19:36:04.6055550Z 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-08-26T19:36:04.6056750Z 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-08-26T19:36:04.6057900Z 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-08-26T19:36:04.6059030Z 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-08-26T19:36:04.6060210Z 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-08-26T19:36:04.6061390Z 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-08-26T19:36:04.6062710Z 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-08-26T19:36:04.6063800Z 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-08-26T19:36:04.6064950Z 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-08-26T19:36:04.6066070Z 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-08-26T19:36:04.6067200Z 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-08-26T19:36:04.6068340Z 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-08-26T19:36:04.6069690Z 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-08-26T19:36:04.6070870Z 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-08-26T19:36:04.6072000Z 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-08-26T19:36:04.6073160Z 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-08-26T19:36:04.6074490Z 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-08-26T19:36:04.6075770Z 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-08-26T19:36:04.6076940Z 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-08-26T19:36:04.6078100Z 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-08-26T19:36:04.6079320Z 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-08-26T19:36:04.6080440Z 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-08-26T19:36:04.6082800Z 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-08-26T19:36:04.6083410Z 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-08-26T19:36:04.6084130Z 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-08-26T19:36:04.6085430Z 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-08-26T19:36:04.6086490Z 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-08-26T19:36:04.6088030Z 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-08-26T19:36:04.6089010Z 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-08-26T19:36:04.6090100Z 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-08-26T19:36:04.6091350Z 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-08-26T19:36:04.6092830Z 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-08-26T19:36:04.6093870Z 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-08-26T19:36:04.6095070Z 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-08-26T19:36:04.6096100Z 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-08-26T19:36:04.6097500Z 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-08-26T19:36:04.6098500Z 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-08-26T19:36:04.6100200Z 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-08-26T19:36:04.6101490Z 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-08-26T19:36:04.6102660Z 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-08-26T19:36:04.6103730Z 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-08-26T19:36:04.6105050Z 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-08-26T19:36:04.6106160Z 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-08-26T19:36:04.6107280Z 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-08-26T19:36:04.6108470Z 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-08-26T19:36:04.6109900Z 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-08-26T19:36:04.6110790Z 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-08-26T19:36:04.6112010Z 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-08-26T19:36:04.6113310Z 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-08-26T19:36:04.6114340Z 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-08-26T19:36:04.6115560Z 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-08-26T19:36:04.6116810Z 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-08-26T19:36:04.6118040Z 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-08-26T19:36:04.6119160Z 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-08-26T19:36:04.6120330Z 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-08-26T19:36:04.6121480Z 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-08-26T19:36:04.6122690Z 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-08-26T19:36:04.6123910Z 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-08-26T19:36:04.6125230Z 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-08-26T19:36:04.6126290Z 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-08-26T19:36:04.6127630Z 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-08-26T19:36:04.6128710Z 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-08-26T19:36:04.6129900Z 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-08-26T19:36:04.6131060Z 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-08-26T19:36:04.6132440Z 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-08-26T19:36:04.6133720Z 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-08-26T19:36:04.6134910Z 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-08-26T19:36:04.6136020Z 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-08-26T19:36:04.6137400Z 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-08-26T19:36:04.6138870Z 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-08-26T19:36:04.6139680Z 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-08-26T19:36:04.6140970Z 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-08-26T19:36:04.6141980Z 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-08-26T19:36:04.6143330Z 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-08-26T19:36:04.6144400Z 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-08-26T19:36:04.6145600Z 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-08-26T19:36:04.6146750Z 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-08-26T19:36:04.6148140Z 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-08-26T19:36:04.6149000Z 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-08-26T19:36:04.6150350Z 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-08-26T19:36:04.6151500Z 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-08-26T19:36:04.6152670Z 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-08-26T19:36:04.6153880Z 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-08-26T19:36:04.6155080Z 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-08-26T19:36:04.6156310Z 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-08-26T19:36:04.6157500Z 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-08-26T19:36:04.6158770Z 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-08-26T19:36:04.6159770Z 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-08-26T19:36:04.6161110Z 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-08-26T19:36:04.6162300Z 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-08-26T19:36:04.6163390Z 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-08-26T19:36:04.6164690Z 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-08-26T19:36:04.6165890Z 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-08-26T19:36:04.6167050Z 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-08-26T19:36:04.6168190Z 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-08-26T19:36:04.6169390Z 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-08-26T19:36:04.6170510Z 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-08-26T19:36:04.6171760Z 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-08-26T19:36:04.6172850Z 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-08-26T19:36:04.6174060Z 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-08-26T19:36:04.6175110Z 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-08-26T19:36:04.6176340Z 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-08-26T19:36:04.6177550Z 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-08-26T19:36:04.6178830Z 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-08-26T19:36:04.6179910Z 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-08-26T19:36:04.6181060Z 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-08-26T19:36:04.6182250Z 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-08-26T19:36:04.6183500Z 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-08-26T19:36:04.6184630Z 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-08-26T19:36:04.6185710Z 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-08-26T19:36:04.6186910Z 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-08-26T19:36:04.6188160Z 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-08-26T19:36:04.6189330Z 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-08-26T19:36:04.6190730Z 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-08-26T19:36:04.6191780Z 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-08-26T19:36:04.6192860Z 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-08-26T19:36:04.6194010Z 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-08-26T19:36:04.6195190Z 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-08-26T19:36:04.6196310Z 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-08-26T19:36:04.6197500Z 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-08-26T19:36:04.6198770Z 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-08-26T19:36:04.6200020Z 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-08-26T19:36:04.6201150Z 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-08-26T19:36:04.6202320Z 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-08-26T19:36:04.6203560Z 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-08-26T19:36:04.6204630Z 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-08-26T19:36:04.6205740Z 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-08-26T19:36:04.6206920Z 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-08-26T19:36:04.6208020Z 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-08-26T19:36:04.6209360Z 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-08-26T19:36:04.6210400Z 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-08-26T19:36:04.6211520Z 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-08-26T19:36:04.6212680Z 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-08-26T19:36:04.6214130Z 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-08-26T19:36:04.6215270Z 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-08-26T19:36:04.6216630Z 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-08-26T19:36:04.6217680Z 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-08-26T19:36:04.6218890Z 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-08-26T19:36:04.6220010Z 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-08-26T19:36:04.6221150Z 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-08-26T19:36:04.6222450Z 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-08-26T19:36:04.6223540Z 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-08-26T19:36:04.6224770Z 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-08-26T19:36:04.6226010Z 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-08-26T19:36:04.6227700Z 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-08-26T19:36:04.6229090Z 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-08-26T19:36:04.6230140Z 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-08-26T19:36:04.6231400Z 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-08-26T19:36:04.6232610Z 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-08-26T19:36:04.6233900Z 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-08-26T19:36:04.6235100Z 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-08-26T19:36:04.6236280Z 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-08-26T19:36:04.6237620Z 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-08-26T19:36:04.6238760Z 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-08-26T19:36:04.6239850Z 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-08-26T19:36:04.6241210Z 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-08-26T19:36:04.6242110Z 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-08-26T19:36:04.6243280Z 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-08-26T19:36:04.6244440Z 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-08-26T19:36:04.6245630Z 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-08-26T19:36:04.6246760Z 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-08-26T19:36:04.6247930Z 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-08-26T19:36:04.6249330Z 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-08-26T19:36:04.6250330Z 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-08-26T19:36:04.6251660Z 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-08-26T19:36:04.6253010Z 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-08-26T19:36:04.6254160Z 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-08-26T19:36:04.6255430Z 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-08-26T19:36:04.6256530Z 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-08-26T19:36:04.6257700Z 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-08-26T19:36:04.6258930Z 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-08-26T19:36:04.6260090Z 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-08-26T19:36:04.6261150Z 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-08-26T19:36:04.6262480Z 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-08-26T19:36:04.6263630Z 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-08-26T19:36:04.6265000Z 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-08-26T19:36:04.6266270Z 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-08-26T19:36:04.6267480Z 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-08-26T19:36:04.6268590Z 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-08-26T19:36:04.6269730Z 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-08-26T19:36:04.6270940Z 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-08-26T19:36:04.6272090Z 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-08-26T19:36:04.6273230Z 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-08-26T19:36:04.6274410Z 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-08-26T19:36:04.6275680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.6276830Z 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-08-26T19:36:04.6277900Z 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-08-26T19:36:04.6279050Z 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-08-26T19:36:04.6280230Z 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-08-26T19:36:04.6281430Z 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-08-26T19:36:04.6282660Z 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-08-26T19:36:04.6283780Z 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-08-26T19:36:04.6285100Z 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-08-26T19:36:04.6286200Z 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-08-26T19:36:04.6287380Z 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-08-26T19:36:04.6288570Z 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-08-26T19:36:04.6289840Z 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-08-26T19:36:04.6291110Z 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-08-26T19:36:04.6292170Z 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-08-26T19:36:04.6293320Z 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-08-26T19:36:04.6294630Z 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-08-26T19:36:04.6295790Z 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-08-26T19:36:04.6297050Z 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-08-26T19:36:04.6298170Z 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-08-26T19:36:04.6299540Z 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-08-26T19:36:04.6300600Z 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-08-26T19:36:04.6301700Z 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-08-26T19:36:04.6302960Z 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-08-26T19:36:04.6304120Z 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-08-26T19:36:04.6305440Z 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-08-26T19:36:04.6306680Z 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-08-26T19:36:04.6307840Z 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-08-26T19:36:04.6309010Z 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-08-26T19:36:04.6310250Z 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-08-26T19:36:04.6311440Z 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-08-26T19:36:04.6312570Z 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-08-26T19:36:04.6313700Z 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-08-26T19:36:04.6314770Z 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-08-26T19:36:04.6315980Z 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-08-26T19:36:04.6317210Z 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-08-26T19:36:04.6318360Z 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-08-26T19:36:04.6319470Z 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-08-26T19:36:04.6320680Z 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-08-26T19:36:04.6321980Z 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-08-26T19:36:04.6323160Z 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-08-26T19:36:04.6324750Z 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-08-26T19:36:04.6325630Z 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-08-26T19:36:04.6326810Z 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-08-26T19:36:04.6327950Z 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-08-26T19:36:04.6329200Z 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-08-26T19:36:04.6330320Z 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-08-26T19:36:04.6331560Z 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-08-26T19:36:04.6332780Z 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-08-26T19:36:04.6334010Z 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-08-26T19:36:04.6335110Z 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-08-26T19:36:04.6336370Z 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-08-26T19:36:04.6337510Z 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-08-26T19:36:04.6338680Z 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-08-26T19:36:04.6339880Z 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-08-26T19:36:04.6341110Z 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-08-26T19:36:04.6342330Z 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-08-26T19:36:04.6343500Z 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-08-26T19:36:04.6344610Z 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-08-26T19:36:04.6345710Z 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-08-26T19:36:04.6346960Z 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-08-26T19:36:04.6348100Z 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-08-26T19:36:04.6349320Z 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-08-26T19:36:04.6350370Z 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-08-26T19:36:04.6351500Z 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-08-26T19:36:04.6352680Z 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-08-26T19:36:04.6353880Z 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-08-26T19:36:04.6355080Z 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-08-26T19:36:04.6356190Z 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-08-26T19:36:04.6357410Z 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-08-26T19:36:04.6358590Z 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-08-26T19:36:04.6359800Z 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-08-26T19:36:04.6360940Z 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-08-26T19:36:04.6362030Z 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-08-26T19:36:04.6363190Z 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-08-26T19:36:04.6364330Z 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-08-26T19:36:04.6365580Z 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-08-26T19:36:04.6366870Z 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-08-26T19:36:04.6367900Z 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-08-26T19:36:04.6369010Z 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-08-26T19:36:04.6370300Z 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-08-26T19:36:04.6371480Z 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-08-26T19:36:04.6372610Z 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-08-26T19:36:04.6373830Z 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-08-26T19:36:04.6375060Z 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-08-26T19:36:04.6376130Z 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-08-26T19:36:04.6377320Z 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-08-26T19:36:04.6378620Z 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-08-26T19:36:04.6379780Z 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-08-26T19:36:04.6380920Z 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-08-26T19:36:04.6382120Z 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-08-26T19:36:04.6383170Z 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-08-26T19:36:04.6384360Z 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-08-26T19:36:04.6385620Z 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-08-26T19:36:04.6386730Z 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-08-26T19:36:04.6387870Z 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-08-26T19:36:04.6388970Z 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-08-26T19:36:04.6390260Z 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-08-26T19:36:04.6391430Z 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-08-26T19:36:04.6392860Z 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-08-26T19:36:04.6393900Z 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-08-26T19:36:04.6395270Z 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-08-26T19:36:04.6396260Z 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-08-26T19:36:04.6397370Z 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-08-26T19:36:04.6398630Z 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-08-26T19:36:04.6399820Z 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-08-26T19:36:04.6401090Z 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-08-26T19:36:04.6402170Z 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-08-26T19:36:04.6403350Z 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-08-26T19:36:04.6404530Z 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-08-26T19:36:04.6405810Z 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-08-26T19:36:04.6406920Z 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-08-26T19:36:04.6408100Z 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-08-26T19:36:04.6409340Z 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-08-26T19:36:04.6410530Z 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-08-26T19:36:04.6411660Z 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-08-26T19:36:04.6412860Z 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-08-26T19:36:04.6413990Z 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-08-26T19:36:04.6415230Z 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-08-26T19:36:04.6416390Z 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-08-26T19:36:04.6417610Z 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-08-26T19:36:04.6418740Z 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-08-26T19:36:04.6419870Z 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-08-26T19:36:04.6421130Z 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-08-26T19:36:04.6422380Z 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-08-26T19:36:04.6423460Z 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-08-26T19:36:04.6424680Z 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-08-26T19:36:04.6425810Z 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-08-26T19:36:04.6427180Z 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-08-26T19:36:04.6428240Z 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-08-26T19:36:04.6429470Z 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-08-26T19:36:04.6430740Z 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-08-26T19:36:04.6431880Z 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-08-26T19:36:04.6433050Z 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-08-26T19:36:04.6434190Z 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-08-26T19:36:04.6435360Z 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-08-26T19:36:04.6436480Z 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-08-26T19:36:04.6437850Z 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-08-26T19:36:04.6439000Z 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-08-26T19:36:04.6440160Z 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-08-26T19:36:04.6441300Z 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-08-26T19:36:04.6442660Z 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-08-26T19:36:04.6443750Z 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-08-26T19:36:04.6448860Z 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-08-26T19:36:04.6449370Z 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-08-26T19:36:04.6449740Z 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-08-26T19:36:04.6450110Z 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-08-26T19:36:04.6450440Z 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-08-26T19:36:04.6450840Z 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-08-26T19:36:04.6452100Z 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-08-26T19:36:04.6453200Z 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-08-26T19:36:04.6454500Z 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-08-26T19:36:04.6455410Z 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-08-26T19:36:04.6456720Z 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-08-26T19:36:04.6457860Z 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-08-26T19:36:04.6458960Z 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-08-26T19:36:04.6460100Z 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-08-26T19:36:04.6461680Z 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-08-26T19:36:04.6462590Z 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-08-26T19:36:04.6463940Z 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-08-26T19:36:04.6465030Z 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-08-26T19:36:04.6466360Z 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-08-26T19:36:04.6467990Z 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-08-26T19:36:04.6469560Z 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-08-26T19:36:04.6470900Z 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-08-26T19:36:04.6471750Z 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-08-26T19:36:04.6473060Z 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-08-26T19:36:04.6474310Z 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-08-26T19:36:04.6475200Z 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-08-26T19:36:04.6476560Z 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-08-26T19:36:04.6477870Z 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-08-26T19:36:04.6479180Z 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-08-26T19:36:04.6480310Z 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-08-26T19:36:04.6481460Z 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-08-26T19:36:04.6482740Z 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-08-26T19:36:04.6484020Z 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-08-26T19:36:04.6485210Z 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-08-26T19:36:04.6486510Z 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-08-26T19:36:04.6487730Z 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-08-26T19:36:04.6488770Z 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-08-26T19:36:04.6489990Z 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-08-26T19:36:04.6491430Z 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-08-26T19:36:04.6492470Z 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-08-26T19:36:04.6493510Z 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-08-26T19:36:04.6494770Z 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-08-26T19:36:04.6495950Z 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-08-26T19:36:04.6497070Z 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-08-26T19:36:04.6498290Z 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-08-26T19:36:04.6499500Z 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-08-26T19:36:04.6500620Z 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-08-26T19:36:04.6501730Z 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-08-26T19:36:04.6502840Z 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-08-26T19:36:04.6503980Z 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-08-26T19:36:04.6505180Z 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-08-26T19:36:04.6506280Z 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-08-26T19:36:04.6507450Z 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-08-26T19:36:04.6508710Z 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-08-26T19:36:04.6509710Z 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-08-26T19:36:04.6510970Z 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-08-26T19:36:04.6512160Z 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-08-26T19:36:04.6513390Z 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-08-26T19:36:04.6514550Z 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-08-26T19:36:04.6515670Z 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-08-26T19:36:04.6517170Z 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-08-26T19:36:04.6518290Z 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-08-26T19:36:04.6519260Z 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-08-26T19:36:04.6520480Z 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-08-26T19:36:04.6521530Z 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-08-26T19:36:04.6522880Z 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-08-26T19:36:04.6523940Z 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-08-26T19:36:04.6525260Z 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-08-26T19:36:04.6526390Z 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-08-26T19:36:04.6527580Z 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-08-26T19:36:04.6528890Z 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-08-26T19:36:04.6530010Z 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-08-26T19:36:04.6531380Z 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-08-26T19:36:04.6532510Z 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-08-26T19:36:04.6533840Z 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-08-26T19:36:04.6534960Z 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-08-26T19:36:04.6536070Z 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-08-26T19:36:04.6537270Z 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-08-26T19:36:04.6538530Z 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-08-26T19:36:04.6539630Z 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-08-26T19:36:04.6541040Z 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-08-26T19:36:04.6542330Z 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-08-26T19:36:04.6543270Z 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-08-26T19:36:04.6544580Z 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-08-26T19:36:04.6545710Z 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-08-26T19:36:04.6546910Z 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-08-26T19:36:04.6548090Z 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-08-26T19:36:04.6549280Z 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-08-26T19:36:04.6550430Z 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-08-26T19:36:04.6551620Z 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-08-26T19:36:04.6552720Z 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-08-26T19:36:04.6553910Z 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-08-26T19:36:04.6555150Z 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-08-26T19:36:04.6556300Z 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-08-26T19:36:04.6557620Z 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-08-26T19:36:04.6558680Z 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-08-26T19:36:04.6559940Z 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-08-26T19:36:04.6561420Z 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-08-26T19:36:04.6562460Z 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-08-26T19:36:04.6563580Z 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-08-26T19:36:04.6564800Z 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-08-26T19:36:04.6566040Z 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-08-26T19:36:04.6567220Z 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-08-26T19:36:04.6568470Z 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-08-26T19:36:04.6569630Z 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-08-26T19:36:04.6570670Z 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-08-26T19:36:04.6571890Z 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-08-26T19:36:04.6573110Z 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-08-26T19:36:04.6574300Z 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-08-26T19:36:04.6575650Z 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-08-26T19:36:04.6576600Z 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-08-26T19:36:04.6577730Z 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-08-26T19:36:04.6578980Z 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-08-26T19:36:04.6580030Z 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-08-26T19:36:04.6581400Z 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-08-26T19:36:04.6582560Z 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-08-26T19:36:04.6583720Z 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-08-26T19:36:04.6584940Z 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-08-26T19:36:04.6586100Z 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-08-26T19:36:04.6587220Z 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-08-26T19:36:04.6588440Z 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-08-26T19:36:04.6589650Z 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-08-26T19:36:04.6590760Z 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-08-26T19:36:04.6592020Z 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-08-26T19:36:04.6593170Z 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-08-26T19:36:04.6594500Z 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-08-26T19:36:04.6595660Z 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-08-26T19:36:04.6596840Z 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-08-26T19:36:04.6597990Z 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-08-26T19:36:04.6599210Z 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-08-26T19:36:04.6600340Z 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-08-26T19:36:04.6601540Z 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-08-26T19:36:04.6602730Z 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-08-26T19:36:04.6604010Z 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-08-26T19:36:04.6605230Z 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-08-26T19:36:04.6606500Z 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-08-26T19:36:04.6607720Z 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-08-26T19:36:04.6608890Z 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-08-26T19:36:04.6610210Z 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-08-26T19:36:04.6611560Z 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-08-26T19:36:04.6612630Z 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-08-26T19:36:04.6613760Z 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-08-26T19:36:04.6614950Z 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-08-26T19:36:04.6616140Z 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-08-26T19:36:04.6617450Z 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-08-26T19:36:04.6618970Z 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-08-26T19:36:04.6619810Z 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-08-26T19:36:04.6621170Z 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-08-26T19:36:04.6622340Z 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-08-26T19:36:04.6623410Z 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-08-26T19:36:04.6624610Z 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-08-26T19:36:04.6625790Z 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-08-26T19:36:04.6627090Z 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-08-26T19:36:04.6628160Z 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-08-26T19:36:04.6629580Z 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-08-26T19:36:04.6630940Z 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-08-26T19:36:04.6631900Z 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-08-26T19:36:04.6632990Z 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-08-26T19:36:04.6634290Z 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-08-26T19:36:04.6635400Z 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-08-26T19:36:04.6636570Z 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-08-26T19:36:04.6637730Z 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-08-26T19:36:04.6638890Z 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-08-26T19:36:04.6640030Z 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-08-26T19:36:04.6641200Z 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-08-26T19:36:04.6643190Z 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-08-26T19:36:04.6644250Z 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-08-26T19:36:04.6645600Z 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-08-26T19:36:04.6646670Z 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-08-26T19:36:04.6648160Z 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-08-26T19:36:04.6649390Z 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-08-26T19:36:04.6650510Z 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-08-26T19:36:04.6652120Z 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-08-26T19:36:04.6653410Z 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-08-26T19:36:04.6654370Z 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-08-26T19:36:04.6655300Z 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-08-26T19:36:04.6656430Z 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-08-26T19:36:04.6657680Z 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-08-26T19:36:04.6658850Z 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-08-26T19:36:04.6660180Z 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-08-26T19:36:04.6661300Z 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-08-26T19:36:04.6662540Z 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-08-26T19:36:04.6663650Z 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-08-26T19:36:04.6665180Z 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-08-26T19:36:04.6666310Z 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-08-26T19:36:04.6667490Z 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-08-26T19:36:04.6668640Z 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-08-26T19:36:04.6669830Z 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-08-26T19:36:04.6671140Z 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-08-26T19:36:04.6672230Z 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-08-26T19:36:04.6673360Z 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-08-26T19:36:04.6674480Z 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-08-26T19:36:04.6675820Z 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-08-26T19:36:04.6676780Z 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-08-26T19:36:04.6678040Z 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-08-26T19:36:04.6679150Z 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-08-26T19:36:04.6680290Z 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-08-26T19:36:04.6681520Z 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-08-26T19:36:04.6682750Z 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-08-26T19:36:04.6684020Z 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-08-26T19:36:04.6685080Z 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-08-26T19:36:04.6686450Z 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-08-26T19:36:04.6687460Z 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-08-26T19:36:04.6688670Z 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-08-26T19:36:04.6689790Z 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-08-26T19:36:04.6691020Z 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-08-26T19:36:04.6692240Z 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-08-26T19:36:04.6693360Z 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-08-26T19:36:04.6694510Z 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-08-26T19:36:04.6695760Z 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-08-26T19:36:04.6696920Z 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-08-26T19:36:04.6698130Z 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-08-26T19:36:04.6699450Z 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-08-26T19:36:04.6700570Z 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-08-26T19:36:04.6701700Z 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-08-26T19:36:04.6702890Z 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-08-26T19:36:04.6704020Z 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-08-26T19:36:04.6705180Z 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-08-26T19:36:04.6706390Z 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-08-26T19:36:04.6707560Z 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-08-26T19:36:04.6708730Z 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-08-26T19:36:04.6709880Z 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-08-26T19:36:04.6711050Z 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-08-26T19:36:04.6712230Z 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-08-26T19:36:04.6713420Z 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-08-26T19:36:04.6714660Z 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-08-26T19:36:04.6715780Z 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-08-26T19:36:04.6716940Z 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-08-26T19:36:04.6718190Z 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-08-26T19:36:04.6719430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.6720650Z 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-08-26T19:36:04.6721730Z 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-08-26T19:36:04.6722880Z 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-08-26T19:36:04.6724050Z 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-08-26T19:36:04.6725270Z 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-08-26T19:36:04.6726560Z 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-08-26T19:36:04.6727720Z 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-08-26T19:36:04.6728840Z 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-08-26T19:36:04.6730090Z 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-08-26T19:36:04.6731200Z 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-08-26T19:36:04.6732370Z 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-08-26T19:36:04.6733530Z 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-08-26T19:36:04.6734710Z 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-08-26T19:36:04.6735850Z 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-08-26T19:36:04.6737150Z 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-08-26T19:36:04.6738400Z 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-08-26T19:36:04.6739810Z 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-08-26T19:36:04.6740650Z 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-08-26T19:36:04.6741810Z 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-08-26T19:36:04.6743120Z 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-08-26T19:36:04.6744130Z 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-08-26T19:36:04.6745400Z 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-08-26T19:36:04.6746570Z 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-08-26T19:36:04.6747820Z 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-08-26T19:36:04.6749010Z 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-08-26T19:36:04.6750210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.6751350Z 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-08-26T19:36:04.6752580Z 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-08-26T19:36:04.6753910Z 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-08-26T19:36:04.6755040Z 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-08-26T19:36:04.6756170Z 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-08-26T19:36:04.6757490Z 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-08-26T19:36:04.6758800Z 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-08-26T19:36:04.6759930Z 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-08-26T19:36:04.6761130Z 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-08-26T19:36:04.6762250Z 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-08-26T19:36:04.6763470Z 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-08-26T19:36:04.6764680Z 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-08-26T19:36:04.6765840Z 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-08-26T19:36:04.6767200Z 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-08-26T19:36:04.6768220Z 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-08-26T19:36:04.6769550Z 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-08-26T19:36:04.6770680Z 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-08-26T19:36:04.6771920Z 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-08-26T19:36:04.6773090Z 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-08-26T19:36:04.6774320Z 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-08-26T19:36:04.6775340Z 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-08-26T19:36:04.6776680Z 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-08-26T19:36:04.6777840Z 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-08-26T19:36:04.6779220Z 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-08-26T19:36:04.6780320Z 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-08-26T19:36:04.6781600Z 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-08-26T19:36:04.6782860Z 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-08-26T19:36:04.6784030Z 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-08-26T19:36:04.6785290Z 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-08-26T19:36:04.6786510Z 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-08-26T19:36:04.6787760Z 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-08-26T19:36:04.6789020Z 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-08-26T19:36:04.6790240Z 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-08-26T19:36:04.6791350Z 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-08-26T19:36:04.6792720Z 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-08-26T19:36:04.6793570Z 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-08-26T19:36:04.6794770Z 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-08-26T19:36:04.6795880Z 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-08-26T19:36:04.6797050Z 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-08-26T19:36:04.6798430Z 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-08-26T19:36:04.6799570Z 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-08-26T19:36:04.6800780Z 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-08-26T19:36:04.6801940Z 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-08-26T19:36:04.6803180Z 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-08-26T19:36:04.6804760Z 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-08-26T19:36:04.6805810Z 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-08-26T19:36:04.6807030Z 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-08-26T19:36:04.6808250Z 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-08-26T19:36:04.6809390Z 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-08-26T19:36:04.6810610Z 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-08-26T19:36:04.6811830Z 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-08-26T19:36:04.6813150Z 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-08-26T19:36:04.6814330Z 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-08-26T19:36:04.6815540Z 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-08-26T19:36:04.6816810Z 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-08-26T19:36:04.6818030Z 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-08-26T19:36:04.6819210Z 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-08-26T19:36:04.6820440Z 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-08-26T19:36:04.6821640Z 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-08-26T19:36:04.6822830Z 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-08-26T19:36:04.6823990Z 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-08-26T19:36:04.6825290Z 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-08-26T19:36:04.6826430Z 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-08-26T19:36:04.6827630Z 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-08-26T19:36:04.6828920Z 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-08-26T19:36:04.6830110Z 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-08-26T19:36:04.6831440Z 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-08-26T19:36:04.6832640Z 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-08-26T19:36:04.6833840Z 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-08-26T19:36:04.6835080Z 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-08-26T19:36:04.6836220Z 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-08-26T19:36:04.6837460Z 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-08-26T19:36:04.6838710Z 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-08-26T19:36:04.6839770Z 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-08-26T19:36:04.6840980Z 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-08-26T19:36:04.6842360Z 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-08-26T19:36:04.6843500Z 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-08-26T19:36:04.6844680Z 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-08-26T19:36:04.6845800Z 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-08-26T19:36:04.6847050Z 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-08-26T19:36:04.6848150Z 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-08-26T19:36:04.6853740Z 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-08-26T19:36:04.6854510Z 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-08-26T19:36:04.6855270Z 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-08-26T19:36:04.6856160Z 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-08-26T19:36:04.6857000Z 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-08-26T19:36:04.6857780Z 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-08-26T19:36:04.6858640Z 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-08-26T19:36:04.6859490Z 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-08-26T19:36:04.6860330Z 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-08-26T19:36:04.6861180Z 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-08-26T19:36:04.6862070Z 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-08-26T19:36:04.6862880Z 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-08-26T19:36:04.6863910Z 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-08-26T19:36:04.6865130Z 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-08-26T19:36:04.6866320Z 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-08-26T19:36:04.6867480Z 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-08-26T19:36:04.6868710Z 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-08-26T19:36:04.6869780Z 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-08-26T19:36:04.6871010Z 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-08-26T19:36:04.6872070Z 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-08-26T19:36:04.6873270Z 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-08-26T19:36:04.6874420Z 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-08-26T19:36:04.6875520Z 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-08-26T19:36:04.6876740Z 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-08-26T19:36:04.6877950Z 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-08-26T19:36:04.6879160Z 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-08-26T19:36:04.6880270Z 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-08-26T19:36:04.6881440Z 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-08-26T19:36:04.6882580Z 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-08-26T19:36:04.6883850Z 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-08-26T19:36:04.6885000Z 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-08-26T19:36:04.6886100Z 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-08-26T19:36:04.6887360Z 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-08-26T19:36:04.6888520Z 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-08-26T19:36:04.6889670Z 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-08-26T19:36:04.6890900Z 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-08-26T19:36:04.6892020Z 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-08-26T19:36:04.6893350Z 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-08-26T19:36:04.6894490Z 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-08-26T19:36:04.6895620Z 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-08-26T19:36:04.6896800Z 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-08-26T19:36:04.6897920Z 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-08-26T19:36:04.6899260Z 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-08-26T19:36:04.6900390Z 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-08-26T19:36:04.6901500Z 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-08-26T19:36:04.6902720Z 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-08-26T19:36:04.6903790Z 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-08-26T19:36:04.6904990Z 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-08-26T19:36:04.6906160Z 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-08-26T19:36:04.6907310Z 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-08-26T19:36:04.6908620Z 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-08-26T19:36:04.6909670Z 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-08-26T19:36:04.6910880Z 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-08-26T19:36:04.6912110Z 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-08-26T19:36:04.6913170Z 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-08-26T19:36:04.6914320Z 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-08-26T19:36:04.6915590Z 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-08-26T19:36:04.6916800Z 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-08-26T19:36:04.6917890Z 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-08-26T19:36:04.6919020Z 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-08-26T19:36:04.6921320Z 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-08-26T19:36:04.6922550Z 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-08-26T19:36:04.6924200Z 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-08-26T19:36:04.6929760Z 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-08-26T19:36:04.6930840Z 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-08-26T19:36:04.6934620Z 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-08-26T19:36:04.6939330Z 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-08-26T19:36:04.6942210Z 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-08-26T19:36:04.6943530Z 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-08-26T19:36:04.6948620Z 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-08-26T19:36:04.6950340Z 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-08-26T19:36:04.6956760Z 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-08-26T19:36:04.6957680Z 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-08-26T19:36:04.6964320Z 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-08-26T19:36:04.6965230Z 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-08-26T19:36:04.6972900Z 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-08-26T19:36:04.6973730Z 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-08-26T19:36:04.6974760Z 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-08-26T19:36:04.6981290Z 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-08-26T19:36:04.6982100Z 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-08-26T19:36:04.6989450Z 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-08-26T19:36:04.6990340Z 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-08-26T19:36:04.6991500Z 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-08-26T19:36:04.6997650Z 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-08-26T19:36:04.7006430Z 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-08-26T19:36:04.7007250Z 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-08-26T19:36:04.7008440Z 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-08-26T19:36:04.7013940Z 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-08-26T19:36:04.7014950Z 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-08-26T19:36:04.7021980Z 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-08-26T19:36:04.7022910Z 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-08-26T19:36:04.7024050Z 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-08-26T19:36:04.7029640Z 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-08-26T19:36:04.7031440Z 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-08-26T19:36:04.7037450Z 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-08-26T19:36:04.7038260Z 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-08-26T19:36:04.7039740Z 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-08-26T19:36:04.7047200Z 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-08-26T19:36:04.7048180Z 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-08-26T19:36:04.7054800Z 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-08-26T19:36:04.7055760Z 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-08-26T19:36:04.7062700Z 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-08-26T19:36:04.7063700Z 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-08-26T19:36:04.7064890Z 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-08-26T19:36:04.7069920Z 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-08-26T19:36:04.7071740Z 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-08-26T19:36:04.7078520Z 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-08-26T19:36:04.7079320Z 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-08-26T19:36:04.7081350Z 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-08-26T19:36:04.7086490Z 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-08-26T19:36:04.7087310Z 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-08-26T19:36:04.7091220Z 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-08-26T19:36:04.7095810Z 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-08-26T19:36:04.7097190Z 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-08-26T19:36:04.7103000Z 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-08-26T19:36:04.7109510Z 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-08-26T19:36:04.7111310Z 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-08-26T19:36:04.7116800Z 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-08-26T19:36:04.7118040Z 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-08-26T19:36:04.7119790Z 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-08-26T19:36:04.7126360Z 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-08-26T19:36:04.7127140Z 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-08-26T19:36:04.7134920Z 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-08-26T19:36:04.7136070Z 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-08-26T19:36:04.7142830Z 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-08-26T19:36:04.7143660Z 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-08-26T19:36:04.7144850Z 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-08-26T19:36:04.7149880Z 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-08-26T19:36:04.7151700Z 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-08-26T19:36:04.7157750Z 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-08-26T19:36:04.7158670Z 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-08-26T19:36:04.7159830Z 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-08-26T19:36:04.7166450Z 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-08-26T19:36:04.7173720Z 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-08-26T19:36:04.7174770Z 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-08-26T19:36:04.7181770Z 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-08-26T19:36:04.7182730Z 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-08-26T19:36:04.7183900Z 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-08-26T19:36:04.7189380Z 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-08-26T19:36:04.7190680Z 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-08-26T19:36:04.7197310Z 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-08-26T19:36:04.7198210Z 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-08-26T19:36:04.7204820Z 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-08-26T19:36:04.7205720Z 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-08-26T19:36:04.7206800Z 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-08-26T19:36:04.7212720Z 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-08-26T19:36:04.7213770Z 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-08-26T19:36:04.7220340Z 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-08-26T19:36:04.7222510Z 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-08-26T19:36:04.7227250Z 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-08-26T19:36:04.7228040Z 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-08-26T19:36:04.7230880Z 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-08-26T19:36:04.7235580Z 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-08-26T19:36:04.7236550Z 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-08-26T19:36:04.7243140Z 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-08-26T19:36:04.7244750Z 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-08-26T19:36:04.7250990Z 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-08-26T19:36:04.7252500Z 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-08-26T19:36:04.7253730Z 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-08-26T19:36:04.7260620Z 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-08-26T19:36:04.7261520Z 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-08-26T19:36:04.7267990Z 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-08-26T19:36:04.7269440Z 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-08-26T19:36:04.7275750Z 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-08-26T19:36:04.7276700Z 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-08-26T19:36:04.7277800Z 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-08-26T19:36:04.7284490Z 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-08-26T19:36:04.7285420Z 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-08-26T19:36:04.7292820Z 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-08-26T19:36:04.7293720Z 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-08-26T19:36:04.7294930Z 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-08-26T19:36:04.7300880Z 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-08-26T19:36:04.7302070Z 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-08-26T19:36:04.7308330Z 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-08-26T19:36:04.7309290Z 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-08-26T19:36:04.7316450Z 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-08-26T19:36:04.7317510Z 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-08-26T19:36:04.7324510Z 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-08-26T19:36:04.7325330Z 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-08-26T19:36:04.7331970Z 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-08-26T19:36:04.7333160Z 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-08-26T19:36:04.7339960Z 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-08-26T19:36:04.7341800Z 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-08-26T19:36:04.7348340Z 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-08-26T19:36:04.7349120Z 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-08-26T19:36:04.7350640Z 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-08-26T19:36:04.7356320Z 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-08-26T19:36:04.7357220Z 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-08-26T19:36:04.7363750Z 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-08-26T19:36:04.7365570Z 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-08-26T19:36:04.7371770Z 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-08-26T19:36:04.7372820Z 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-08-26T19:36:04.7374180Z 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-08-26T19:36:04.7375250Z 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-08-26T19:36:04.7380680Z 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-08-26T19:36:04.7384320Z 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-08-26T19:36:04.7390000Z 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-08-26T19:36:04.7391350Z 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-08-26T19:36:04.7397550Z 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-08-26T19:36:04.7398400Z 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-08-26T19:36:04.7400150Z 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-08-26T19:36:04.7405980Z 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-08-26T19:36:04.7407100Z 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-08-26T19:36:04.7414490Z 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-08-26T19:36:04.7415290Z 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-08-26T19:36:04.7422750Z 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-08-26T19:36:04.7423730Z 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-08-26T19:36:04.7425210Z 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-08-26T19:36:04.7430750Z 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-08-26T19:36:04.7439930Z 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-08-26T19:36:04.7440790Z 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-08-26T19:36:04.7442220Z 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-08-26T19:36:04.7447930Z 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-08-26T19:36:04.7448990Z 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-08-26T19:36:04.7455650Z 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-08-26T19:36:04.7456720Z 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-08-26T19:36:04.7457930Z 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-08-26T19:36:04.7463820Z 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-08-26T19:36:04.7464760Z 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-08-26T19:36:04.7470730Z 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-08-26T19:36:04.7471950Z 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-08-26T19:36:04.7478900Z 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-08-26T19:36:04.7479880Z 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-08-26T19:36:04.7480970Z 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-08-26T19:36:04.7486130Z 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-08-26T19:36:04.7486960Z 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-08-26T19:36:04.7494190Z 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-08-26T19:36:04.7495160Z 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-08-26T19:36:04.7502860Z 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-08-26T19:36:04.7503790Z 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-08-26T19:36:04.7511180Z 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-08-26T19:36:04.7512120Z 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-08-26T19:36:04.7518160Z 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-08-26T19:36:04.7519670Z 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-08-26T19:36:04.7526280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.7527340Z 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-08-26T19:36:04.7533910Z 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-08-26T19:36:04.7535000Z 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-08-26T19:36:04.7542170Z 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-08-26T19:36:04.7543040Z 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-08-26T19:36:04.7544070Z 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-08-26T19:36:04.7550050Z 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-08-26T19:36:04.7551000Z 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-08-26T19:36:04.7557390Z 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-08-26T19:36:04.7558660Z 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-08-26T19:36:04.7565190Z 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-08-26T19:36:04.7566100Z 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-08-26T19:36:04.7567290Z 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-08-26T19:36:04.7572760Z 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-08-26T19:36:04.7573910Z 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-08-26T19:36:04.7580480Z 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-08-26T19:36:04.7582070Z 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-08-26T19:36:04.7588830Z 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-08-26T19:36:04.7589650Z 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-08-26T19:36:04.7590910Z 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-08-26T19:36:04.7596670Z 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-08-26T19:36:04.7597630Z 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-08-26T19:36:04.7603890Z 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-08-26T19:36:04.7605720Z 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-08-26T19:36:04.7611900Z 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-08-26T19:36:04.7612740Z 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-08-26T19:36:04.7613990Z 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-08-26T19:36:04.7619850Z 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-08-26T19:36:04.7620700Z 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-08-26T19:36:04.7623730Z 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-08-26T19:36:04.7629770Z 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-08-26T19:36:04.7632970Z 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-08-26T19:36:04.7633910Z 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-08-26T19:36:04.7637460Z 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-08-26T19:36:04.7641440Z 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-08-26T19:36:04.7645470Z 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-08-26T19:36:04.7648670Z 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-08-26T19:36:04.7653840Z 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-08-26T19:36:04.7654860Z 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-08-26T19:36:04.7657040Z 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-08-26T19:36:04.7662710Z 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-08-26T19:36:04.7666700Z 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-08-26T19:36:04.7670390Z 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-08-26T19:36:04.7675110Z 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-08-26T19:36:04.7679490Z 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-08-26T19:36:04.7684780Z 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-08-26T19:36:04.7685760Z 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-08-26T19:36:04.7688710Z 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-08-26T19:36:04.7690090Z 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-08-26T19:36:04.7697160Z 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-08-26T19:36:04.7698120Z 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-08-26T19:36:04.7705730Z 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-08-26T19:36:04.7706600Z 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-08-26T19:36:04.7707800Z 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-08-26T19:36:04.7713200Z 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-08-26T19:36:04.7714410Z 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-08-26T19:36:04.7716450Z 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-08-26T19:36:04.7721110Z 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-08-26T19:36:04.7725740Z 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-08-26T19:36:04.7731990Z 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-08-26T19:36:04.7733470Z 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-08-26T19:36:04.7739880Z 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-08-26T19:36:04.7740820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:04.7748230Z 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-08-26T19:36:04.7749580Z 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-08-26T19:36:04.7750920Z 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-08-26T19:36:04.7755600Z 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-08-26T19:36:04.7757830Z 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-08-26T19:36:04.7763390Z 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-08-26T19:36:04.7764880Z 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-08-26T19:36:04.7767480Z 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-08-26T19:36:04.7772780Z 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-08-26T19:36:04.7773660Z 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-08-26T19:36:04.7780520Z 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-08-26T19:36:04.7782800Z 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-08-26T19:36:04.7788060Z 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-08-26T19:36:04.7788830Z 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-08-26T19:36:04.7790650Z 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-08-26T19:36:04.7795580Z 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-08-26T19:36:04.7796450Z 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-08-26T19:36:04.7800640Z 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-08-26T19:36:04.7805210Z 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-08-26T19:36:04.7809520Z 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-08-26T19:36:04.7813270Z 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-08-26T19:36:04.7814090Z 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-08-26T19:36:04.7818590Z 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-08-26T19:36:04.7821760Z 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-08-26T19:36:04.7826030Z 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-08-26T19:36:04.7826960Z 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-08-26T19:36:04.7830700Z 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-08-26T19:36:04.7838780Z 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-08-26T19:36:04.7843140Z 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-08-26T19:36:04.7844060Z 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-08-26T19:36:04.7847880Z 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-08-26T19:36:04.7853170Z 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-08-26T19:36:04.7855180Z 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-08-26T19:36:04.7856440Z 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-08-26T19:36:04.7863190Z 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-08-26T19:36:04.7864030Z 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-08-26T19:36:04.7870540Z 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-08-26T19:36:04.7871460Z 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-08-26T19:36:04.7874060Z 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-08-26T19:36:04.7879180Z 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-08-26T19:36:04.7879940Z 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-08-26T19:36:04.7886320Z 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-08-26T19:36:04.7887720Z 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-08-26T19:36:04.7893830Z 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-08-26T19:36:04.7894690Z 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-08-26T19:36:04.7897350Z 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-08-26T19:36:04.7903290Z 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-08-26T19:36:04.7904270Z 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-08-26T19:36:04.7910860Z 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-08-26T19:36:04.7912290Z 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-08-26T19:36:04.7918400Z 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-08-26T19:36:04.7919370Z 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-08-26T19:36:04.7920420Z 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-08-26T19:36:04.7926470Z 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-08-26T19:36:04.7927540Z 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-08-26T19:36:04.7929280Z 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-08-26T19:36:04.7936560Z 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-08-26T19:36:04.7944080Z 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-08-26T19:36:04.7946450Z 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-08-26T19:36:04.7952460Z 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-08-26T19:36:04.7953320Z 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-08-26T19:36:04.7954470Z 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-08-26T19:36:04.7959740Z 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-08-26T19:36:04.7960680Z 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-08-26T19:36:04.7963220Z 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-08-26T19:36:04.7969010Z 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-08-26T19:36:04.7972310Z 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-08-26T19:36:04.7976480Z 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-08-26T19:36:04.7977340Z 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-08-26T19:36:04.7981680Z 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-08-26T19:36:04.7985300Z 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-08-26T19:36:04.7989280Z 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-08-26T19:36:04.7990110Z 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-08-26T19:36:04.7994510Z 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-08-26T19:36:04.7997920Z 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-08-26T19:36:04.8005840Z 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-08-26T19:36:04.8006690Z 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-08-26T19:36:04.8012920Z 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-08-26T19:36:04.8014010Z 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-08-26T19:36:04.8020850Z 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-08-26T19:36:04.8021660Z 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-08-26T19:36:04.8023000Z 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-08-26T19:36:04.8029550Z 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-08-26T19:36:04.8030670Z 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-08-26T19:36:04.8037420Z 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-08-26T19:36:04.8038730Z 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-08-26T19:36:04.8040050Z 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-08-26T19:36:04.8045840Z 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-08-26T19:36:04.8046720Z 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-08-26T19:36:04.8053980Z 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-08-26T19:36:04.8054990Z 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-08-26T19:36:04.8061790Z 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-08-26T19:36:04.8062650Z 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-08-26T19:36:04.8063810Z 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-08-26T19:36:04.8120640Z 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-08-26T19:36:04.8121000Z 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-08-26T19:36:04.8121320Z 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-08-26T19:36:04.8121640Z 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-08-26T19:36:04.8122030Z 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-08-26T19:36:04.8122340Z 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-08-26T19:36:04.8122760Z 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-08-26T19:36:04.8126190Z 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-08-26T19:36:04.8127050Z 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-08-26T19:36:04.8128320Z 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-08-26T19:36:04.8133880Z 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-08-26T19:36:04.8134730Z 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-08-26T19:36:04.8136130Z 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-08-26T19:36:04.8141590Z 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-08-26T19:36:04.8142650Z 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-08-26T19:36:04.8150560Z 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-08-26T19:36:04.8156960Z 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-08-26T19:36:04.8158020Z 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-08-26T19:36:04.8166740Z 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-08-26T19:36:04.8167570Z 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-08-26T19:36:04.8173150Z 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-08-26T19:36:04.8174250Z 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-08-26T19:36:04.8180240Z 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-08-26T19:36:04.8182040Z 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-08-26T19:36:04.8183380Z 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-08-26T19:36:04.8189630Z 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-08-26T19:36:04.8190600Z 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-08-26T19:36:04.8197310Z 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-08-26T19:36:04.8198040Z 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-08-26T19:36:04.8205380Z 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-08-26T19:36:04.8206480Z 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-08-26T19:36:04.8207470Z 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-08-26T19:36:04.8212820Z 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-08-26T19:36:04.8213840Z 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-08-26T19:36:04.8220640Z 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-08-26T19:36:04.8221890Z 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-08-26T19:36:04.8228750Z 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-08-26T19:36:04.8229690Z 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-08-26T19:36:04.8230840Z 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-08-26T19:36:04.8236220Z 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-08-26T19:36:04.8237090Z 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-08-26T19:36:04.8244240Z 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-08-26T19:36:04.8245350Z 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-08-26T19:36:04.8251840Z 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-08-26T19:36:04.8252670Z 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-08-26T19:36:04.8253790Z 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-08-26T19:36:04.8259510Z 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-08-26T19:36:04.8260350Z 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-08-26T19:36:04.8266710Z 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-08-26T19:36:04.8269170Z 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-08-26T19:36:04.8273870Z 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-08-26T19:36:04.8275080Z 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-08-26T19:36:04.8276880Z 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-08-26T19:36:04.8282670Z 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-08-26T19:36:04.8283840Z 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-08-26T19:36:04.8290370Z 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-08-26T19:36:04.8291350Z 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-08-26T19:36:04.8294970Z 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-08-26T19:36:04.8316410Z 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-08-26T19:36:04.8320540Z 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-08-26T19:36:04.8321440Z 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-08-26T19:36:04.8335510Z 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-08-26T19:36:04.8336230Z 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-08-26T19:36:04.8337540Z 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-08-26T19:36:04.8338630Z 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-08-26T19:36:04.8340630Z 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-08-26T19:36:04.8341770Z 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-08-26T19:36:04.8343050Z 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-08-26T19:36:04.8344290Z 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-08-26T19:36:04.8345460Z 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-08-26T19:36:04.8346690Z 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-08-26T19:36:04.8347800Z 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-08-26T19:36:04.8348990Z 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-08-26T19:36:04.8355510Z 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-08-26T19:36:04.8356620Z 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-08-26T19:36:04.8357870Z 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-08-26T19:36:04.8362520Z 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-08-26T19:36:04.8366360Z 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-08-26T19:36:04.8370430Z 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-08-26T19:36:04.8373940Z 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-08-26T19:36:04.8378540Z 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-08-26T19:36:04.8380170Z 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-08-26T19:36:04.8385090Z 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-08-26T19:36:04.8386110Z 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-08-26T19:36:04.8392420Z 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-08-26T19:36:04.8393240Z 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-08-26T19:36:04.8398750Z 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-08-26T19:36:04.8401120Z 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-08-26T19:36:04.8405980Z 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-08-26T19:36:04.8406810Z 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-08-26T19:36:04.8409780Z 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-08-26T19:36:04.8415360Z 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-08-26T19:36:04.8417990Z 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-08-26T19:36:04.8627770Z 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-08-26T19:36:04.8628660Z 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-08-26T19:36:04.8629830Z 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-08-26T19:36:04.8630970Z 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-08-26T19:36:04.8632190Z 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-08-26T19:36:04.8633340Z 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-08-26T19:36:04.8634600Z 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-08-26T19:36:04.8635850Z 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-08-26T19:36:04.8636930Z 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-08-26T19:36:04.8638130Z 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-08-26T19:36:04.8639380Z 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-08-26T19:36:04.8640500Z 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-08-26T19:36:04.8641660Z 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-08-26T19:36:04.8642910Z 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-08-26T19:36:04.8688020Z 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-08-26T19:36:04.8688890Z 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-08-26T19:36:04.8690280Z 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-08-26T19:36:04.8691590Z 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-08-26T19:36:04.8692890Z 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-08-26T19:36:04.8694180Z 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-08-26T19:36:04.8695400Z 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-08-26T19:36:04.8727460Z 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-08-26T19:36:04.8728560Z 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-08-26T19:36:04.8729750Z 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-08-26T19:36:04.8730870Z 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-08-26T19:36:04.8732010Z 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-08-26T19:36:04.8733210Z 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-08-26T19:36:04.8734310Z 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-08-26T19:36:04.8735520Z 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-08-26T19:36:04.8736670Z 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-08-26T19:36:04.8737730Z 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-08-26T19:36:04.8738890Z 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-08-26T19:36:04.8740050Z 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-08-26T19:36:04.8741220Z 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-08-26T19:36:04.8742550Z 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-08-26T19:36:04.8743690Z 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-08-26T19:36:04.8744850Z 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-08-26T19:36:04.8745990Z 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-08-26T19:36:04.8747110Z 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-08-26T19:36:04.8748220Z 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-08-26T19:36:04.8749340Z 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-08-26T19:36:04.8750470Z 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-08-26T19:36:04.8751650Z 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-08-26T19:36:04.8752900Z 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-08-26T19:36:04.8753990Z 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-08-26T19:36:04.8755090Z 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-08-26T19:36:04.8756310Z 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-08-26T19:36:04.8757470Z 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-08-26T19:36:04.8758580Z 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-08-26T19:36:04.8759770Z 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-08-26T19:36:04.8760940Z 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-08-26T19:36:04.8762320Z 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-08-26T19:36:04.8763420Z 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-08-26T19:36:04.8764590Z 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-08-26T19:36:04.8765620Z 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-08-26T19:36:04.8766790Z 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-08-26T19:36:04.8767890Z 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-08-26T19:36:04.8769070Z 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-08-26T19:36:04.8770340Z 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-08-26T19:36:04.8771460Z 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-08-26T19:36:04.8772670Z 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-08-26T19:36:04.8773780Z 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-08-26T19:36:04.8774930Z 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-08-26T19:36:04.8776060Z 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-08-26T19:36:04.8777260Z 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-08-26T19:36:04.8778500Z 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-08-26T19:36:04.8779850Z 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-08-26T19:36:04.8780930Z 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-08-26T19:36:04.8782020Z 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-08-26T19:36:04.8888590Z 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-08-26T19:36:04.8889810Z 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-08-26T19:36:04.8891090Z 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-08-26T19:36:05.1104900Z 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-08-26T19:36:05.1114840Z 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-08-26T19:36:05.1125730Z 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-08-26T19:36:05.1134700Z 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-08-26T19:36:05.1144500Z 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-08-26T19:36:05.1154410Z 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-08-26T19:36:05.1162950Z 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-08-26T19:36:05.1171850Z 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-08-26T19:36:05.1180480Z 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-08-26T19:36:05.1191240Z 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-08-26T19:36:05.1199910Z 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-08-26T19:36:05.1208920Z 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-08-26T19:36:05.1215690Z 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-08-26T19:36:05.1221660Z 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-08-26T19:36:05.1228000Z 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-08-26T19:36:05.1234360Z 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-08-26T19:36:05.1240810Z 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-08-26T19:36:05.1248030Z 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-08-26T19:36:05.1254110Z 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-08-26T19:36:05.1259860Z 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-08-26T19:36:05.1266970Z 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-08-26T19:36:05.1274140Z 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-08-26T19:36:05.1280210Z 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-08-26T19:36:05.1286210Z 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-08-26T19:36:05.1292510Z 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-08-26T19:36:05.1299690Z 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-08-26T19:36:05.1304930Z 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-08-26T19:36:05.1310070Z 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-08-26T19:36:05.1314760Z 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-08-26T19:36:05.1319800Z 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-08-26T19:36:05.1325140Z 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-08-26T19:36:05.1329650Z 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-08-26T19:36:05.1337270Z 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-08-26T19:36:05.1343250Z 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-08-26T19:36:05.1347800Z 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-08-26T19:36:05.1351680Z 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-08-26T19:36:05.1357460Z 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-08-26T19:36:05.1362320Z 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-08-26T19:36:05.1366810Z 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-08-26T19:36:05.1371420Z 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-08-26T19:36:05.1375390Z 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-08-26T19:36:05.1380060Z 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-08-26T19:36:05.1384370Z 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-08-26T19:36:05.1388750Z 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-08-26T19:36:05.1390150Z 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-08-26T19:36:05.1391460Z 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-08-26T19:36:05.1392790Z 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-08-26T19:36:05.1394130Z 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-08-26T19:36:05.1395260Z 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-08-26T19:36:05.1396450Z 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-08-26T19:36:05.1397780Z 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-08-26T19:36:05.1398910Z 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-08-26T19:36:05.1400130Z 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-08-26T19:36:05.1401330Z 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-08-26T19:36:05.1402560Z 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-08-26T19:36:05.1403800Z 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-08-26T19:36:05.1404970Z 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-08-26T19:36:05.1406110Z 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-08-26T19:36:05.1407370Z 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-08-26T19:36:05.1408650Z 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-08-26T19:36:05.1409790Z 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-08-26T19:36:05.1410880Z 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-08-26T19:36:05.1412430Z 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-08-26T19:36:05.1413540Z 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-08-26T19:36:05.1414580Z 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-08-26T19:36:05.1415730Z 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-08-26T19:36:05.1416890Z 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-08-26T19:36:05.1418190Z 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-08-26T19:36:05.1419320Z 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-08-26T19:36:05.1420560Z 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-08-26T19:36:05.1421770Z 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-08-26T19:36:05.1423000Z 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-08-26T19:36:05.1424080Z 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-08-26T19:36:05.1425250Z 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-08-26T19:36:05.1426480Z 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-08-26T19:36:05.1427660Z 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-08-26T19:36:05.1429010Z 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-08-26T19:36:05.1430240Z 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-08-26T19:36:05.1431320Z 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-08-26T19:36:05.1432550Z 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-08-26T19:36:05.1434160Z 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-08-26T19:36:05.1435420Z 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-08-26T19:36:05.1436650Z 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-08-26T19:36:05.1438020Z 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-08-26T19:36:05.1439380Z 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-08-26T19:36:05.1440700Z 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-08-26T19:36:05.1441980Z 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-08-26T19:36:05.1443320Z 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-08-26T19:36:05.1444520Z 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-08-26T19:36:05.1445750Z 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-08-26T19:36:05.1446970Z 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-08-26T19:36:05.1448180Z 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-08-26T19:36:05.1449480Z 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-08-26T19:36:05.1450710Z 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-08-26T19:36:05.1453040Z 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-08-26T19:36:05.1454430Z 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-08-26T19:36:05.1455760Z 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-08-26T19:36:05.1456960Z 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-08-26T19:36:05.1458410Z 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-08-26T19:36:05.1459790Z 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-08-26T19:36:05.1461310Z 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-08-26T19:36:05.1463100Z 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-08-26T19:36:05.1464750Z 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-08-26T19:36:05.1466080Z 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-08-26T19:36:05.1467440Z 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-08-26T19:36:05.1468990Z 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-08-26T19:36:05.1470420Z 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-08-26T19:36:05.1471760Z 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-08-26T19:36:05.1473040Z 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-08-26T19:36:05.1476110Z 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-08-26T19:36:05.1477670Z 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-08-26T19:36:05.1478830Z 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-08-26T19:36:05.1480180Z 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-08-26T19:36:05.1481580Z 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-08-26T19:36:05.1482870Z 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-08-26T19:36:05.1484190Z 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-08-26T19:36:05.1485340Z 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-08-26T19:36:05.1486490Z 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-08-26T19:36:05.1487900Z 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-08-26T19:36:05.1489270Z 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-08-26T19:36:05.1490650Z 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-08-26T19:36:05.1492010Z 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-08-26T19:36:05.1494720Z 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-08-26T19:36:05.1495750Z 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-08-26T19:36:05.1502720Z 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-08-26T19:36:05.1503830Z 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-08-26T19:36:05.1510190Z 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-08-26T19:36:05.1512050Z 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-08-26T19:36:05.1519090Z 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-08-26T19:36:05.1520240Z 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-08-26T19:36:05.1521430Z 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-08-26T19:36:05.1525620Z 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-08-26T19:36:05.1526860Z 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-08-26T19:36:05.1533080Z 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-08-26T19:36:05.1534280Z 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-08-26T19:36:05.1541370Z 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-08-26T19:36:05.1542440Z 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-08-26T19:36:05.1543610Z 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-08-26T19:36:05.1549550Z 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-08-26T19:36:05.1550550Z 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-08-26T19:36:05.1556810Z 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-08-26T19:36:05.1558390Z 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-08-26T19:36:05.1564170Z 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-08-26T19:36:05.1565360Z 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-08-26T19:36:05.1567090Z 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-08-26T19:36:05.1573060Z 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-08-26T19:36:05.1574170Z 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-08-26T19:36:05.1581460Z 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-08-26T19:36:05.1582480Z 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-08-26T19:36:05.1589620Z 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-08-26T19:36:05.1590610Z 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-08-26T19:36:05.1591950Z 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-08-26T19:36:05.1597130Z 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-08-26T19:36:05.1598440Z 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-08-26T19:36:05.1605240Z 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-08-26T19:36:05.1606280Z 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-08-26T19:36:05.1607540Z 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-08-26T19:36:05.1611890Z 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-08-26T19:36:05.1613790Z 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-08-26T19:36:05.1620290Z 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-08-26T19:36:05.1621620Z 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-08-26T19:36:05.1627900Z 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-08-26T19:36:05.1629160Z 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-08-26T19:36:05.1630610Z 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-08-26T19:36:05.1636870Z 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-08-26T19:36:05.1638260Z 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-08-26T19:36:05.1645120Z 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-08-26T19:36:05.1646790Z 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-08-26T19:36:05.1653690Z 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-08-26T19:36:05.1654900Z 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-08-26T19:36:05.1656310Z 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-08-26T19:36:05.1661310Z 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-08-26T19:36:05.1662640Z 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-08-26T19:36:05.1669760Z 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-08-26T19:36:05.1670850Z 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-08-26T19:36:05.1681170Z 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-08-26T19:36:05.1682140Z 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-08-26T19:36:05.1684620Z 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-08-26T19:36:05.1686020Z 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-08-26T19:36:05.1687350Z 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-08-26T19:36:05.1691510Z 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-08-26T19:36:05.1693470Z 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-08-26T19:36:05.1700210Z 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-08-26T19:36:05.1701430Z 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-08-26T19:36:05.1707950Z 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-08-26T19:36:05.1709510Z 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-08-26T19:36:05.1710710Z 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-08-26T19:36:05.1716280Z 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-08-26T19:36:05.1717570Z 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-08-26T19:36:05.1723650Z 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-08-26T19:36:05.1725190Z 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-08-26T19:36:05.1726270Z 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-08-26T19:36:05.1732980Z 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-08-26T19:36:05.1734320Z 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-08-26T19:36:05.1740830Z 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-08-26T19:36:05.1742180Z 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-08-26T19:36:05.1749080Z 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-08-26T19:36:05.1750440Z 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-08-26T19:36:05.1751830Z 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-08-26T19:36:05.1757000Z 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-08-26T19:36:05.1758370Z 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-08-26T19:36:05.1760320Z 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-08-26T19:36:05.1766430Z 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-08-26T19:36:05.1767990Z 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-08-26T19:36:05.1775370Z 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-08-26T19:36:05.1776550Z 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-08-26T19:36:05.1778030Z 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-08-26T19:36:05.1784240Z 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-08-26T19:36:05.1785470Z 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-08-26T19:36:05.1788890Z 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-08-26T19:36:05.1793910Z 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-08-26T19:36:05.1795540Z 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-08-26T19:36:05.1797150Z 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-08-26T19:36:05.1803630Z 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-08-26T19:36:05.1812460Z 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-08-26T19:36:05.1813610Z 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-08-26T19:36:05.1814890Z 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-08-26T19:36:05.1820490Z 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-08-26T19:36:05.1821740Z 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-08-26T19:36:05.1823040Z 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-08-26T19:36:05.1828120Z 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-08-26T19:36:05.1829650Z 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-08-26T19:36:05.1835670Z 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-08-26T19:36:05.1837190Z 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-08-26T19:36:05.1840580Z 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-08-26T19:36:05.1844610Z 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-08-26T19:36:05.1849890Z 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-08-26T19:36:05.1852070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.1853290Z 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-08-26T19:36:05.1859330Z 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-08-26T19:36:05.1860740Z 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-08-26T19:36:05.1865860Z 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-08-26T19:36:05.1867540Z 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-08-26T19:36:05.1873480Z 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-08-26T19:36:05.1874650Z 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-08-26T19:36:05.1876940Z 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-08-26T19:36:05.1881350Z 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-08-26T19:36:05.1884680Z 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-08-26T19:36:05.1889030Z 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-08-26T19:36:05.1890170Z 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-08-26T19:36:05.1893740Z 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-08-26T19:36:05.1898360Z 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-08-26T19:36:05.1902330Z 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-08-26T19:36:05.1906100Z 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-08-26T19:36:05.1907520Z 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-08-26T19:36:05.1912080Z 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-08-26T19:36:05.1915410Z 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-08-26T19:36:05.1918410Z 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-08-26T19:36:05.1919980Z 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-08-26T19:36:05.1924130Z 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-08-26T19:36:05.1927190Z 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-08-26T19:36:05.1932990Z 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-08-26T19:36:05.1935270Z 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-08-26T19:36:05.1940510Z 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-08-26T19:36:05.1941860Z 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-08-26T19:36:05.1944380Z 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-08-26T19:36:05.1949450Z 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-08-26T19:36:05.1950630Z 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-08-26T19:36:05.1956940Z 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-08-26T19:36:05.1958220Z 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-08-26T19:36:05.1963980Z 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-08-26T19:36:05.1965250Z 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-08-26T19:36:05.1967150Z 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-08-26T19:36:05.1974020Z 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-08-26T19:36:05.1975350Z 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-08-26T19:36:05.1981160Z 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-08-26T19:36:05.1983260Z 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-08-26T19:36:05.1988940Z 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-08-26T19:36:05.1990020Z 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-08-26T19:36:05.1991380Z 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-08-26T19:36:05.1996820Z 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-08-26T19:36:05.2000890Z 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-08-26T19:36:05.2005630Z 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-08-26T19:36:05.2008560Z 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-08-26T19:36:05.2013810Z 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-08-26T19:36:05.2014930Z 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-08-26T19:36:05.2017900Z 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-08-26T19:36:05.2022290Z 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-08-26T19:36:05.2024750Z 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-08-26T19:36:05.2026010Z 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-08-26T19:36:05.2031650Z 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-08-26T19:36:05.2033690Z 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-08-26T19:36:05.2037650Z 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-08-26T19:36:05.2041720Z 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-08-26T19:36:05.2045670Z 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-08-26T19:36:05.2049140Z 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-08-26T19:36:05.2050410Z 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-08-26T19:36:05.2055120Z 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-08-26T19:36:05.2059010Z 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-08-26T19:36:05.2062550Z 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-08-26T19:36:05.2063770Z 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-08-26T19:36:05.2067990Z 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-08-26T19:36:05.2071540Z 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-08-26T19:36:05.2076250Z 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-08-26T19:36:05.2077390Z 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-08-26T19:36:05.2080880Z 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-08-26T19:36:05.2085290Z 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-08-26T19:36:05.2088460Z 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-08-26T19:36:05.2093220Z 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-08-26T19:36:05.2094370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.2097010Z 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-08-26T19:36:05.2103050Z 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-08-26T19:36:05.2105360Z 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-08-26T19:36:05.2111210Z 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-08-26T19:36:05.2113370Z 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-08-26T19:36:05.2119660Z 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-08-26T19:36:05.2120750Z 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-08-26T19:36:05.2127750Z 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-08-26T19:36:05.2129020Z 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-08-26T19:36:05.2135370Z 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-08-26T19:36:05.2136340Z 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-08-26T19:36:05.2137510Z 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-08-26T19:36:05.2143870Z 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-08-26T19:36:05.2144730Z 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-08-26T19:36:05.2151840Z 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-08-26T19:36:05.2154080Z 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-08-26T19:36:05.2158940Z 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-08-26T19:36:05.2159850Z 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-08-26T19:36:05.2161050Z 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-08-26T19:36:05.2166080Z 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-08-26T19:36:05.2173190Z 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-08-26T19:36:05.2175370Z 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-08-26T19:36:05.2176620Z 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-08-26T19:36:05.2182310Z 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-08-26T19:36:05.2183580Z 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-08-26T19:36:05.2190670Z 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-08-26T19:36:05.2191660Z 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-08-26T19:36:05.2198400Z 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-08-26T19:36:05.2199310Z 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-08-26T19:36:05.2204380Z 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-08-26T19:36:05.2205250Z 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-08-26T19:36:05.2206580Z 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-08-26T19:36:05.2212510Z 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-08-26T19:36:05.2213330Z 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-08-26T19:36:05.2220330Z 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-08-26T19:36:05.2221090Z 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-08-26T19:36:05.2227510Z 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-08-26T19:36:05.2229080Z 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-08-26T19:36:05.2230420Z 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-08-26T19:36:05.2236630Z 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-08-26T19:36:05.2237490Z 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-08-26T19:36:05.2243980Z 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-08-26T19:36:05.2245270Z 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-08-26T19:36:05.2252090Z 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-08-26T19:36:05.2252970Z 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-08-26T19:36:05.2254300Z 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-08-26T19:36:05.2259180Z 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-08-26T19:36:05.2260660Z 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-08-26T19:36:05.2266350Z 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-08-26T19:36:05.2267770Z 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-08-26T19:36:05.2274730Z 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-08-26T19:36:05.2275510Z 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-08-26T19:36:05.2276900Z 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-08-26T19:36:05.2283690Z 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-08-26T19:36:05.2284610Z 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-08-26T19:36:05.2291810Z 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-08-26T19:36:05.2292690Z 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-08-26T19:36:05.2299890Z 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-08-26T19:36:05.2300970Z 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-08-26T19:36:05.2302230Z 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-08-26T19:36:05.2307640Z 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-08-26T19:36:05.2308790Z 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-08-26T19:36:05.2314440Z 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-08-26T19:36:05.2315710Z 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-08-26T19:36:05.2321970Z 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-08-26T19:36:05.2322860Z 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-08-26T19:36:05.2330250Z 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-08-26T19:36:05.2331110Z 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-08-26T19:36:05.2338050Z 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-08-26T19:36:05.2338980Z 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-08-26T19:36:05.2339990Z 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-08-26T19:36:05.2346420Z 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-08-26T19:36:05.2354440Z 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-08-26T19:36:05.2355320Z 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-08-26T19:36:05.2362160Z 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-08-26T19:36:05.2362980Z 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-08-26T19:36:05.2364220Z 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-08-26T19:36:05.2369470Z 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-08-26T19:36:05.2370790Z 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-08-26T19:36:05.2374270Z 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-08-26T19:36:05.2379330Z 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-08-26T19:36:05.2380260Z 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-08-26T19:36:05.2386670Z 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-08-26T19:36:05.2387970Z 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-08-26T19:36:05.2394890Z 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-08-26T19:36:05.2395830Z 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-08-26T19:36:05.2396890Z 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-08-26T19:36:05.2402600Z 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-08-26T19:36:05.2403840Z 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-08-26T19:36:05.2410170Z 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-08-26T19:36:05.2411620Z 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-08-26T19:36:05.2418820Z 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-08-26T19:36:05.2419720Z 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-08-26T19:36:05.2420940Z 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-08-26T19:36:05.2426980Z 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-08-26T19:36:05.2428000Z 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-08-26T19:36:05.2434750Z 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-08-26T19:36:05.2435700Z 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-08-26T19:36:05.2436950Z 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-08-26T19:36:05.2442600Z 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-08-26T19:36:05.2443790Z 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-08-26T19:36:05.2450280Z 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-08-26T19:36:05.2451640Z 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-08-26T19:36:05.2458240Z 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-08-26T19:36:05.2459040Z 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-08-26T19:36:05.2460190Z 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-08-26T19:36:05.2465970Z 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-08-26T19:36:05.2466850Z 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-08-26T19:36:05.2473740Z 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-08-26T19:36:05.2474840Z 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-08-26T19:36:05.2481350Z 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-08-26T19:36:05.2482870Z 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-08-26T19:36:05.2484020Z 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-08-26T19:36:05.2488920Z 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-08-26T19:36:05.2490860Z 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-08-26T19:36:05.2496280Z 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-08-26T19:36:05.2497700Z 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-08-26T19:36:05.2499760Z 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-08-26T19:36:05.2505570Z 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-08-26T19:36:05.2506590Z 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-08-26T19:36:05.2513700Z 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-08-26T19:36:05.2514540Z 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-08-26T19:36:05.2518270Z 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-08-26T19:36:05.2522500Z 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-08-26T19:36:05.2527770Z 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-08-26T19:36:05.2532030Z 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-08-26T19:36:05.2536990Z 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-08-26T19:36:05.2539180Z 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-08-26T19:36:05.2540310Z 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-08-26T19:36:05.2546180Z 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-08-26T19:36:05.2547060Z 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-08-26T19:36:05.2550800Z 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-08-26T19:36:05.2555270Z 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-08-26T19:36:05.2558510Z 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-08-26T19:36:05.2562770Z 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-08-26T19:36:05.2563660Z 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-08-26T19:36:05.2567950Z 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-08-26T19:36:05.2573090Z 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-08-26T19:36:05.2575260Z 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-08-26T19:36:05.2576360Z 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-08-26T19:36:05.2582570Z 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-08-26T19:36:05.2588790Z 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-08-26T19:36:05.2589640Z 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-08-26T19:36:05.2591070Z 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-08-26T19:36:05.2596920Z 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-08-26T19:36:05.2598180Z 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-08-26T19:36:05.2599400Z 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-08-26T19:36:05.2606030Z 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-08-26T19:36:05.2606930Z 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-08-26T19:36:05.2614360Z 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-08-26T19:36:05.2615280Z 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-08-26T19:36:05.2622710Z 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-08-26T19:36:05.2623640Z 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-08-26T19:36:05.2624860Z 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-08-26T19:36:05.2629950Z 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-08-26T19:36:05.2631320Z 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-08-26T19:36:05.2638470Z 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-08-26T19:36:05.2639810Z 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-08-26T19:36:05.2645940Z 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-08-26T19:36:05.2647260Z 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-08-26T19:36:05.2652980Z 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-08-26T19:36:05.2654440Z 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-08-26T19:36:05.2660990Z 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-08-26T19:36:05.2661900Z 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-08-26T19:36:05.2663210Z 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-08-26T19:36:05.2669540Z 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-08-26T19:36:05.2677310Z 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-08-26T19:36:05.2678830Z 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-08-26T19:36:05.2680270Z 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-08-26T19:36:05.2687510Z 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-08-26T19:36:05.2688470Z 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-08-26T19:36:05.2695190Z 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-08-26T19:36:05.2696020Z 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-08-26T19:36:05.2702690Z 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-08-26T19:36:05.2703680Z 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-08-26T19:36:05.2704840Z 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-08-26T19:36:05.2710650Z 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-08-26T19:36:05.2712110Z 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-08-26T19:36:05.2718320Z 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-08-26T19:36:05.2719130Z 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-08-26T19:36:05.2720370Z 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-08-26T19:36:05.2726360Z 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-08-26T19:36:05.2727440Z 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-08-26T19:36:05.2731100Z 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-08-26T19:36:05.2735880Z 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-08-26T19:36:05.2743410Z 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-08-26T19:36:05.2744380Z 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-08-26T19:36:05.2748240Z 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-08-26T19:36:05.2752770Z 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-08-26T19:36:05.2755820Z 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-08-26T19:36:05.2756820Z 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-08-26T19:36:05.2762540Z 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-08-26T19:36:05.2763690Z 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-08-26T19:36:05.2770280Z 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-08-26T19:36:05.2771090Z 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-08-26T19:36:05.2778740Z 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-08-26T19:36:05.2779730Z 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-08-26T19:36:05.2781060Z 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-08-26T19:36:05.2786480Z 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-08-26T19:36:05.2788670Z 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-08-26T19:36:05.2794730Z 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-08-26T19:36:05.2795710Z 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-08-26T19:36:05.2797140Z 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-08-26T19:36:05.2802460Z 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-08-26T19:36:05.2803520Z 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-08-26T19:36:05.2810430Z 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-08-26T19:36:05.2811830Z 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-08-26T19:36:05.2818870Z 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-08-26T19:36:05.2819770Z 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-08-26T19:36:05.2822700Z 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-08-26T19:36:05.2826570Z 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-08-26T19:36:05.2829690Z 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-08-26T19:36:05.2831210Z 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-08-26T19:36:05.2838700Z 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-08-26T19:36:05.2839610Z 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-08-26T19:36:05.2844280Z 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-08-26T19:36:05.2845250Z 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-08-26T19:36:05.2851950Z 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-08-26T19:36:05.2852890Z 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-08-26T19:36:05.2859560Z 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-08-26T19:36:05.2861160Z 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-08-26T19:36:05.2866840Z 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-08-26T19:36:05.2868270Z 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-08-26T19:36:05.2869800Z 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-08-26T19:36:05.2876710Z 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-08-26T19:36:05.2877880Z 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-08-26T19:36:05.2885060Z 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-08-26T19:36:05.2885990Z 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-08-26T19:36:05.2892770Z 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-08-26T19:36:05.2893850Z 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-08-26T19:36:05.2895000Z 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-08-26T19:36:05.2902870Z 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-08-26T19:36:05.2903850Z 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-08-26T19:36:05.2905110Z 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-08-26T19:36:05.2911230Z 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-08-26T19:36:05.2913420Z 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-08-26T19:36:05.2914530Z 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-08-26T19:36:05.2918230Z 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-08-26T19:36:05.2919120Z 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-08-26T19:36:05.2924290Z 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-08-26T19:36:05.2926590Z 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-08-26T19:36:05.2933000Z 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-08-26T19:36:05.2934060Z 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-08-26T19:36:05.2940220Z 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-08-26T19:36:05.2941040Z 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-08-26T19:36:05.2943020Z 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-08-26T19:36:05.2948880Z 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-08-26T19:36:05.2956380Z 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-08-26T19:36:05.2957530Z 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-08-26T19:36:05.2964670Z 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-08-26T19:36:05.2966020Z 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-08-26T19:36:05.2972240Z 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-08-26T19:36:05.2973690Z 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-08-26T19:36:05.2974780Z 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-08-26T19:36:05.2978950Z 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-08-26T19:36:05.2981260Z 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-08-26T19:36:05.2982490Z 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-08-26T19:36:05.2986980Z 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-08-26T19:36:05.2989250Z 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-08-26T19:36:05.2990120Z 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-08-26T19:36:05.2995840Z 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-08-26T19:36:05.2997280Z 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-08-26T19:36:05.3004210Z 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-08-26T19:36:05.3011150Z 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-08-26T19:36:05.3012020Z 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-08-26T19:36:05.3018630Z 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-08-26T19:36:05.3019470Z 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-08-26T19:36:05.3020580Z 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-08-26T19:36:05.3026320Z 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-08-26T19:36:05.3027160Z 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-08-26T19:36:05.3034190Z 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-08-26T19:36:05.3035010Z 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-08-26T19:36:05.3037100Z 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-08-26T19:36:05.3042660Z 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-08-26T19:36:05.3043580Z 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-08-26T19:36:05.3049850Z 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-08-26T19:36:05.3051180Z 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-08-26T19:36:05.3057380Z 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-08-26T19:36:05.3058340Z 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-08-26T19:36:05.3059460Z 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-08-26T19:36:05.3066480Z 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-08-26T19:36:05.3067450Z 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-08-26T19:36:05.3073490Z 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-08-26T19:36:05.3074980Z 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-08-26T19:36:05.3081030Z 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-08-26T19:36:05.3082570Z 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-08-26T19:36:05.3083960Z 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-08-26T19:36:05.3088660Z 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-08-26T19:36:05.3089680Z 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-08-26T19:36:05.3095930Z 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-08-26T19:36:05.3097940Z 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-08-26T19:36:05.3103560Z 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-08-26T19:36:05.3105000Z 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-08-26T19:36:05.3106860Z 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-08-26T19:36:05.3112830Z 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-08-26T19:36:05.3113760Z 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-08-26T19:36:05.3120390Z 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-08-26T19:36:05.3121710Z 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-08-26T19:36:05.3128290Z 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-08-26T19:36:05.3129170Z 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-08-26T19:36:05.3130210Z 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-08-26T19:36:05.3135810Z 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-08-26T19:36:05.3136570Z 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-08-26T19:36:05.3143680Z 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-08-26T19:36:05.3144600Z 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-08-26T19:36:05.3153060Z 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-08-26T19:36:05.3153920Z 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-08-26T19:36:05.3158760Z 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-08-26T19:36:05.3161590Z 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-08-26T19:36:05.3166880Z 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-08-26T19:36:05.3170620Z 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-08-26T19:36:05.3176650Z 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-08-26T19:36:05.3178680Z 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-08-26T19:36:05.3184440Z 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-08-26T19:36:05.3185380Z 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-08-26T19:36:05.3186340Z 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-08-26T19:36:05.3192500Z 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-08-26T19:36:05.3193300Z 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-08-26T19:36:05.3199970Z 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-08-26T19:36:05.3201360Z 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-08-26T19:36:05.3207100Z 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-08-26T19:36:05.3208470Z 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-08-26T19:36:05.3209690Z 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-08-26T19:36:05.3216030Z 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-08-26T19:36:05.3216980Z 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-08-26T19:36:05.3224180Z 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-08-26T19:36:05.3225030Z 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-08-26T19:36:05.3232500Z 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-08-26T19:36:05.3233330Z 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-08-26T19:36:05.3234600Z 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-08-26T19:36:05.3240570Z 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-08-26T19:36:05.3241860Z 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-08-26T19:36:05.3248660Z 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-08-26T19:36:05.3249610Z 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-08-26T19:36:05.3250770Z 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-08-26T19:36:05.3255960Z 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-08-26T19:36:05.3257450Z 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-08-26T19:36:05.3264340Z 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-08-26T19:36:05.3265210Z 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-08-26T19:36:05.3266530Z 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-08-26T19:36:05.3273070Z 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-08-26T19:36:05.3274050Z 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-08-26T19:36:05.3280800Z 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-08-26T19:36:05.3281700Z 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-08-26T19:36:05.3289170Z 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-08-26T19:36:05.3290140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.3291250Z 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-08-26T19:36:05.3296880Z 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-08-26T19:36:05.3298310Z 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-08-26T19:36:05.3304760Z 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-08-26T19:36:05.3305660Z 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-08-26T19:36:05.3306790Z 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-08-26T19:36:05.3312600Z 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-08-26T19:36:05.3314040Z 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-08-26T19:36:05.3319870Z 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-08-26T19:36:05.3321360Z 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-08-26T19:36:05.3548480Z 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-08-26T19:36:05.3549370Z 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-08-26T19:36:05.3550590Z 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-08-26T19:36:05.3551800Z 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-08-26T19:36:05.3552940Z 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-08-26T19:36:05.3554080Z 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-08-26T19:36:05.3555300Z 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-08-26T19:36:05.3556440Z 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-08-26T19:36:05.3557590Z 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-08-26T19:36:05.3558690Z 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-08-26T19:36:05.3559950Z 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-08-26T19:36:05.3561130Z 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-08-26T19:36:05.3562240Z 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-08-26T19:36:05.3563400Z 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-08-26T19:36:05.3564680Z 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-08-26T19:36:05.3565750Z 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-08-26T19:36:05.3566910Z 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-08-26T19:36:05.3568000Z 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-08-26T19:36:05.3569170Z 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-08-26T19:36:05.3570390Z 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-08-26T19:36:05.3571490Z 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-08-26T19:36:05.3572800Z 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-08-26T19:36:05.3574000Z 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-08-26T19:36:05.3575260Z 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-08-26T19:36:05.3576520Z 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-08-26T19:36:05.3577780Z 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-08-26T19:36:05.3579040Z 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-08-26T19:36:05.3580340Z 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-08-26T19:36:05.3581510Z 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-08-26T19:36:05.3582840Z 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-08-26T19:36:05.3584020Z 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-08-26T19:36:05.3585420Z 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-08-26T19:36:05.3586410Z 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-08-26T19:36:05.3587710Z 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-08-26T19:36:05.3685280Z 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-08-26T19:36:05.3686150Z 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-08-26T19:36:05.3687310Z 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-08-26T19:36:05.3688860Z 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-08-26T19:36:05.3689700Z 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-08-26T19:36:05.3690810Z 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-08-26T19:36:05.3692080Z 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-08-26T19:36:05.3693140Z 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-08-26T19:36:05.3694380Z 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-08-26T19:36:05.3695550Z 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-08-26T19:36:05.3696670Z 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-08-26T19:36:05.3700470Z 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-08-26T19:36:05.3700860Z 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-08-26T19:36:05.3701210Z 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-08-26T19:36:05.3702050Z 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-08-26T19:36:05.3702880Z 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-08-26T19:36:05.3704110Z 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-08-26T19:36:05.3705190Z 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-08-26T19:36:05.3706280Z 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-08-26T19:36:05.3707540Z 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-08-26T19:36:05.3708720Z 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-08-26T19:36:05.3709910Z 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-08-26T19:36:05.3711210Z 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-08-26T19:36:05.3712350Z 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-08-26T19:36:05.3713420Z 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-08-26T19:36:05.3714700Z 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-08-26T19:36:05.3715750Z 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-08-26T19:36:05.3716960Z 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-08-26T19:36:05.3718070Z 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-08-26T19:36:05.3719160Z 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-08-26T19:36:05.3720360Z 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-08-26T19:36:05.3721510Z 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-08-26T19:36:05.3722770Z 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-08-26T19:36:05.3723820Z 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-08-26T19:36:05.3724900Z 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-08-26T19:36:05.3726100Z 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-08-26T19:36:05.3727280Z 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-08-26T19:36:05.3728460Z 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-08-26T19:36:05.3729540Z 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-08-26T19:36:05.3730650Z 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-08-26T19:36:05.3731800Z 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-08-26T19:36:05.3732960Z 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-08-26T19:36:05.3734110Z 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-08-26T19:36:05.3735260Z 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-08-26T19:36:05.3736410Z 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-08-26T19:36:05.3737620Z 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-08-26T19:36:05.3738770Z 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-08-26T19:36:05.3739960Z 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-08-26T19:36:05.3741080Z 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-08-26T19:36:05.3742440Z 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-08-26T19:36:05.3743550Z 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-08-26T19:36:05.3744760Z 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-08-26T19:36:05.3745990Z 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-08-26T19:36:05.3747450Z 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-08-26T19:36:05.3748210Z 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-08-26T19:36:05.3749390Z 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-08-26T19:36:05.3750540Z 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-08-26T19:36:05.3751740Z 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-08-26T19:36:05.3752880Z 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-08-26T19:36:05.3754070Z 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-08-26T19:36:05.3755140Z 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-08-26T19:36:05.3756340Z 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-08-26T19:36:05.3757530Z 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-08-26T19:36:05.3758800Z 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-08-26T19:36:05.3759860Z 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-08-26T19:36:05.3760980Z 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-08-26T19:36:05.3762220Z 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-08-26T19:36:05.3763460Z 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-08-26T19:36:05.3769060Z 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-08-26T19:36:05.3769540Z 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-08-26T19:36:05.3769920Z 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-08-26T19:36:05.3770310Z 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-08-26T19:36:05.3770730Z 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-08-26T19:36:05.3771090Z 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-08-26T19:36:05.3774710Z 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-08-26T19:36:05.3776240Z 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-08-26T19:36:05.3783520Z 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-08-26T19:36:05.3784480Z 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-08-26T19:36:05.3785520Z 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-08-26T19:36:05.3791610Z 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-08-26T19:36:05.3792460Z 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-08-26T19:36:05.3813250Z 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-08-26T19:36:05.3817520Z 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-08-26T19:36:05.3821870Z 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-08-26T19:36:05.3838770Z 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-08-26T19:36:05.3839430Z 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-08-26T19:36:05.3840750Z 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-08-26T19:36:05.3841930Z 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-08-26T19:36:05.3843910Z 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-08-26T19:36:05.3845070Z 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-08-26T19:36:05.3846580Z 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-08-26T19:36:05.3847480Z 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-08-26T19:36:05.3848760Z 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-08-26T19:36:05.3850130Z 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-08-26T19:36:05.3851210Z 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-08-26T19:36:05.3852520Z 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-08-26T19:36:05.3853670Z 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-08-26T19:36:05.3854990Z 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-08-26T19:36:05.3856120Z 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-08-26T19:36:05.3857370Z 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-08-26T19:36:05.3858770Z 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-08-26T19:36:05.3864050Z 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-08-26T19:36:05.3865000Z 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-08-26T19:36:05.3870120Z 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-08-26T19:36:05.3874780Z 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-08-26T19:36:05.3875500Z 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-08-26T19:36:05.3880660Z 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-08-26T19:36:05.3881800Z 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-08-26T19:36:05.3887360Z 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-08-26T19:36:05.3892370Z 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-08-26T19:36:05.3893420Z 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-08-26T19:36:05.3897710Z 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-08-26T19:36:05.3898550Z 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-08-26T19:36:05.3905200Z 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-08-26T19:36:05.3905910Z 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-08-26T19:36:05.3912060Z 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-08-26T19:36:05.3912900Z 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-08-26T19:36:05.3918020Z 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-08-26T19:36:05.3919400Z 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-08-26T19:36:05.3926220Z 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-08-26T19:36:05.3930760Z 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-08-26T19:36:05.3932750Z 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-08-26T19:36:05.3938120Z 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-08-26T19:36:05.3940060Z 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-08-26T19:36:05.3944820Z 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-08-26T19:36:05.3945580Z 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-08-26T19:36:05.3951940Z 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-08-26T19:36:05.3953310Z 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-08-26T19:36:05.4166950Z 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-08-26T19:36:05.4167860Z 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-08-26T19:36:05.4191580Z 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-08-26T19:36:05.4192480Z 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-08-26T19:36:05.4193860Z 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-08-26T19:36:05.4194910Z 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-08-26T19:36:05.4209430Z 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-08-26T19:36:05.4210120Z 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-08-26T19:36:05.4225070Z 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-08-26T19:36:05.4225990Z 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-08-26T19:36:05.4238840Z 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-08-26T19:36:05.4239750Z 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-08-26T19:36:05.4240990Z 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-08-26T19:36:05.4254840Z 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-08-26T19:36:05.4255690Z 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-08-26T19:36:05.4268580Z 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-08-26T19:36:05.4269310Z 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-08-26T19:36:05.4270450Z 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-08-26T19:36:05.4271650Z 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-08-26T19:36:05.4272780Z 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-08-26T19:36:05.4274020Z 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-08-26T19:36:05.4275300Z 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-08-26T19:36:05.4276510Z 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-08-26T19:36:05.4277560Z 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-08-26T19:36:05.4278640Z 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-08-26T19:36:05.4279860Z 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-08-26T19:36:05.4281070Z 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-08-26T19:36:05.4282260Z 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-08-26T19:36:05.4283360Z 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-08-26T19:36:05.4284590Z 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-08-26T19:36:05.4285810Z 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-08-26T19:36:05.4287010Z 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-08-26T19:36:05.4288180Z 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-08-26T19:36:05.4289610Z 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-08-26T19:36:05.4290700Z 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-08-26T19:36:05.4291850Z 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-08-26T19:36:05.4292920Z 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-08-26T19:36:05.4294190Z 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-08-26T19:36:05.4295330Z 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-08-26T19:36:05.4296650Z 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-08-26T19:36:05.4297730Z 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-08-26T19:36:05.4298970Z 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-08-26T19:36:05.4300200Z 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-08-26T19:36:05.4301410Z 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-08-26T19:36:05.4303430Z 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-08-26T19:36:05.4304090Z 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-08-26T19:36:05.4305330Z 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-08-26T19:36:05.4306500Z 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-08-26T19:36:05.4307830Z 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-08-26T19:36:05.4308910Z 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-08-26T19:36:05.4310020Z 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-08-26T19:36:05.4311190Z 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-08-26T19:36:05.4312470Z 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-08-26T19:36:05.4313710Z 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-08-26T19:36:05.4314800Z 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-08-26T19:36:05.4316060Z 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-08-26T19:36:05.4317120Z 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-08-26T19:36:05.4318310Z 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-08-26T19:36:05.4319440Z 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-08-26T19:36:05.4320610Z 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-08-26T19:36:05.4321960Z 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-08-26T19:36:05.4323070Z 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-08-26T19:36:05.4324300Z 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-08-26T19:36:05.4325550Z 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-08-26T19:36:05.4326920Z 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-08-26T19:36:05.4328130Z 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-08-26T19:36:05.4329250Z 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-08-26T19:36:05.4330440Z 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-08-26T19:36:05.4331600Z 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-08-26T19:36:05.4332830Z 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-08-26T19:36:05.4334140Z 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-08-26T19:36:05.4335240Z 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-08-26T19:36:05.4336430Z 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-08-26T19:36:05.4337540Z 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-08-26T19:36:05.4338670Z 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-08-26T19:36:05.4339830Z 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-08-26T19:36:05.4340990Z 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-08-26T19:36:05.4372340Z 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-08-26T19:36:05.4373130Z 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-08-26T19:36:05.4374330Z 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-08-26T19:36:05.4375490Z 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-08-26T19:36:05.4376640Z 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-08-26T19:36:05.4377930Z 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-08-26T19:36:05.4493690Z 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-08-26T19:36:05.4494500Z 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-08-26T19:36:05.4495680Z 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-08-26T19:36:05.4496880Z 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-08-26T19:36:05.4498140Z 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-08-26T19:36:05.4499280Z 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-08-26T19:36:05.4500550Z 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-08-26T19:36:05.4501660Z 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-08-26T19:36:05.4502880Z 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-08-26T19:36:05.4516740Z 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-08-26T19:36:05.4517590Z 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-08-26T19:36:05.4518760Z 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-08-26T19:36:05.4519960Z 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-08-26T19:36:05.4521110Z 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-08-26T19:36:05.4522390Z 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-08-26T19:36:05.4523490Z 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-08-26T19:36:05.4524840Z 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-08-26T19:36:05.4525940Z 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-08-26T19:36:05.4551360Z 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-08-26T19:36:05.4552180Z 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-08-26T19:36:05.4553430Z 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-08-26T19:36:05.4554470Z 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-08-26T19:36:05.4555690Z 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-08-26T19:36:05.4556810Z 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-08-26T19:36:05.4557890Z 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-08-26T19:36:05.4559060Z 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-08-26T19:36:05.4560250Z 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-08-26T19:36:05.4561350Z 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-08-26T19:36:05.4585400Z 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-08-26T19:36:05.4586150Z 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-08-26T19:36:05.4587520Z 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-08-26T19:36:05.4588490Z 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-08-26T19:36:05.4589710Z 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-08-26T19:36:05.4590840Z 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-08-26T19:36:05.4592010Z 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-08-26T19:36:05.4593180Z 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-08-26T19:36:05.4594460Z 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-08-26T19:36:05.4595650Z 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-08-26T19:36:05.4596760Z 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-08-26T19:36:05.4597940Z 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-08-26T19:36:05.4599010Z 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-08-26T19:36:05.4600250Z 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-08-26T19:36:05.4601390Z 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-08-26T19:36:05.4602580Z 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-08-26T19:36:05.4603780Z 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-08-26T19:36:05.4604970Z 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-08-26T19:36:05.4606230Z 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-08-26T19:36:05.4607380Z 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-08-26T19:36:05.4608530Z 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-08-26T19:36:05.4609760Z 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-08-26T19:36:05.4611040Z 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-08-26T19:36:05.4612350Z 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-08-26T19:36:05.4613550Z 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-08-26T19:36:05.4614680Z 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-08-26T19:36:05.4615960Z 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-08-26T19:36:05.4617300Z 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-08-26T19:36:05.4724960Z 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-08-26T19:36:05.4725750Z 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-08-26T19:36:05.4726970Z 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-08-26T19:36:05.4728450Z 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-08-26T19:36:05.4729200Z 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-08-26T19:36:05.4730390Z 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-08-26T19:36:05.4731470Z 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-08-26T19:36:05.4732570Z 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-08-26T19:36:05.4733890Z 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-08-26T19:36:05.4734970Z 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-08-26T19:36:05.4736150Z 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-08-26T19:36:05.4737210Z 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-08-26T19:36:05.4738380Z 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-08-26T19:36:05.4739650Z 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-08-26T19:36:05.4740660Z 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-08-26T19:36:05.4741840Z 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-08-26T19:36:05.4742970Z 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-08-26T19:36:05.4744350Z 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-08-26T19:36:05.4745500Z 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-08-26T19:36:05.4746620Z 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-08-26T19:36:05.4747810Z 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-08-26T19:36:05.4749010Z 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-08-26T19:36:05.4750350Z 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-08-26T19:36:05.4751630Z 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-08-26T19:36:05.4752770Z 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-08-26T19:36:05.4753910Z 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-08-26T19:36:05.4755080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.4756170Z 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-08-26T19:36:05.4757270Z 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-08-26T19:36:05.4758410Z 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-08-26T19:36:05.4759590Z 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-08-26T19:36:05.4760650Z 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-08-26T19:36:05.4761760Z 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-08-26T19:36:05.4762970Z 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-08-26T19:36:05.4764110Z 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-08-26T19:36:05.4765430Z 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-08-26T19:36:05.4766500Z 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-08-26T19:36:05.4767620Z 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-08-26T19:36:05.4768880Z 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-08-26T19:36:05.4770090Z 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-08-26T19:36:05.4771320Z 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-08-26T19:36:05.4792310Z 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-08-26T19:36:05.4793190Z 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-08-26T19:36:05.4794410Z 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-08-26T19:36:05.4795590Z 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-08-26T19:36:05.4796850Z 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-08-26T19:36:05.4797950Z 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-08-26T19:36:05.4799140Z 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-08-26T19:36:05.4800420Z 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-08-26T19:36:05.4801610Z 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-08-26T19:36:05.4802770Z 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-08-26T19:36:05.4803890Z 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-08-26T19:36:05.4805020Z 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-08-26T19:36:05.4806150Z 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-08-26T19:36:05.4807310Z 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-08-26T19:36:05.4808480Z 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-08-26T19:36:05.4809700Z 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-08-26T19:36:05.4810820Z 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-08-26T19:36:05.4811990Z 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-08-26T19:36:05.4813100Z 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-08-26T19:36:05.4814370Z 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-08-26T19:36:05.4815480Z 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-08-26T19:36:05.4816680Z 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-08-26T19:36:05.4817840Z 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-08-26T19:36:05.4875330Z 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-08-26T19:36:05.4876160Z 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-08-26T19:36:05.4877290Z 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-08-26T19:36:05.4878610Z 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-08-26T19:36:05.4879790Z 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-08-26T19:36:05.4881010Z 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-08-26T19:36:05.4882160Z 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-08-26T19:36:05.4883360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.4884680Z 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-08-26T19:36:05.4885890Z 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-08-26T19:36:05.4887000Z 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-08-26T19:36:05.5001780Z 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-08-26T19:36:05.5002760Z 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-08-26T19:36:05.5004000Z 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-08-26T19:36:05.5005220Z 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-08-26T19:36:05.5006400Z 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-08-26T19:36:05.5007590Z 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-08-26T19:36:05.5008870Z 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-08-26T19:36:05.5010020Z 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-08-26T19:36:05.5011090Z 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-08-26T19:36:05.5012270Z 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-08-26T19:36:05.5013460Z 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-08-26T19:36:05.5014670Z 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-08-26T19:36:05.5015790Z 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-08-26T19:36:05.5017020Z 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-08-26T19:36:05.5018570Z 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-08-26T19:36:05.5019450Z 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-08-26T19:36:05.5020510Z 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-08-26T19:36:05.5021780Z 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-08-26T19:36:05.5022920Z 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-08-26T19:36:05.5024090Z 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-08-26T19:36:05.5025380Z 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-08-26T19:36:05.5026460Z 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-08-26T19:36:05.5027900Z 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-08-26T19:36:05.5028950Z 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-08-26T19:36:05.5030140Z 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-08-26T19:36:05.5031440Z 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-08-26T19:36:05.5032350Z 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-08-26T19:36:05.5033550Z 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-08-26T19:36:05.5034800Z 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-08-26T19:36:05.5036030Z 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-08-26T19:36:05.5037100Z 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-08-26T19:36:05.5038320Z 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-08-26T19:36:05.5039610Z 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-08-26T19:36:05.5040700Z 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-08-26T19:36:05.5041860Z 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-08-26T19:36:05.5043180Z 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-08-26T19:36:05.5044320Z 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-08-26T19:36:05.5045480Z 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-08-26T19:36:05.5046660Z 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-08-26T19:36:05.5047810Z 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-08-26T19:36:05.5049130Z 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-08-26T19:36:05.5050320Z 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-08-26T19:36:05.5051520Z 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-08-26T19:36:05.5052650Z 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-08-26T19:36:05.5053760Z 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-08-26T19:36:05.5054880Z 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-08-26T19:36:05.5056100Z 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-08-26T19:36:05.5057150Z 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-08-26T19:36:05.5058350Z 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-08-26T19:36:05.5059620Z 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-08-26T19:36:05.5060640Z 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-08-26T19:36:05.5061820Z 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-08-26T19:36:05.5062940Z 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-08-26T19:36:05.5064150Z 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-08-26T19:36:05.5065340Z 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-08-26T19:36:05.5066450Z 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-08-26T19:36:05.5067780Z 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-08-26T19:36:05.5068850Z 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-08-26T19:36:05.5069930Z 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-08-26T19:36:05.5071140Z 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-08-26T19:36:05.5072390Z 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-08-26T19:36:05.5073400Z 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-08-26T19:36:05.5074550Z 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-08-26T19:36:05.5075660Z 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-08-26T19:36:05.5077020Z 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-08-26T19:36:05.5078260Z 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-08-26T19:36:05.5079460Z 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-08-26T19:36:05.5080510Z 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-08-26T19:36:05.5081620Z 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-08-26T19:36:05.5082870Z 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-08-26T19:36:05.5084060Z 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-08-26T19:36:05.5085190Z 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-08-26T19:36:05.5086370Z 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-08-26T19:36:05.5087530Z 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-08-26T19:36:05.5088810Z 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-08-26T19:36:05.5090060Z 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-08-26T19:36:05.5091180Z 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-08-26T19:36:05.5092390Z 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-08-26T19:36:05.5093730Z 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-08-26T19:36:05.5094750Z 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-08-26T19:36:05.5096480Z 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-08-26T19:36:05.5097100Z 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-08-26T19:36:05.5098350Z 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-08-26T19:36:05.5099660Z 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-08-26T19:36:05.5100810Z 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-08-26T19:36:05.5101910Z 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-08-26T19:36:05.5103180Z 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-08-26T19:36:05.5104320Z 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-08-26T19:36:05.5105610Z 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-08-26T19:36:05.5110180Z 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-08-26T19:36:05.5111060Z 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-08-26T19:36:05.5112270Z 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-08-26T19:36:05.5118020Z 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-08-26T19:36:05.5119900Z 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-08-26T19:36:05.5120990Z 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-08-26T19:36:05.5126990Z 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-08-26T19:36:05.5127850Z 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-08-26T19:36:05.5134710Z 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-08-26T19:36:05.5135660Z 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-08-26T19:36:05.5142350Z 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-08-26T19:36:05.5143240Z 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-08-26T19:36:05.5149780Z 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-08-26T19:36:05.5150490Z 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-08-26T19:36:05.5151950Z 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-08-26T19:36:05.5156870Z 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-08-26T19:36:05.5158660Z 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-08-26T19:36:05.5164190Z 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-08-26T19:36:05.5165190Z 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-08-26T19:36:05.5173130Z 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-08-26T19:36:05.5174000Z 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-08-26T19:36:05.5176880Z 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-08-26T19:36:05.5182680Z 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-08-26T19:36:05.5185560Z 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-08-26T19:36:05.5190800Z 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-08-26T19:36:05.5191700Z 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-08-26T19:36:05.5194930Z 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-08-26T19:36:05.5200110Z 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-08-26T19:36:05.5202960Z 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-08-26T19:36:05.5203820Z 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-08-26T19:36:05.5209140Z 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-08-26T19:36:05.5210810Z 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-08-26T19:36:05.5216210Z 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-08-26T19:36:05.5217210Z 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-08-26T19:36:05.5221330Z 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-08-26T19:36:05.5225550Z 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-08-26T19:36:05.5229520Z 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-08-26T19:36:05.5233200Z 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-08-26T19:36:05.5234100Z 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-08-26T19:36:05.5238500Z 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-08-26T19:36:05.5241320Z 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-08-26T19:36:05.5247010Z 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-08-26T19:36:05.5247920Z 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-08-26T19:36:05.5251620Z 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-08-26T19:36:05.5255840Z 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-08-26T19:36:05.5258800Z 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-08-26T19:36:05.5259720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.5265340Z 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-08-26T19:36:05.5266590Z 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-08-26T19:36:05.5272840Z 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-08-26T19:36:05.5274170Z 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-08-26T19:36:05.5280210Z 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-08-26T19:36:05.5281490Z 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-08-26T19:36:05.5282810Z 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-08-26T19:36:05.5289020Z 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-08-26T19:36:05.5290290Z 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-08-26T19:36:05.5296730Z 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-08-26T19:36:05.5297700Z 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-08-26T19:36:05.5305870Z 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-08-26T19:36:05.5307020Z 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-08-26T19:36:05.5307930Z 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-08-26T19:36:05.5313510Z 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-08-26T19:36:05.5315430Z 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-08-26T19:36:05.5320320Z 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-08-26T19:36:05.5322140Z 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-08-26T19:36:05.5323530Z 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-08-26T19:36:05.5329450Z 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-08-26T19:36:05.5330340Z 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-08-26T19:36:05.5338760Z 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-08-26T19:36:05.5345540Z 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-08-26T19:36:05.5346420Z 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-08-26T19:36:05.5353600Z 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-08-26T19:36:05.5354380Z 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-08-26T19:36:05.5361450Z 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-08-26T19:36:05.5362020Z 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-08-26T19:36:05.5368050Z 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-08-26T19:36:05.5368920Z 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-08-26T19:36:05.5370060Z 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-08-26T19:36:05.5377360Z 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-08-26T19:36:05.5378210Z 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-08-26T19:36:05.5385940Z 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-08-26T19:36:05.5386740Z 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-08-26T19:36:05.5394090Z 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-08-26T19:36:05.5395200Z 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-08-26T19:36:05.5396270Z 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-08-26T19:36:05.5403130Z 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-08-26T19:36:05.5404070Z 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-08-26T19:36:05.5411720Z 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-08-26T19:36:05.5412540Z 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-08-26T19:36:05.5419330Z 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-08-26T19:36:05.5420220Z 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-08-26T19:36:05.5421410Z 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-08-26T19:36:05.5427680Z 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-08-26T19:36:05.5428440Z 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-08-26T19:36:05.5435070Z 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-08-26T19:36:05.5436070Z 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-08-26T19:36:05.5437050Z 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-08-26T19:36:05.5553390Z 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-08-26T19:36:05.5554690Z 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-08-26T19:36:05.5555610Z 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-08-26T19:36:05.5556930Z 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-08-26T19:36:05.5558010Z 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-08-26T19:36:05.5559200Z 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-08-26T19:36:05.5561440Z 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-08-26T19:36:05.5562370Z 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-08-26T19:36:05.5562760Z 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-08-26T19:36:05.5564070Z 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-08-26T19:36:05.5565970Z 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-08-26T19:36:05.5566530Z 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-08-26T19:36:05.5567690Z 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-08-26T19:36:05.5568840Z 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-08-26T19:36:05.5570040Z 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-08-26T19:36:05.5571340Z 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-08-26T19:36:05.5572600Z 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-08-26T19:36:05.5573810Z 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-08-26T19:36:05.5575050Z 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-08-26T19:36:05.5576110Z 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-08-26T19:36:05.5577250Z 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-08-26T19:36:05.5578350Z 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-08-26T19:36:05.5579600Z 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-08-26T19:36:05.5580690Z 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-08-26T19:36:05.5581810Z 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-08-26T19:36:05.5582940Z 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-08-26T19:36:05.5584080Z 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-08-26T19:36:05.5585290Z 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-08-26T19:36:05.5586430Z 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-08-26T19:36:05.5587580Z 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-08-26T19:36:05.5588700Z 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-08-26T19:36:05.5589970Z 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-08-26T19:36:05.5591100Z 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-08-26T19:36:05.5592230Z 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-08-26T19:36:05.5593380Z 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-08-26T19:36:05.5594550Z 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-08-26T19:36:05.5595900Z 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-08-26T19:36:05.5597060Z 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-08-26T19:36:05.5598080Z 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-08-26T19:36:05.5599280Z 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-08-26T19:36:05.5600580Z 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-08-26T19:36:05.5601750Z 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-08-26T19:36:05.5602880Z 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-08-26T19:36:05.5603960Z 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-08-26T19:36:05.5605100Z 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-08-26T19:36:05.5606400Z 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-08-26T19:36:05.5607490Z 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-08-26T19:36:05.5608680Z 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-08-26T19:36:05.5609900Z 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-08-26T19:36:05.5610960Z 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-08-26T19:36:05.5612140Z 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-08-26T19:36:05.5617040Z 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-08-26T19:36:05.5618520Z 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-08-26T19:36:05.5625260Z 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-08-26T19:36:05.5626240Z 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-08-26T19:36:05.5627300Z 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-08-26T19:36:05.5634260Z 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-08-26T19:36:05.5635350Z 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-08-26T19:36:05.5637230Z 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-08-26T19:36:05.5643920Z 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-08-26T19:36:05.5644820Z 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-08-26T19:36:05.5651940Z 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-08-26T19:36:05.5652690Z 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-08-26T19:36:05.5653960Z 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-08-26T19:36:05.5660580Z 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-08-26T19:36:05.5661370Z 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-08-26T19:36:05.5668200Z 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-08-26T19:36:05.5670400Z 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-08-26T19:36:05.5675650Z 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-08-26T19:36:05.5677060Z 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-08-26T19:36:05.5683720Z 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-08-26T19:36:05.5688420Z 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-08-26T19:36:05.5690830Z 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-08-26T19:36:05.5693280Z 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-08-26T19:36:05.5694110Z 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-08-26T19:36:05.5700440Z 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-08-26T19:36:05.5701410Z 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-08-26T19:36:05.5707950Z 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-08-26T19:36:05.5708900Z 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-08-26T19:36:05.5710060Z 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-08-26T19:36:05.5715620Z 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-08-26T19:36:05.5717190Z 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-08-26T19:36:05.5723460Z 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-08-26T19:36:05.5725010Z 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-08-26T19:36:05.5731100Z 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-08-26T19:36:05.5732560Z 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-08-26T19:36:05.5733740Z 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-08-26T19:36:05.5738390Z 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-08-26T19:36:05.5740980Z 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-08-26T19:36:05.5744000Z 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-08-26T19:36:05.5746480Z 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-08-26T19:36:05.5747170Z 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-08-26T19:36:05.5753260Z 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-08-26T19:36:05.5754350Z 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-08-26T19:36:05.5760710Z 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-08-26T19:36:05.5761840Z 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-08-26T19:36:05.5763070Z 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-08-26T19:36:05.5770270Z 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-08-26T19:36:05.5770930Z 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-08-26T19:36:05.5778060Z 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-08-26T19:36:05.5778890Z 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-08-26T19:36:05.5786290Z 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-08-26T19:36:05.5787310Z 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-08-26T19:36:05.5788380Z 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-08-26T19:36:05.5793770Z 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-08-26T19:36:05.5794640Z 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-08-26T19:36:05.5801500Z 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-08-26T19:36:05.5802350Z 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-08-26T19:36:05.5803600Z 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-08-26T19:36:05.5808900Z 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-08-26T19:36:05.5810230Z 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-08-26T19:36:05.5816730Z 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-08-26T19:36:05.5817900Z 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-08-26T19:36:05.5824500Z 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-08-26T19:36:05.5825630Z 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-08-26T19:36:05.5826470Z 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-08-26T19:36:05.5833580Z 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-08-26T19:36:05.5841440Z 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-08-26T19:36:05.5842290Z 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-08-26T19:36:05.5849270Z 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-08-26T19:36:05.5850040Z 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-08-26T19:36:05.5851280Z 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-08-26T19:36:05.5857160Z 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-08-26T19:36:05.5858110Z 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-08-26T19:36:05.5865320Z 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-08-26T19:36:05.5866300Z 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-08-26T19:36:05.5867590Z 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-08-26T19:36:05.5871100Z 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-08-26T19:36:05.5874200Z 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-08-26T19:36:05.5879090Z 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-08-26T19:36:05.5882880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.5886590Z 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-08-26T19:36:05.5887440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.5892420Z 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-08-26T19:36:05.5895580Z 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-08-26T19:36:05.5900870Z 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-08-26T19:36:05.5901780Z 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-08-26T19:36:05.5905240Z 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-08-26T19:36:05.5910230Z 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-08-26T19:36:05.5911120Z 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-08-26T19:36:05.5914670Z 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-08-26T19:36:05.5919600Z 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-08-26T19:36:05.5922400Z 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-08-26T19:36:05.5927830Z 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-08-26T19:36:05.5928570Z 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-08-26T19:36:05.5931150Z 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-08-26T19:36:05.5936290Z 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-08-26T19:36:05.5937250Z 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-08-26T19:36:05.5944630Z 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-08-26T19:36:05.5945860Z 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-08-26T19:36:05.5952500Z 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-08-26T19:36:05.5953540Z 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-08-26T19:36:05.5954830Z 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-08-26T19:36:05.5960950Z 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-08-26T19:36:05.5961670Z 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-08-26T19:36:05.5969540Z 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-08-26T19:36:05.5970360Z 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-08-26T19:36:05.5971540Z 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-08-26T19:36:05.5976720Z 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-08-26T19:36:05.5978510Z 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-08-26T19:36:05.5984250Z 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-08-26T19:36:05.5985100Z 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-08-26T19:36:05.5986750Z 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-08-26T19:36:05.5993860Z 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-08-26T19:36:05.5994850Z 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-08-26T19:36:05.6001950Z 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-08-26T19:36:05.6002970Z 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-08-26T19:36:05.6009890Z 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-08-26T19:36:05.6010940Z 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-08-26T19:36:05.6017130Z 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-08-26T19:36:05.6018340Z 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-08-26T19:36:05.6024860Z 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-08-26T19:36:05.6026080Z 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-08-26T19:36:05.6027420Z 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-08-26T19:36:05.6033710Z 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-08-26T19:36:05.6034590Z 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-08-26T19:36:05.6041390Z 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-08-26T19:36:05.6043430Z 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-08-26T19:36:05.6044510Z 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-08-26T19:36:05.6049520Z 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-08-26T19:36:05.6050630Z 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-08-26T19:36:05.6057410Z 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-08-26T19:36:05.6059610Z 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-08-26T19:36:05.6065590Z 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-08-26T19:36:05.6066520Z 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-08-26T19:36:05.6067860Z 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-08-26T19:36:05.6073600Z 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-08-26T19:36:05.6074580Z 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-08-26T19:36:05.6077750Z 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-08-26T19:36:05.6082540Z 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-08-26T19:36:05.6086330Z 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-08-26T19:36:05.6090530Z 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-08-26T19:36:05.6091630Z 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-08-26T19:36:05.6097510Z 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-08-26T19:36:05.6099200Z 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-08-26T19:36:05.6100420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.6106790Z 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-08-26T19:36:05.6108030Z 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-08-26T19:36:05.6114370Z 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-08-26T19:36:05.6115400Z 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-08-26T19:36:05.6116520Z 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-08-26T19:36:05.6123270Z 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-08-26T19:36:05.6124390Z 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-08-26T19:36:05.6131890Z 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-08-26T19:36:05.6132750Z 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-08-26T19:36:05.6139120Z 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-08-26T19:36:05.6140080Z 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-08-26T19:36:05.6141200Z 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-08-26T19:36:05.6146760Z 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-08-26T19:36:05.6147630Z 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-08-26T19:36:05.6154140Z 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-08-26T19:36:05.6155220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.6162190Z 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-08-26T19:36:05.6163100Z 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-08-26T19:36:05.6169830Z 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-08-26T19:36:05.6171510Z 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-08-26T19:36:05.6177270Z 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-08-26T19:36:05.6178770Z 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-08-26T19:36:05.6179690Z 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-08-26T19:36:05.6186300Z 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-08-26T19:36:05.6187130Z 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-08-26T19:36:05.6193090Z 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-08-26T19:36:05.6195340Z 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-08-26T19:36:05.6201120Z 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-08-26T19:36:05.6201900Z 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-08-26T19:36:05.6203520Z 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-08-26T19:36:05.6210510Z 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-08-26T19:36:05.6211420Z 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-08-26T19:36:05.6217880Z 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-08-26T19:36:05.6219620Z 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-08-26T19:36:05.6226150Z 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-08-26T19:36:05.6227120Z 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-08-26T19:36:05.6228300Z 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-08-26T19:36:05.6234350Z 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-08-26T19:36:05.6235180Z 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-08-26T19:36:05.6241790Z 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-08-26T19:36:05.6242520Z 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-08-26T19:36:05.6250250Z 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-08-26T19:36:05.6250880Z 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-08-26T19:36:05.6252110Z 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-08-26T19:36:05.6257580Z 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-08-26T19:36:05.6259610Z 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-08-26T19:36:05.6265530Z 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-08-26T19:36:05.6266400Z 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-08-26T19:36:05.6267620Z 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-08-26T19:36:05.6271930Z 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-08-26T19:36:05.6273170Z 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-08-26T19:36:05.6280230Z 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-08-26T19:36:05.6281220Z 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-08-26T19:36:05.6288110Z 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-08-26T19:36:05.6289100Z 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-08-26T19:36:05.6296060Z 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-08-26T19:36:05.6297310Z 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-08-26T19:36:05.6298400Z 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-08-26T19:36:05.6303530Z 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-08-26T19:36:05.6305230Z 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-08-26T19:36:05.6311720Z 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-08-26T19:36:05.6312820Z 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-08-26T19:36:05.6313860Z 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-08-26T19:36:05.6319890Z 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-08-26T19:36:05.6320830Z 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-08-26T19:36:05.6327500Z 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-08-26T19:36:05.6328210Z 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-08-26T19:36:05.6329320Z 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-08-26T19:36:05.6335440Z 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-08-26T19:36:05.6336800Z 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-08-26T19:36:05.6343930Z 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-08-26T19:36:05.6344810Z 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-08-26T19:36:05.6352650Z 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-08-26T19:36:05.6353590Z 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-08-26T19:36:05.6354770Z 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-08-26T19:36:05.6359940Z 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-08-26T19:36:05.6361330Z 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-08-26T19:36:05.6367540Z 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-08-26T19:36:05.6368260Z 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-08-26T19:36:05.6369520Z 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-08-26T19:36:05.6376510Z 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-08-26T19:36:05.6377430Z 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-08-26T19:36:05.6384600Z 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-08-26T19:36:05.6386510Z 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-08-26T19:36:05.6392340Z 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-08-26T19:36:05.6393400Z 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-08-26T19:36:05.6394310Z 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-08-26T19:36:05.6400180Z 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-08-26T19:36:05.6401520Z 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-08-26T19:36:05.6408280Z 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-08-26T19:36:05.6409220Z 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-08-26T19:36:05.6410450Z 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-08-26T19:36:05.6416230Z 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-08-26T19:36:05.6417190Z 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-08-26T19:36:05.6424280Z 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-08-26T19:36:05.6425140Z 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-08-26T19:36:05.6433400Z 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-08-26T19:36:05.6434230Z 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-08-26T19:36:05.6435410Z 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-08-26T19:36:05.6441320Z 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-08-26T19:36:05.6442070Z 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-08-26T19:36:05.6448970Z 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-08-26T19:36:05.6450240Z 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-08-26T19:36:05.6451420Z 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-08-26T19:36:05.6457480Z 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-08-26T19:36:05.6458350Z 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-08-26T19:36:05.6466290Z 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-08-26T19:36:05.6467260Z 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-08-26T19:36:05.6468460Z 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-08-26T19:36:05.6473830Z 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-08-26T19:36:05.6481950Z 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-08-26T19:36:05.6482870Z 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-08-26T19:36:05.6483950Z 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-08-26T19:36:05.6491070Z 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-08-26T19:36:05.6491960Z 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-08-26T19:36:05.6498310Z 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-08-26T19:36:05.6499250Z 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-08-26T19:36:05.6500640Z 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-08-26T19:36:05.6506030Z 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-08-26T19:36:05.6507140Z 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-08-26T19:36:05.6514080Z 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-08-26T19:36:05.6515030Z 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-08-26T19:36:05.6522120Z 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-08-26T19:36:05.6522810Z 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-08-26T19:36:05.6524150Z 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-08-26T19:36:05.6532020Z 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-08-26T19:36:05.6538790Z 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-08-26T19:36:05.6539700Z 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-08-26T19:36:05.6540720Z 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-08-26T19:36:05.6541830Z 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-08-26T19:36:05.6547450Z 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-08-26T19:36:05.6550800Z 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-08-26T19:36:05.6556290Z 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-08-26T19:36:05.6557560Z 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-08-26T19:36:05.6564550Z 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-08-26T19:36:05.6565530Z 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-08-26T19:36:05.6566700Z 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-08-26T19:36:05.6574830Z 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-08-26T19:36:05.6575620Z 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-08-26T19:36:05.6582590Z 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-08-26T19:36:05.6583580Z 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-08-26T19:36:05.6584860Z 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-08-26T19:36:05.6589730Z 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-08-26T19:36:05.6591090Z 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-08-26T19:36:05.6597600Z 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-08-26T19:36:05.6598640Z 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-08-26T19:36:05.6599940Z 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-08-26T19:36:05.6606960Z 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-08-26T19:36:05.6607890Z 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-08-26T19:36:05.6614790Z 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-08-26T19:36:05.6615700Z 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-08-26T19:36:05.6622640Z 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-08-26T19:36:05.6623540Z 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-08-26T19:36:05.6624730Z 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-08-26T19:36:05.6630850Z 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-08-26T19:36:05.6632040Z 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-08-26T19:36:05.6638250Z 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-08-26T19:36:05.6639190Z 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-08-26T19:36:05.6640370Z 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-08-26T19:36:05.6646240Z 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-08-26T19:36:05.6647120Z 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-08-26T19:36:05.6653840Z 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-08-26T19:36:05.6655690Z 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-08-26T19:36:05.6662620Z 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-08-26T19:36:05.6663490Z 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-08-26T19:36:05.6664940Z 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-08-26T19:36:05.6670590Z 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-08-26T19:36:05.6671500Z 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-08-26T19:36:05.6672840Z 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-08-26T19:36:05.6674350Z 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-08-26T19:36:05.6684100Z 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-08-26T19:36:05.6690090Z 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-08-26T19:36:05.6691620Z 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-08-26T19:36:05.6698360Z 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-08-26T19:36:05.6699580Z 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-08-26T19:36:05.6700780Z 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-08-26T19:36:05.6706100Z 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-08-26T19:36:05.6707700Z 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-08-26T19:36:05.6715340Z 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-08-26T19:36:05.6716840Z 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-08-26T19:36:05.6718210Z 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-08-26T19:36:05.6722130Z 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-08-26T19:36:05.6724040Z 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-08-26T19:36:05.6729920Z 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-08-26T19:36:05.6731210Z 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-08-26T19:36:05.6737030Z 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-08-26T19:36:05.6737900Z 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-08-26T19:36:05.6740190Z 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-08-26T19:36:05.6746410Z 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-08-26T19:36:05.6753650Z 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-08-26T19:36:05.6754960Z 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-08-26T19:36:05.6762050Z 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-08-26T19:36:05.6763250Z 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-08-26T19:36:05.6764380Z 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-08-26T19:36:05.6768620Z 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-08-26T19:36:05.6770820Z 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-08-26T19:36:05.6776290Z 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-08-26T19:36:05.6777380Z 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-08-26T19:36:05.6779080Z 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-08-26T19:36:05.6785980Z 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-08-26T19:36:05.6788370Z 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-08-26T19:36:05.6793750Z 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-08-26T19:36:05.6794620Z 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-08-26T19:36:05.6796610Z 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-08-26T19:36:05.6802780Z 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-08-26T19:36:05.6803700Z 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-08-26T19:36:05.6810460Z 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-08-26T19:36:05.6811330Z 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-08-26T19:36:05.6818150Z 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-08-26T19:36:05.6818990Z 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-08-26T19:36:05.6820080Z 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-08-26T19:36:05.6826760Z 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-08-26T19:36:05.6827550Z 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-08-26T19:36:05.6834430Z 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-08-26T19:36:05.6836160Z 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-08-26T19:36:05.6842520Z 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-08-26T19:36:05.6843450Z 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-08-26T19:36:05.6844800Z 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-08-26T19:36:05.6851300Z 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-08-26T19:36:05.6852340Z 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-08-26T19:36:05.6854120Z 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-08-26T19:36:05.6859330Z 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-08-26T19:36:05.6860330Z 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-08-26T19:36:05.6866740Z 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-08-26T19:36:05.6868090Z 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-08-26T19:36:05.6874000Z 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-08-26T19:36:05.6875220Z 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-08-26T19:36:05.6876420Z 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-08-26T19:36:05.6881570Z 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-08-26T19:36:05.6889320Z 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-08-26T19:36:05.6890180Z 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-08-26T19:36:05.6897150Z 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-08-26T19:36:05.6898570Z 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-08-26T19:36:05.6905360Z 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-08-26T19:36:05.6906200Z 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-08-26T19:36:05.6912730Z 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-08-26T19:36:05.6913970Z 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-08-26T19:36:05.6918340Z 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-08-26T19:36:05.6920320Z 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-08-26T19:36:05.6921440Z 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-08-26T19:36:05.6926180Z 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-08-26T19:36:05.6927100Z 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-08-26T19:36:05.6933320Z 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-08-26T19:36:05.6935150Z 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-08-26T19:36:05.6941420Z 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-08-26T19:36:05.6942250Z 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-08-26T19:36:05.6943650Z 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-08-26T19:36:05.6950430Z 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-08-26T19:36:05.6951220Z 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-08-26T19:36:05.6953860Z 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-08-26T19:36:05.6959760Z 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-08-26T19:36:05.6961540Z 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-08-26T19:36:05.6967520Z 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-08-26T19:36:05.6968440Z 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-08-26T19:36:05.6969930Z 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-08-26T19:36:05.6977160Z 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-08-26T19:36:05.6978220Z 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-08-26T19:36:05.6984790Z 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-08-26T19:36:05.6985710Z 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-08-26T19:36:05.6986960Z 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-08-26T19:36:05.6993250Z 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-08-26T19:36:05.6994080Z 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-08-26T19:36:05.7001130Z 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-08-26T19:36:05.7002200Z 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-08-26T19:36:05.7009070Z 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-08-26T19:36:05.7010040Z 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-08-26T19:36:05.7011140Z 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-08-26T19:36:05.7017640Z 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-08-26T19:36:05.7018600Z 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-08-26T19:36:05.7030260Z 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-08-26T19:36:05.7031060Z 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-08-26T19:36:05.7033420Z 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-08-26T19:36:05.7034450Z 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-08-26T19:36:05.7035310Z 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-08-26T19:36:05.7041260Z 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-08-26T19:36:05.7042950Z 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-08-26T19:36:05.7049220Z 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-08-26T19:36:05.7050090Z 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-08-26T19:36:05.7051310Z 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-08-26T19:36:05.7057360Z 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-08-26T19:36:05.7058250Z 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-08-26T19:36:05.7060470Z 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-08-26T19:36:05.7067770Z 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-08-26T19:36:05.7068830Z 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-08-26T19:36:05.7076270Z 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-08-26T19:36:05.7077280Z 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-08-26T19:36:05.7083410Z 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-08-26T19:36:05.7084890Z 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-08-26T19:36:05.7086510Z 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-08-26T19:36:05.7093730Z 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-08-26T19:36:05.7099850Z 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-08-26T19:36:05.7101160Z 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-08-26T19:36:05.7104150Z 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-08-26T19:36:05.7108450Z 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-08-26T19:36:05.7109390Z 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-08-26T19:36:05.7116680Z 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-08-26T19:36:05.7117670Z 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-08-26T19:36:05.7124040Z 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-08-26T19:36:05.7125620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.7126850Z 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-08-26T19:36:05.7133940Z 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-08-26T19:36:05.7134930Z 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-08-26T19:36:05.7142370Z 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-08-26T19:36:05.7143260Z 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-08-26T19:36:05.7150050Z 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-08-26T19:36:05.7150870Z 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-08-26T19:36:05.7152030Z 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-08-26T19:36:05.7157480Z 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-08-26T19:36:05.7158890Z 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-08-26T19:36:05.7166080Z 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-08-26T19:36:05.7167120Z 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-08-26T19:36:05.7168260Z 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-08-26T19:36:05.7173800Z 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-08-26T19:36:05.7175190Z 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-08-26T19:36:05.7182210Z 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-08-26T19:36:05.7183620Z 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-08-26T19:36:05.7184440Z 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-08-26T19:36:05.7190470Z 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-08-26T19:36:05.7191280Z 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-08-26T19:36:05.7198340Z 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-08-26T19:36:05.7199420Z 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-08-26T19:36:05.7200570Z 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-08-26T19:36:05.7206210Z 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-08-26T19:36:05.7207250Z 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-08-26T19:36:05.7213780Z 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-08-26T19:36:05.7215060Z 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-08-26T19:36:05.7217070Z 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-08-26T19:36:05.7224290Z 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-08-26T19:36:05.7225080Z 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-08-26T19:36:05.7231210Z 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-08-26T19:36:05.7232120Z 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-08-26T19:36:05.7233330Z 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-08-26T19:36:05.7240710Z 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-08-26T19:36:05.7241710Z 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-08-26T19:36:05.7250380Z 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-08-26T19:36:05.7256910Z 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-08-26T19:36:05.7257720Z 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-08-26T19:36:05.7258960Z 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-08-26T19:36:05.7263830Z 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-08-26T19:36:05.7265220Z 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-08-26T19:36:05.7272310Z 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-08-26T19:36:05.7273090Z 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-08-26T19:36:05.7274470Z 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-08-26T19:36:05.7275860Z 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-08-26T19:36:05.7280890Z 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-08-26T19:36:05.7283910Z 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-08-26T19:36:05.7288160Z 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-08-26T19:36:05.7296580Z 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-08-26T19:36:05.7297640Z 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-08-26T19:36:05.7305960Z 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-08-26T19:36:05.7306880Z 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-08-26T19:36:05.7308180Z 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-08-26T19:36:05.7314190Z 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-08-26T19:36:05.7315090Z 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-08-26T19:36:05.7322430Z 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-08-26T19:36:05.7323260Z 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-08-26T19:36:05.7324590Z 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-08-26T19:36:05.7330280Z 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-08-26T19:36:05.7331290Z 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-08-26T19:36:05.7338820Z 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-08-26T19:36:05.7339670Z 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-08-26T19:36:05.7340750Z 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-08-26T19:36:05.7346720Z 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-08-26T19:36:05.7348040Z 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-08-26T19:36:05.7354450Z 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-08-26T19:36:05.7355750Z 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-08-26T19:36:05.7357060Z 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-08-26T19:36:05.7364340Z 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-08-26T19:36:05.7365240Z 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-08-26T19:36:05.7372740Z 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-08-26T19:36:05.7373860Z 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-08-26T19:36:05.7380780Z 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-08-26T19:36:05.7381660Z 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-08-26T19:36:05.7382910Z 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-08-26T19:36:05.7388450Z 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-08-26T19:36:05.7389460Z 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-08-26T19:36:05.7390610Z 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-08-26T19:36:05.7396490Z 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-08-26T19:36:05.7397480Z 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-08-26T19:36:05.7404070Z 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-08-26T19:36:05.7405890Z 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-08-26T19:36:05.7407100Z 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-08-26T19:36:05.7413750Z 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-08-26T19:36:05.7421510Z 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-08-26T19:36:05.7422420Z 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-08-26T19:36:05.7429410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.7430310Z 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-08-26T19:36:05.7431460Z 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-08-26T19:36:05.7437550Z 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-08-26T19:36:05.7438360Z 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-08-26T19:36:05.7446250Z 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-08-26T19:36:05.7447170Z 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-08-26T19:36:05.7448420Z 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-08-26T19:36:05.7450970Z 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-08-26T19:36:05.7456160Z 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-08-26T19:36:05.7458340Z 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-08-26T19:36:05.7459270Z 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-08-26T19:36:05.7465290Z 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-08-26T19:36:05.7467310Z 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-08-26T19:36:05.7473450Z 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-08-26T19:36:05.7474410Z 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-08-26T19:36:05.7481400Z 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-08-26T19:36:05.7482270Z 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-08-26T19:36:05.7483400Z 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-08-26T19:36:05.7488750Z 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-08-26T19:36:05.7490270Z 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-08-26T19:36:05.7496830Z 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-08-26T19:36:05.7497780Z 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-08-26T19:36:05.7500920Z 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-08-26T19:36:05.7506300Z 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-08-26T19:36:05.7513470Z 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-08-26T19:36:05.7514760Z 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-08-26T19:36:05.7520640Z 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-08-26T19:36:05.7522020Z 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-08-26T19:36:05.7523270Z 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-08-26T19:36:05.7530350Z 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-08-26T19:36:05.7531300Z 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-08-26T19:36:05.7537490Z 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-08-26T19:36:05.7538770Z 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-08-26T19:36:05.7545310Z 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-08-26T19:36:05.7546230Z 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-08-26T19:36:05.7547680Z 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-08-26T19:36:05.7552630Z 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-08-26T19:36:05.7553680Z 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-08-26T19:36:05.7561060Z 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-08-26T19:36:05.7562120Z 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-08-26T19:36:05.7568270Z 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-08-26T19:36:05.7569820Z 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-08-26T19:36:05.7571070Z 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-08-26T19:36:05.7577070Z 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-08-26T19:36:05.7578000Z 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-08-26T19:36:05.7584080Z 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-08-26T19:36:05.7592510Z 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-08-26T19:36:05.7593500Z 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-08-26T19:36:05.7595820Z 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-08-26T19:36:05.7600380Z 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-08-26T19:36:05.7601330Z 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-08-26T19:36:05.7604860Z 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-08-26T19:36:05.7608960Z 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-08-26T19:36:05.7612220Z 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-08-26T19:36:05.7613050Z 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-08-26T19:36:05.7618980Z 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-08-26T19:36:05.7620590Z 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-08-26T19:36:05.7628320Z 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-08-26T19:36:05.7629240Z 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-08-26T19:36:05.7635660Z 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-08-26T19:36:05.7636540Z 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-08-26T19:36:05.7637790Z 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-08-26T19:36:05.7643240Z 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-08-26T19:36:05.7645240Z 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-08-26T19:36:05.7650910Z 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-08-26T19:36:05.7652290Z 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-08-26T19:36:05.7654440Z 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-08-26T19:36:05.7660490Z 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-08-26T19:36:05.7661380Z 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-08-26T19:36:05.7663500Z 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-08-26T19:36:05.7669620Z 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-08-26T19:36:05.7670770Z 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-08-26T19:36:05.7677010Z 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-08-26T19:36:05.7891000Z 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-08-26T19:36:05.7891910Z 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-08-26T19:36:05.7893260Z 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-08-26T19:36:05.7894390Z 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-08-26T19:36:05.7895940Z 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-08-26T19:36:05.7897490Z 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-08-26T19:36:05.7898310Z 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-08-26T19:36:05.7899570Z 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-08-26T19:36:05.7900710Z 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-08-26T19:36:05.7901930Z 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-08-26T19:36:05.7903070Z 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-08-26T19:36:05.7904400Z 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-08-26T19:36:05.7905550Z 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-08-26T19:36:05.7906700Z 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-08-26T19:36:05.7907940Z 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-08-26T19:36:05.7909130Z 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-08-26T19:36:05.7910340Z 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-08-26T19:36:05.7911790Z 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-08-26T19:36:05.7912900Z 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-08-26T19:36:05.7914040Z 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-08-26T19:36:05.7915210Z 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-08-26T19:36:05.7916420Z 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-08-26T19:36:05.7917650Z 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-08-26T19:36:05.7918760Z 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-08-26T19:36:05.7920000Z 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-08-26T19:36:05.7921180Z 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-08-26T19:36:05.7922380Z 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-08-26T19:36:05.7923540Z 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-08-26T19:36:05.7924670Z 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-08-26T19:36:05.7926020Z 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-08-26T19:36:05.7927190Z 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-08-26T19:36:05.7928350Z 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-08-26T19:36:05.7929410Z 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-08-26T19:36:05.7930510Z 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-08-26T19:36:05.7931720Z 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-08-26T19:36:05.7933170Z 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-08-26T19:36:05.7934360Z 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-08-26T19:36:05.7935240Z 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-08-26T19:36:05.7936630Z 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-08-26T19:36:05.7937760Z 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-08-26T19:36:05.7939090Z 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-08-26T19:36:05.7940460Z 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-08-26T19:36:05.7941680Z 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-08-26T19:36:05.7942840Z 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-08-26T19:36:05.8055260Z 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-08-26T19:36:05.8056600Z 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-08-26T19:36:05.8057830Z 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-08-26T19:36:05.8058720Z 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-08-26T19:36:05.8059960Z 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-08-26T19:36:05.8061100Z 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-08-26T19:36:05.8062250Z 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-08-26T19:36:05.8063420Z 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-08-26T19:36:05.8064670Z 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-08-26T19:36:05.8065920Z 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-08-26T19:36:05.8067060Z 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-08-26T19:36:05.8068320Z 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-08-26T19:36:05.8069550Z 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-08-26T19:36:05.8070830Z 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-08-26T19:36:05.8072010Z 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-08-26T19:36:05.8073310Z 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-08-26T19:36:05.8074370Z 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-08-26T19:36:05.8075550Z 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-08-26T19:36:05.8076890Z 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-08-26T19:36:05.8078030Z 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-08-26T19:36:05.8079180Z 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-08-26T19:36:05.8080330Z 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-08-26T19:36:05.8081560Z 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-08-26T19:36:05.8082840Z 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-08-26T19:36:05.8083900Z 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-08-26T19:36:05.8085140Z 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-08-26T19:36:05.8086210Z 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-08-26T19:36:05.8087430Z 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-08-26T19:36:05.8088570Z 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-08-26T19:36:05.8089680Z 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-08-26T19:36:05.8090870Z 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-08-26T19:36:05.8092040Z 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-08-26T19:36:05.8093280Z 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-08-26T19:36:05.8094390Z 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-08-26T19:36:05.8100400Z 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-08-26T19:36:05.8101310Z 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-08-26T19:36:05.8102130Z 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-08-26T19:36:05.8103000Z 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-08-26T19:36:05.8103770Z 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-08-26T19:36:05.8104630Z 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-08-26T19:36:05.8105500Z 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-08-26T19:36:05.8106400Z 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-08-26T19:36:05.8107460Z 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-08-26T19:36:05.8108380Z 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-08-26T19:36:05.8109220Z 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-08-26T19:36:05.8110060Z 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-08-26T19:36:05.8110960Z 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-08-26T19:36:05.8111810Z 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-08-26T19:36:05.8112670Z 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-08-26T19:36:05.8113560Z 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-08-26T19:36:05.8114450Z 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-08-26T19:36:05.8115690Z 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-08-26T19:36:05.8116740Z 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-08-26T19:36:05.8117940Z 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-08-26T19:36:05.8119120Z 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-08-26T19:36:05.8120220Z 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-08-26T19:36:05.8121480Z 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-08-26T19:36:05.8122560Z 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-08-26T19:36:05.8123870Z 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-08-26T19:36:05.8125010Z 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-08-26T19:36:05.8126200Z 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-08-26T19:36:05.8127430Z 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-08-26T19:36:05.8128700Z 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-08-26T19:36:05.8129890Z 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-08-26T19:36:05.8131060Z 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-08-26T19:36:05.8132100Z 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-08-26T19:36:05.8133310Z 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-08-26T19:36:05.8134430Z 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-08-26T19:36:05.8135640Z 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-08-26T19:36:05.8136840Z 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-08-26T19:36:05.8137970Z 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-08-26T19:36:05.8139190Z 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-08-26T19:36:05.8140400Z 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-08-26T19:36:05.8141500Z 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-08-26T19:36:05.8142630Z 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-08-26T19:36:05.8143760Z 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-08-26T19:36:05.8144870Z 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-08-26T19:36:05.8146040Z 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-08-26T19:36:05.8147070Z 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-08-26T19:36:05.8148380Z 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-08-26T19:36:05.8149540Z 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-08-26T19:36:05.8150580Z 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-08-26T19:36:05.8151720Z 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-08-26T19:36:05.8152850Z 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-08-26T19:36:05.8154110Z 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-08-26T19:36:05.8155330Z 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-08-26T19:36:05.8156620Z 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-08-26T19:36:05.8158130Z 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-08-26T19:36:05.8165130Z 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-08-26T19:36:05.8166350Z 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-08-26T19:36:05.8167650Z 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-08-26T19:36:05.8173140Z 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-08-26T19:36:05.8174020Z 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-08-26T19:36:05.8180350Z 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-08-26T19:36:05.8182270Z 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-08-26T19:36:05.8187810Z 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-08-26T19:36:05.8188930Z 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-08-26T19:36:05.8190380Z 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-08-26T19:36:05.8195430Z 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-08-26T19:36:05.8196230Z 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-08-26T19:36:05.8203190Z 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-08-26T19:36:05.8204630Z 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-08-26T19:36:05.8210680Z 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-08-26T19:36:05.8211900Z 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-08-26T19:36:05.8213710Z 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-08-26T19:36:05.8222760Z 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-08-26T19:36:05.8230380Z 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-08-26T19:36:05.8231390Z 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-08-26T19:36:05.8232440Z 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-08-26T19:36:05.8236730Z 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-08-26T19:36:05.8237570Z 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-08-26T19:36:05.8238890Z 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-08-26T19:36:05.8240610Z 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-08-26T19:36:05.8245760Z 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-08-26T19:36:05.8247340Z 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-08-26T19:36:05.8255390Z 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-08-26T19:36:05.8261180Z 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-08-26T19:36:05.8262260Z 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-08-26T19:36:05.8263410Z 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-08-26T19:36:05.8269420Z 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-08-26T19:36:05.8270880Z 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-08-26T19:36:05.8277300Z 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-08-26T19:36:05.8278880Z 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-08-26T19:36:05.8285950Z 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-08-26T19:36:05.8286970Z 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-08-26T19:36:05.8288170Z 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-08-26T19:36:05.8293400Z 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-08-26T19:36:05.8294750Z 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-08-26T19:36:05.8301570Z 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-08-26T19:36:05.8302400Z 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-08-26T19:36:05.8303530Z 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-08-26T19:36:05.8309990Z 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-08-26T19:36:05.8310820Z 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-08-26T19:36:05.8318070Z 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-08-26T19:36:05.8318960Z 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-08-26T19:36:05.8325870Z 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-08-26T19:36:05.8326700Z 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-08-26T19:36:05.8327970Z 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-08-26T19:36:05.8332400Z 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-08-26T19:36:05.8334380Z 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-08-26T19:36:05.8340760Z 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-08-26T19:36:05.8341960Z 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-08-26T19:36:05.8343170Z 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-08-26T19:36:05.8349110Z 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-08-26T19:36:05.8350360Z 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-08-26T19:36:05.8357120Z 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-08-26T19:36:05.8358500Z 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-08-26T19:36:05.8365310Z 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-08-26T19:36:05.8366890Z 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-08-26T19:36:05.8367890Z 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-08-26T19:36:05.8373700Z 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-08-26T19:36:05.8374640Z 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-08-26T19:36:05.8381320Z 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-08-26T19:36:05.8382340Z 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-08-26T19:36:05.8383620Z 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-08-26T19:36:05.8388680Z 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-08-26T19:36:05.8390250Z 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-08-26T19:36:05.8396620Z 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-08-26T19:36:05.8601510Z 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-08-26T19:36:05.8602520Z 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-08-26T19:36:05.8603730Z 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-08-26T19:36:05.8605020Z 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-08-26T19:36:05.8606200Z 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-08-26T19:36:05.8607360Z 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-08-26T19:36:05.8608660Z 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-08-26T19:36:05.8611480Z 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-08-26T19:36:05.8612280Z 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-08-26T19:36:05.8613100Z 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-08-26T19:36:05.8613870Z 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-08-26T19:36:05.8614680Z 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-08-26T19:36:05.8615720Z 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-08-26T19:36:05.8665270Z 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-08-26T19:36:05.8666470Z 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-08-26T19:36:05.8667600Z 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-08-26T19:36:05.8669230Z 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-08-26T19:36:05.8669990Z 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-08-26T19:36:05.8671190Z 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-08-26T19:36:05.8672360Z 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-08-26T19:36:05.8673770Z 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-08-26T19:36:05.8676260Z 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-08-26T19:36:05.8676700Z 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-08-26T19:36:05.8677640Z 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-08-26T19:36:05.8678560Z 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-08-26T19:36:05.8679830Z 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-08-26T19:36:05.8680920Z 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-08-26T19:36:05.8682160Z 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-08-26T19:36:05.8683330Z 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-08-26T19:36:05.8684510Z 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-08-26T19:36:05.8685670Z 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-08-26T19:36:05.8686960Z 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-08-26T19:36:05.8688390Z 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-08-26T19:36:05.8689310Z 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-08-26T19:36:05.8690390Z 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-08-26T19:36:05.8692140Z 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-08-26T19:36:05.8692800Z 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-08-26T19:36:05.8694090Z 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-08-26T19:36:05.8695420Z 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-08-26T19:36:05.8696560Z 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-08-26T19:36:05.8698060Z 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-08-26T19:36:05.8699140Z 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-08-26T19:36:05.8700180Z 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-08-26T19:36:05.8701410Z 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-08-26T19:36:05.8702930Z 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-08-26T19:36:05.8703770Z 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-08-26T19:36:05.8705050Z 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-08-26T19:36:05.8706170Z 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-08-26T19:36:05.8708380Z 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-08-26T19:36:05.8708930Z 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-08-26T19:36:05.8709890Z 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-08-26T19:36:05.8711160Z 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-08-26T19:36:05.8712260Z 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-08-26T19:36:05.8713600Z 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-08-26T19:36:05.8714650Z 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-08-26T19:36:05.8716030Z 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-08-26T19:36:05.8717090Z 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-08-26T19:36:05.8718150Z 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-08-26T19:36:05.8719290Z 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-08-26T19:36:05.8720450Z 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-08-26T19:36:05.8721710Z 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-08-26T19:36:05.8722850Z 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-08-26T19:36:05.8724230Z 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-08-26T19:36:05.8725560Z 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-08-26T19:36:05.8726640Z 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-08-26T19:36:05.8727860Z 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-08-26T19:36:05.8729050Z 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-08-26T19:36:05.8730230Z 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-08-26T19:36:05.8731400Z 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-08-26T19:36:05.8732600Z 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-08-26T19:36:05.8733900Z 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-08-26T19:36:05.8735020Z 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-08-26T19:36:05.8736320Z 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-08-26T19:36:05.8737380Z 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-08-26T19:36:05.8738590Z 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-08-26T19:36:05.8739870Z 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-08-26T19:36:05.8741060Z 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-08-26T19:36:05.8742440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.8743640Z 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-08-26T19:36:05.8744730Z 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-08-26T19:36:05.8745870Z 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-08-26T19:36:05.8747130Z 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-08-26T19:36:05.8748260Z 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-08-26T19:36:05.8749510Z 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-08-26T19:36:05.8750710Z 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-08-26T19:36:05.8751950Z 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-08-26T19:36:05.8753150Z 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-08-26T19:36:05.8754440Z 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-08-26T19:36:05.8755400Z 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-08-26T19:36:05.8756550Z 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-08-26T19:36:05.8757890Z 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-08-26T19:36:05.8759040Z 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-08-26T19:36:05.8760430Z 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-08-26T19:36:05.8761610Z 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-08-26T19:36:05.8762830Z 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-08-26T19:36:05.8764060Z 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-08-26T19:36:05.8765160Z 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-08-26T19:36:05.8766350Z 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-08-26T19:36:05.8767500Z 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-08-26T19:36:05.8768770Z 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-08-26T19:36:05.8769800Z 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-08-26T19:36:05.8770940Z 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-08-26T19:36:05.8772120Z 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-08-26T19:36:05.8773430Z 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-08-26T19:36:05.8774850Z 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-08-26T19:36:05.8780880Z 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-08-26T19:36:05.8782050Z 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-08-26T19:36:05.8783200Z 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-08-26T19:36:05.8789560Z 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-08-26T19:36:05.8790290Z 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-08-26T19:36:05.8796960Z 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-08-26T19:36:05.8797770Z 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-08-26T19:36:05.8801860Z 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-08-26T19:36:05.8806250Z 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-08-26T19:36:05.8811730Z 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-08-26T19:36:05.8814420Z 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-08-26T19:36:05.8819870Z 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-08-26T19:36:05.8820870Z 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-08-26T19:36:05.8824220Z 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-08-26T19:36:05.8829240Z 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-08-26T19:36:05.8832330Z 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-08-26T19:36:05.8836910Z 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-08-26T19:36:05.8838030Z 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-08-26T19:36:05.8840500Z 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-08-26T19:36:05.8845520Z 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-08-26T19:36:05.8849150Z 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-08-26T19:36:05.8853420Z 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-08-26T19:36:05.8854260Z 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-08-26T19:36:05.8858150Z 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-08-26T19:36:05.8861980Z 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-08-26T19:36:05.8866950Z 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-08-26T19:36:05.8867980Z 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-08-26T19:36:05.8872630Z 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-08-26T19:36:05.8877190Z 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-08-26T19:36:05.8879060Z 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-08-26T19:36:05.8880150Z 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-08-26T19:36:05.8885880Z 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-08-26T19:36:05.8887920Z 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-08-26T19:36:05.8893900Z 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-08-26T19:36:05.8894630Z 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-08-26T19:36:05.8896170Z 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-08-26T19:36:05.8901020Z 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-08-26T19:36:05.8902440Z 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-08-26T19:36:05.8908980Z 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-08-26T19:36:05.8909870Z 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-08-26T19:36:05.8915980Z 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-08-26T19:36:05.8923720Z 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-08-26T19:36:05.8924520Z 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-08-26T19:36:05.8931420Z 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-08-26T19:36:05.8932210Z 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-08-26T19:36:05.8933380Z 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-08-26T19:36:05.8938970Z 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-08-26T19:36:05.8940720Z 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-08-26T19:36:05.8946680Z 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-08-26T19:36:05.8947840Z 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-08-26T19:36:05.8949920Z 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-08-26T19:36:05.8956250Z 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-08-26T19:36:05.8957110Z 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-08-26T19:36:05.8963950Z 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-08-26T19:36:05.8964800Z 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-08-26T19:36:05.8971760Z 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-08-26T19:36:05.8972820Z 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-08-26T19:36:05.8973940Z 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-08-26T19:36:05.8979590Z 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-08-26T19:36:05.8980910Z 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-08-26T19:36:05.8986840Z 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-08-26T19:36:05.8987990Z 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-08-26T19:36:05.8989740Z 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-08-26T19:36:05.8996290Z 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-08-26T19:36:05.8997110Z 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-08-26T19:36:05.9003870Z 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-08-26T19:36:05.9004820Z 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-08-26T19:36:05.9011440Z 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-08-26T19:36:05.9012300Z 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-08-26T19:36:05.9018910Z 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-08-26T19:36:05.9019800Z 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-08-26T19:36:05.9026800Z 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-08-26T19:36:05.9027820Z 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-08-26T19:36:05.9034890Z 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-08-26T19:36:05.9035600Z 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-08-26T19:36:05.9036870Z 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-08-26T19:36:05.9044120Z 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-08-26T19:36:05.9044990Z 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-08-26T19:36:05.9051430Z 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-08-26T19:36:05.9052360Z 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-08-26T19:36:05.9058920Z 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-08-26T19:36:05.9059660Z 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-08-26T19:36:05.9060840Z 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-08-26T19:36:05.9065940Z 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-08-26T19:36:05.9066840Z 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-08-26T19:36:05.9073460Z 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-08-26T19:36:05.9074750Z 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-08-26T19:36:05.9081410Z 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-08-26T19:36:05.9082290Z 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-08-26T19:36:05.9083440Z 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-08-26T19:36:05.9088980Z 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-08-26T19:36:05.9090490Z 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-08-26T19:36:05.9096500Z 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-08-26T19:36:05.9097960Z 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-08-26T19:36:05.9104900Z 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-08-26T19:36:05.9106560Z 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-08-26T19:36:05.9112630Z 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-08-26T19:36:05.9113920Z 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-08-26T19:36:05.9120540Z 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-08-26T19:36:05.9121820Z 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-08-26T19:36:05.9128790Z 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-08-26T19:36:05.9129420Z 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-08-26T19:36:05.9130650Z 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-08-26T19:36:05.9136160Z 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-08-26T19:36:05.9137000Z 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-08-26T19:36:05.9144190Z 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-08-26T19:36:05.9145260Z 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-08-26T19:36:05.9213070Z 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-08-26T19:36:05.9213950Z 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-08-26T19:36:05.9215080Z 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-08-26T19:36:05.9216250Z 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-08-26T19:36:05.9217550Z 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-08-26T19:36:05.9218640Z 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-08-26T19:36:05.9375480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:05.9376250Z 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-08-26T19:36:05.9393030Z 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-08-26T19:36:05.9407160Z 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-08-26T19:36:05.9408200Z 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-08-26T19:36:05.9409330Z 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-08-26T19:36:05.9410650Z 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-08-26T19:36:05.9411870Z 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-08-26T19:36:05.9505020Z 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-08-26T19:36:06.1038100Z 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-08-26T19:36:06.1038520Z 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-08-26T19:36:06.1039940Z 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-08-26T19:36:06.1041000Z 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-08-26T19:36:06.1042390Z 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-08-26T19:36:06.1043650Z 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-08-26T19:36:06.1044770Z 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-08-26T19:36:06.1046010Z 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-08-26T19:36:06.1047370Z 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-08-26T19:36:06.1049060Z 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-08-26T19:36:06.1049770Z 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-08-26T19:36:06.1051020Z 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-08-26T19:36:06.1052860Z 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-08-26T19:36:06.1053520Z 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-08-26T19:36:06.1054920Z 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-08-26T19:36:06.1055980Z 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-08-26T19:36:06.1057170Z 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-08-26T19:36:06.1058350Z 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-08-26T19:36:06.1059550Z 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-08-26T19:36:06.1060740Z 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-08-26T19:36:06.1062300Z 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-08-26T19:36:06.1064900Z 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-08-26T19:36:06.1066080Z 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-08-26T19:36:06.1067550Z 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-08-26T19:36:06.1069130Z 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-08-26T19:36:06.1070340Z 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-08-26T19:36:06.1071650Z 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-08-26T19:36:06.1072850Z 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-08-26T19:36:06.1074090Z 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-08-26T19:36:06.1075540Z 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-08-26T19:36:06.1076730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.1078630Z 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-08-26T19:36:06.1079310Z 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-08-26T19:36:06.1085200Z 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-08-26T19:36:06.1085760Z 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-08-26T19:36:06.1086170Z 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-08-26T19:36:06.1086620Z 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-08-26T19:36:06.1086970Z 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-08-26T19:36:06.1087710Z 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-08-26T19:36:06.1088870Z 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-08-26T19:36:06.1090230Z 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-08-26T19:36:06.1091170Z 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-08-26T19:36:06.1092490Z 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-08-26T19:36:06.1093660Z 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-08-26T19:36:06.1094750Z 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-08-26T19:36:06.1095960Z 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-08-26T19:36:06.1097310Z 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-08-26T19:36:06.1098360Z 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-08-26T19:36:06.1099670Z 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-08-26T19:36:06.1100710Z 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-08-26T19:36:06.1102250Z 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-08-26T19:36:06.1103040Z 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-08-26T19:36:06.1104120Z 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-08-26T19:36:06.1105340Z 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-08-26T19:36:06.1106500Z 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-08-26T19:36:06.1107710Z 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-08-26T19:36:06.1111610Z 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-08-26T19:36:06.1115960Z 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-08-26T19:36:06.1119060Z 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-08-26T19:36:06.1119900Z 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-08-26T19:36:06.1127660Z 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-08-26T19:36:06.1133120Z 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-08-26T19:36:06.1134370Z 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-08-26T19:36:06.1141970Z 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-08-26T19:36:06.1142590Z 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-08-26T19:36:06.1149680Z 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-08-26T19:36:06.1150470Z 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-08-26T19:36:06.1151780Z 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-08-26T19:36:06.1156950Z 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-08-26T19:36:06.1158310Z 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-08-26T19:36:06.1194220Z 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-08-26T19:36:06.1197320Z 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-08-26T19:36:06.1203090Z 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-08-26T19:36:06.1204910Z 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-08-26T19:36:06.1211260Z 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-08-26T19:36:06.1212140Z 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-08-26T19:36:06.1213830Z 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-08-26T19:36:06.1220240Z 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-08-26T19:36:06.1221420Z 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-08-26T19:36:06.1227860Z 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-08-26T19:36:06.1229120Z 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-08-26T19:36:06.1236340Z 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-08-26T19:36:06.1237300Z 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-08-26T19:36:06.1238470Z 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-08-26T19:36:06.1244380Z 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-08-26T19:36:06.1245010Z 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-08-26T19:36:06.1246330Z 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-08-26T19:36:06.1253330Z 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-08-26T19:36:06.1260480Z 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-08-26T19:36:06.1262600Z 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-08-26T19:36:06.1267940Z 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-08-26T19:36:06.1268960Z 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-08-26T19:36:06.1270200Z 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-08-26T19:36:06.1275940Z 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-08-26T19:36:06.1276890Z 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-08-26T19:36:06.1283980Z 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-08-26T19:36:06.1285400Z 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-08-26T19:36:06.1291580Z 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-08-26T19:36:06.1292540Z 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-08-26T19:36:06.1293680Z 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-08-26T19:36:06.1299350Z 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-08-26T19:36:06.1300230Z 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-08-26T19:36:06.1307670Z 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-08-26T19:36:06.1309030Z 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-08-26T19:36:06.1315950Z 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-08-26T19:36:06.1316770Z 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-08-26T19:36:06.1317960Z 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-08-26T19:36:06.1323870Z 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-08-26T19:36:06.1324660Z 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-08-26T19:36:06.1331480Z 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-08-26T19:36:06.1332610Z 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-08-26T19:36:06.1339980Z 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-08-26T19:36:06.1340820Z 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-08-26T19:36:06.1349150Z 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-08-26T19:36:06.1350110Z 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-08-26T19:36:06.1378850Z 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-08-26T19:36:06.1383680Z 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-08-26T19:36:06.1385140Z 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-08-26T19:36:06.1387890Z 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-08-26T19:36:06.1392960Z 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-08-26T19:36:06.1393830Z 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-08-26T19:36:06.1397470Z 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-08-26T19:36:06.1402880Z 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-08-26T19:36:06.1406970Z 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-08-26T19:36:06.1410830Z 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-08-26T19:36:06.1411850Z 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-08-26T19:36:06.1419410Z 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-08-26T19:36:06.1423570Z 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-08-26T19:36:06.1424350Z 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-08-26T19:36:06.1428830Z 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-08-26T19:36:06.1431250Z 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-08-26T19:36:06.1434910Z 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-08-26T19:36:06.1437510Z 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-08-26T19:36:06.1441010Z 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-08-26T19:36:06.1445020Z 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-08-26T19:36:06.1446040Z 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-08-26T19:36:06.1452000Z 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-08-26T19:36:06.1453440Z 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-08-26T19:36:06.1460610Z 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-08-26T19:36:06.1461670Z 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-08-26T19:36:06.1468330Z 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-08-26T19:36:06.1469620Z 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-08-26T19:36:06.1470980Z 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-08-26T19:36:06.1476480Z 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-08-26T19:36:06.1477470Z 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-08-26T19:36:06.1483990Z 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-08-26T19:36:06.1485160Z 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-08-26T19:36:06.1486510Z 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-08-26T19:36:06.1493160Z 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-08-26T19:36:06.1493930Z 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-08-26T19:36:06.1500810Z 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-08-26T19:36:06.1502090Z 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-08-26T19:36:06.1508600Z 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-08-26T19:36:06.1509340Z 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-08-26T19:36:06.1510610Z 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-08-26T19:36:06.1515380Z 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-08-26T19:36:06.1516850Z 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-08-26T19:36:06.1523190Z 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-08-26T19:36:06.1524650Z 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-08-26T19:36:06.1527940Z 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-08-26T19:36:06.1533060Z 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-08-26T19:36:06.1540220Z 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-08-26T19:36:06.1541150Z 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-08-26T19:36:06.1549290Z 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-08-26T19:36:06.1550170Z 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-08-26T19:36:06.1557180Z 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-08-26T19:36:06.1558230Z 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-08-26T19:36:06.1559460Z 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-08-26T19:36:06.1566190Z 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-08-26T19:36:06.1567160Z 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-08-26T19:36:06.1568230Z 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-08-26T19:36:06.1574500Z 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-08-26T19:36:06.1575410Z 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-08-26T19:36:06.1582190Z 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-08-26T19:36:06.1592880Z 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-08-26T19:36:06.1603010Z 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-08-26T19:36:06.1622410Z 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-08-26T19:36:06.1623430Z 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-08-26T19:36:06.1625000Z 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-08-26T19:36:06.1626370Z 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-08-26T19:36:06.1627640Z 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-08-26T19:36:06.1628720Z 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-08-26T19:36:06.1629790Z 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-08-26T19:36:06.1630970Z 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-08-26T19:36:06.1632590Z 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-08-26T19:36:06.1633660Z 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-08-26T19:36:06.1634830Z 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-08-26T19:36:06.1635960Z 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-08-26T19:36:06.1637120Z 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-08-26T19:36:06.1638180Z 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-08-26T19:36:06.1639350Z 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-08-26T19:36:06.1640530Z 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-08-26T19:36:06.1642310Z 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-08-26T19:36:06.1643820Z 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-08-26T19:36:06.1645010Z 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-08-26T19:36:06.1650170Z 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-08-26T19:36:06.1651590Z 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-08-26T19:36:06.1657460Z 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-08-26T19:36:06.1658380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.1659660Z 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-08-26T19:36:06.1666640Z 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-08-26T19:36:06.1667530Z 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-08-26T19:36:06.1674990Z 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-08-26T19:36:06.1675900Z 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-08-26T19:36:06.1682330Z 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-08-26T19:36:06.1683350Z 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-08-26T19:36:06.1684620Z 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-08-26T19:36:06.1689950Z 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-08-26T19:36:06.1691480Z 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-08-26T19:36:06.1697780Z 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-08-26T19:36:06.1698600Z 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-08-26T19:36:06.1699790Z 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-08-26T19:36:06.1706600Z 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-08-26T19:36:06.1707440Z 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-08-26T19:36:06.1714420Z 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-08-26T19:36:06.1715880Z 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-08-26T19:36:06.1722340Z 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-08-26T19:36:06.1723660Z 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-08-26T19:36:06.1730140Z 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-08-26T19:36:06.1731490Z 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-08-26T19:36:06.1733790Z 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-08-26T19:36:06.1740360Z 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-08-26T19:36:06.1745910Z 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-08-26T19:36:06.1748510Z 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-08-26T19:36:06.1755530Z 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-08-26T19:36:06.1756710Z 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-08-26T19:36:06.1763820Z 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-08-26T19:36:06.1764670Z 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-08-26T19:36:06.1772660Z 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-08-26T19:36:06.1773490Z 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-08-26T19:36:06.1780700Z 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-08-26T19:36:06.1781940Z 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-08-26T19:36:06.1782670Z 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-08-26T19:36:06.1788830Z 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-08-26T19:36:06.1789850Z 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-08-26T19:36:06.1790700Z 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-08-26T19:36:06.1796500Z 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-08-26T19:36:06.1798080Z 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-08-26T19:36:06.1804130Z 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-08-26T19:36:06.1805620Z 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-08-26T19:36:06.1806760Z 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-08-26T19:36:06.1813550Z 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-08-26T19:36:06.1814580Z 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-08-26T19:36:06.1821820Z 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-08-26T19:36:06.1822920Z 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-08-26T19:36:06.1829760Z 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-08-26T19:36:06.1830810Z 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-08-26T19:36:06.1831590Z 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-08-26T19:36:06.1837550Z 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-08-26T19:36:06.1839080Z 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-08-26T19:36:06.1845560Z 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-08-26T19:36:06.1846660Z 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-08-26T19:36:06.1847400Z 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-08-26T19:36:06.1853710Z 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-08-26T19:36:06.1854690Z 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-08-26T19:36:06.1861620Z 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-08-26T19:36:06.1862430Z 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-08-26T19:36:06.1869850Z 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-08-26T19:36:06.1870690Z 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-08-26T19:36:06.1871780Z 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-08-26T19:36:06.1878230Z 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-08-26T19:36:06.1878950Z 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-08-26T19:36:06.1885890Z 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-08-26T19:36:06.1886730Z 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-08-26T19:36:06.1887820Z 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-08-26T19:36:06.1894580Z 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-08-26T19:36:06.1895450Z 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-08-26T19:36:06.1902310Z 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-08-26T19:36:06.1903180Z 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-08-26T19:36:06.1904360Z 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-08-26T19:36:06.1909970Z 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-08-26T19:36:06.1910870Z 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-08-26T19:36:06.1918120Z 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-08-26T19:36:06.1919190Z 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-08-26T19:36:06.1926150Z 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-08-26T19:36:06.1927030Z 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-08-26T19:36:06.1928440Z 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-08-26T19:36:06.1935440Z 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-08-26T19:36:06.1938450Z 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-08-26T19:36:06.1942820Z 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-08-26T19:36:06.1943840Z 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-08-26T19:36:06.1945180Z 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-08-26T19:36:06.1952420Z 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-08-26T19:36:06.1953420Z 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-08-26T19:36:06.1960160Z 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-08-26T19:36:06.1962130Z 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-08-26T19:36:06.1968320Z 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-08-26T19:36:06.1971310Z 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-08-26T19:36:06.1976160Z 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-08-26T19:36:06.1978550Z 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-08-26T19:36:06.1979710Z 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-08-26T19:36:06.1985700Z 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-08-26T19:36:06.1987230Z 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-08-26T19:36:06.1994010Z 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-08-26T19:36:06.1995240Z 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-08-26T19:36:06.2002630Z 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-08-26T19:36:06.2010560Z 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-08-26T19:36:06.2011550Z 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-08-26T19:36:06.2018150Z 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-08-26T19:36:06.2018950Z 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-08-26T19:36:06.2020010Z 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-08-26T19:36:06.2026570Z 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-08-26T19:36:06.2027470Z 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-08-26T19:36:06.2034710Z 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-08-26T19:36:06.2036140Z 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-08-26T19:36:06.2042850Z 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-08-26T19:36:06.2043740Z 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-08-26T19:36:06.2044880Z 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-08-26T19:36:06.2050660Z 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-08-26T19:36:06.2051810Z 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-08-26T19:36:06.2057840Z 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-08-26T19:36:06.2059220Z 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-08-26T19:36:06.2060380Z 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-08-26T19:36:06.2067620Z 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-08-26T19:36:06.2068630Z 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-08-26T19:36:06.2075460Z 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-08-26T19:36:06.2076310Z 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-08-26T19:36:06.2082920Z 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-08-26T19:36:06.2084050Z 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-08-26T19:36:06.2090430Z 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-08-26T19:36:06.2091520Z 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-08-26T19:36:06.2097690Z 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-08-26T19:36:06.2098600Z 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-08-26T19:36:06.2099910Z 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-08-26T19:36:06.2106430Z 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-08-26T19:36:06.2107270Z 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-08-26T19:36:06.2113650Z 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-08-26T19:36:06.2114890Z 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-08-26T19:36:06.2121720Z 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-08-26T19:36:06.2122720Z 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-08-26T19:36:06.2123810Z 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-08-26T19:36:06.2129980Z 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-08-26T19:36:06.2130840Z 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-08-26T19:36:06.2138160Z 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-08-26T19:36:06.2139060Z 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-08-26T19:36:06.2146240Z 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-08-26T19:36:06.2147080Z 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-08-26T19:36:06.2148170Z 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-08-26T19:36:06.2154320Z 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-08-26T19:36:06.2155550Z 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-08-26T19:36:06.2161990Z 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-08-26T19:36:06.2163050Z 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-08-26T19:36:06.2164260Z 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-08-26T19:36:06.2168920Z 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-08-26T19:36:06.2170180Z 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-08-26T19:36:06.2171870Z 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-08-26T19:36:06.2176830Z 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-08-26T19:36:06.2185100Z 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-08-26T19:36:06.2190030Z 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-08-26T19:36:06.2190840Z 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-08-26T19:36:06.2194290Z 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-08-26T19:36:06.2199300Z 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-08-26T19:36:06.2202420Z 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-08-26T19:36:06.2206880Z 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-08-26T19:36:06.2207750Z 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-08-26T19:36:06.2211820Z 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-08-26T19:36:06.2215710Z 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-08-26T19:36:06.2219980Z 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-08-26T19:36:06.2220950Z 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-08-26T19:36:06.2225340Z 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-08-26T19:36:06.2229190Z 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-08-26T19:36:06.2233410Z 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-08-26T19:36:06.2234340Z 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-08-26T19:36:06.2238520Z 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-08-26T19:36:06.2242220Z 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-08-26T19:36:06.2245720Z 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-08-26T19:36:06.2246920Z 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-08-26T19:36:06.2254780Z 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-08-26T19:36:06.2259710Z 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-08-26T19:36:06.2260530Z 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-08-26T19:36:06.2264170Z 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-08-26T19:36:06.2269260Z 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-08-26T19:36:06.2272330Z 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-08-26T19:36:06.2276690Z 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-08-26T19:36:06.2282160Z 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-08-26T19:36:06.2283000Z 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-08-26T19:36:06.2283960Z 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-08-26T19:36:06.2289700Z 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-08-26T19:36:06.2290600Z 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-08-26T19:36:06.2296540Z 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-08-26T19:36:06.2298740Z 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-08-26T19:36:06.2304750Z 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-08-26T19:36:06.2305750Z 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-08-26T19:36:06.2307950Z 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-08-26T19:36:06.2311960Z 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-08-26T19:36:06.2312930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.2318180Z 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-08-26T19:36:06.2321240Z 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-08-26T19:36:06.2325900Z 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-08-26T19:36:06.2326850Z 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-08-26T19:36:06.2330970Z 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-08-26T19:36:06.2335300Z 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-08-26T19:36:06.2339510Z 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-08-26T19:36:06.2343280Z 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-08-26T19:36:06.2344320Z 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-08-26T19:36:06.2348470Z 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-08-26T19:36:06.2351570Z 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-08-26T19:36:06.2356050Z 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-08-26T19:36:06.2356900Z 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-08-26T19:36:06.2360360Z 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-08-26T19:36:06.2361550Z 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-08-26T19:36:06.2365350Z 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-08-26T19:36:06.2373550Z 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-08-26T19:36:06.2378250Z 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-08-26T19:36:06.2382610Z 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-08-26T19:36:06.2383800Z 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-08-26T19:36:06.2390650Z 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-08-26T19:36:06.2394750Z 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-08-26T19:36:06.2399190Z 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-08-26T19:36:06.2403120Z 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-08-26T19:36:06.2403980Z 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-08-26T19:36:06.2408860Z 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-08-26T19:36:06.2410910Z 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-08-26T19:36:06.2417110Z 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-08-26T19:36:06.2420100Z 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-08-26T19:36:06.2426040Z 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-08-26T19:36:06.2426780Z 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-08-26T19:36:06.2434190Z 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-08-26T19:36:06.2435190Z 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-08-26T19:36:06.2443130Z 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-08-26T19:36:06.2443940Z 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-08-26T19:36:06.2445080Z 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-08-26T19:36:06.2450410Z 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-08-26T19:36:06.2451510Z 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-08-26T19:36:06.2456600Z 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-08-26T19:36:06.2458410Z 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-08-26T19:36:06.2460010Z 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-08-26T19:36:06.2465670Z 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-08-26T19:36:06.2467140Z 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-08-26T19:36:06.2472830Z 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-08-26T19:36:06.2474140Z 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-08-26T19:36:06.2480990Z 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-08-26T19:36:06.2482040Z 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-08-26T19:36:06.2483450Z 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-08-26T19:36:06.2489530Z 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-08-26T19:36:06.2490420Z 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-08-26T19:36:06.2497350Z 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-08-26T19:36:06.2498790Z 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-08-26T19:36:06.2505740Z 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-08-26T19:36:06.2506640Z 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-08-26T19:36:06.2507900Z 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-08-26T19:36:06.2513220Z 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-08-26T19:36:06.2514170Z 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-08-26T19:36:06.2520480Z 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-08-26T19:36:06.2522000Z 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-08-26T19:36:06.2528170Z 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-08-26T19:36:06.2529190Z 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-08-26T19:36:06.2530390Z 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-08-26T19:36:06.2537390Z 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-08-26T19:36:06.2538240Z 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-08-26T19:36:06.2545380Z 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-08-26T19:36:06.2546310Z 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-08-26T19:36:06.2554020Z 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-08-26T19:36:06.2554820Z 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-08-26T19:36:06.2556030Z 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-08-26T19:36:06.2562470Z 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-08-26T19:36:06.2563440Z 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-08-26T19:36:06.2570170Z 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-08-26T19:36:06.2570960Z 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-08-26T19:36:06.2572140Z 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-08-26T19:36:06.2578060Z 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-08-26T19:36:06.2579500Z 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-08-26T19:36:06.2585760Z 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-08-26T19:36:06.2586860Z 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-08-26T19:36:06.2588730Z 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-08-26T19:36:06.2597890Z 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-08-26T19:36:06.2603070Z 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-08-26T19:36:06.2604300Z 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-08-26T19:36:06.2606480Z 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-08-26T19:36:06.2612880Z 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-08-26T19:36:06.2614750Z 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-08-26T19:36:06.2617790Z 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-08-26T19:36:06.2620900Z 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-08-26T19:36:06.2621840Z 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-08-26T19:36:06.2630450Z 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-08-26T19:36:06.2631470Z 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-08-26T19:36:06.2638780Z 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-08-26T19:36:06.2639740Z 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-08-26T19:36:06.2646720Z 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-08-26T19:36:06.2647610Z 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-08-26T19:36:06.2648730Z 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-08-26T19:36:06.2654630Z 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-08-26T19:36:06.2655610Z 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-08-26T19:36:06.2663150Z 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-08-26T19:36:06.2664110Z 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-08-26T19:36:06.2665200Z 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-08-26T19:36:06.2671000Z 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-08-26T19:36:06.2671870Z 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-08-26T19:36:06.2679250Z 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-08-26T19:36:06.2680120Z 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-08-26T19:36:06.2680950Z 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-08-26T19:36:06.2686980Z 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-08-26T19:36:06.2687860Z 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-08-26T19:36:06.2694970Z 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-08-26T19:36:06.2695810Z 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-08-26T19:36:06.2703310Z 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-08-26T19:36:06.2704230Z 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-08-26T19:36:06.2705240Z 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-08-26T19:36:06.2710620Z 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-08-26T19:36:06.2711700Z 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-08-26T19:36:06.2718700Z 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-08-26T19:36:06.2719540Z 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-08-26T19:36:06.2720730Z 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-08-26T19:36:06.2726470Z 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-08-26T19:36:06.2727470Z 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-08-26T19:36:06.2734710Z 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-08-26T19:36:06.2735570Z 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-08-26T19:36:06.2742540Z 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-08-26T19:36:06.2743710Z 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-08-26T19:36:06.2745270Z 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-08-26T19:36:06.2750150Z 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-08-26T19:36:06.2753720Z 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-08-26T19:36:06.2760050Z 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-08-26T19:36:06.2760950Z 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-08-26T19:36:06.2767270Z 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-08-26T19:36:06.2768570Z 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-08-26T19:36:06.2775100Z 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-08-26T19:36:06.2775920Z 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-08-26T19:36:06.2776840Z 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-08-26T19:36:06.2783260Z 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-08-26T19:36:06.2784130Z 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-08-26T19:36:06.2791090Z 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-08-26T19:36:06.2792030Z 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-08-26T19:36:06.2793340Z 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-08-26T19:36:06.2799410Z 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-08-26T19:36:06.2800300Z 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-08-26T19:36:06.2802050Z 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-08-26T19:36:06.2811760Z 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-08-26T19:36:06.2816990Z 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-08-26T19:36:06.2817810Z 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-08-26T19:36:06.2820770Z 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-08-26T19:36:06.2825680Z 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-08-26T19:36:06.2827060Z 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-08-26T19:36:06.2833520Z 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-08-26T19:36:06.2834980Z 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-08-26T19:36:06.2841160Z 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-08-26T19:36:06.2842660Z 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-08-26T19:36:06.2843950Z 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-08-26T19:36:06.2848560Z 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-08-26T19:36:06.2849920Z 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-08-26T19:36:06.2856670Z 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-08-26T19:36:06.2857900Z 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-08-26T19:36:06.2864090Z 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-08-26T19:36:06.2865420Z 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-08-26T19:36:06.2866780Z 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-08-26T19:36:06.2873340Z 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-08-26T19:36:06.2874200Z 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-08-26T19:36:06.2881080Z 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-08-26T19:36:06.2882450Z 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-08-26T19:36:06.2888910Z 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-08-26T19:36:06.2889990Z 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-08-26T19:36:06.2890970Z 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-08-26T19:36:06.2897160Z 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-08-26T19:36:06.2897940Z 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-08-26T19:36:06.2905370Z 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-08-26T19:36:06.2906360Z 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-08-26T19:36:06.2913210Z 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-08-26T19:36:06.2914970Z 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-08-26T19:36:06.2920630Z 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-08-26T19:36:06.2922610Z 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-08-26T19:36:06.2923900Z 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-08-26T19:36:06.2930640Z 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-08-26T19:36:06.2931600Z 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-08-26T19:36:06.2938650Z 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-08-26T19:36:06.2939650Z 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-08-26T19:36:06.2946870Z 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-08-26T19:36:06.2947820Z 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-08-26T19:36:06.2949060Z 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-08-26T19:36:06.2954830Z 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-08-26T19:36:06.2955640Z 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-08-26T19:36:06.2962550Z 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-08-26T19:36:06.2963400Z 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-08-26T19:36:06.2964520Z 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-08-26T19:36:06.2970500Z 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-08-26T19:36:06.2971270Z 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-08-26T19:36:06.2978520Z 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-08-26T19:36:06.2979430Z 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-08-26T19:36:06.2980460Z 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-08-26T19:36:06.2986350Z 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-08-26T19:36:06.2987610Z 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-08-26T19:36:06.2994540Z 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-08-26T19:36:06.2995490Z 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-08-26T19:36:06.2996720Z 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-08-26T19:36:06.3003290Z 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-08-26T19:36:06.3004260Z 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-08-26T19:36:06.3011800Z 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-08-26T19:36:06.3012930Z 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-08-26T19:36:06.3015130Z 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-08-26T19:36:06.3019670Z 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-08-26T19:36:06.3024790Z 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-08-26T19:36:06.3029010Z 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-08-26T19:36:06.3032060Z 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-08-26T19:36:06.3032980Z 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-08-26T19:36:06.3038600Z 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-08-26T19:36:06.3039620Z 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-08-26T19:36:06.3046340Z 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-08-26T19:36:06.3047130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.3054370Z 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-08-26T19:36:06.3055120Z 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-08-26T19:36:06.3061730Z 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-08-26T19:36:06.3062740Z 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-08-26T19:36:06.3063640Z 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-08-26T19:36:06.3069610Z 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-08-26T19:36:06.3070350Z 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-08-26T19:36:06.3077250Z 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-08-26T19:36:06.3078490Z 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-08-26T19:36:06.3086230Z 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-08-26T19:36:06.3087120Z 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-08-26T19:36:06.3093440Z 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-08-26T19:36:06.3094260Z 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-08-26T19:36:06.3100770Z 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-08-26T19:36:06.3101630Z 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-08-26T19:36:06.3109620Z 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-08-26T19:36:06.3110440Z 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-08-26T19:36:06.3111560Z 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-08-26T19:36:06.3114630Z 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-08-26T19:36:06.3118690Z 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-08-26T19:36:06.3122470Z 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-08-26T19:36:06.3123310Z 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-08-26T19:36:06.3128240Z 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-08-26T19:36:06.3131470Z 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-08-26T19:36:06.3135630Z 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-08-26T19:36:06.3137140Z 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-08-26T19:36:06.3138260Z 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-08-26T19:36:06.3145240Z 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-08-26T19:36:06.3146130Z 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-08-26T19:36:06.3152520Z 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-08-26T19:36:06.3154620Z 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-08-26T19:36:06.3160120Z 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-08-26T19:36:06.3161370Z 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-08-26T19:36:06.3163770Z 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-08-26T19:36:06.3170210Z 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-08-26T19:36:06.3171150Z 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-08-26T19:36:06.3177710Z 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-08-26T19:36:06.3178710Z 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-08-26T19:36:06.3185620Z 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-08-26T19:36:06.3186520Z 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-08-26T19:36:06.3187910Z 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-08-26T19:36:06.3193520Z 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-08-26T19:36:06.3194410Z 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-08-26T19:36:06.3201400Z 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-08-26T19:36:06.3202490Z 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-08-26T19:36:06.3203520Z 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-08-26T19:36:06.3209320Z 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-08-26T19:36:06.3210890Z 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-08-26T19:36:06.3217650Z 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-08-26T19:36:06.3218590Z 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-08-26T19:36:06.3219740Z 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-08-26T19:36:06.3226300Z 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-08-26T19:36:06.3227270Z 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-08-26T19:36:06.3235380Z 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-08-26T19:36:06.3238010Z 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-08-26T19:36:06.3243700Z 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-08-26T19:36:06.3250290Z 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-08-26T19:36:06.3251150Z 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-08-26T19:36:06.3255560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.3260030Z 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-08-26T19:36:06.3260790Z 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-08-26T19:36:06.3264970Z 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-08-26T19:36:06.3268940Z 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-08-26T19:36:06.3272500Z 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-08-26T19:36:06.3273260Z 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-08-26T19:36:06.3278790Z 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-08-26T19:36:06.3281690Z 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-08-26T19:36:06.3286400Z 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-08-26T19:36:06.3287180Z 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-08-26T19:36:06.3288250Z 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-08-26T19:36:06.3295660Z 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-08-26T19:36:06.3296640Z 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-08-26T19:36:06.3303360Z 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-08-26T19:36:06.3304740Z 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-08-26T19:36:06.3311230Z 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-08-26T19:36:06.3312270Z 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-08-26T19:36:06.3313260Z 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-08-26T19:36:06.3318800Z 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-08-26T19:36:06.3319950Z 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-08-26T19:36:06.3326110Z 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-08-26T19:36:06.3328060Z 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-08-26T19:36:06.3334910Z 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-08-26T19:36:06.3335700Z 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-08-26T19:36:06.3337080Z 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-08-26T19:36:06.3341910Z 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-08-26T19:36:06.3343850Z 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-08-26T19:36:06.3349440Z 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-08-26T19:36:06.3350850Z 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-08-26T19:36:06.3357330Z 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-08-26T19:36:06.3358160Z 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-08-26T19:36:06.3359260Z 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-08-26T19:36:06.3366620Z 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-08-26T19:36:06.3367550Z 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-08-26T19:36:06.3374670Z 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-08-26T19:36:06.3375930Z 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-08-26T19:36:06.3382850Z 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-08-26T19:36:06.3383690Z 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-08-26T19:36:06.3390790Z 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-08-26T19:36:06.3391750Z 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-08-26T19:36:06.3399370Z 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-08-26T19:36:06.3400400Z 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-08-26T19:36:06.3401550Z 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-08-26T19:36:06.3407310Z 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-08-26T19:36:06.3408280Z 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-08-26T19:36:06.3415900Z 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-08-26T19:36:06.3416910Z 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-08-26T19:36:06.3422590Z 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-08-26T19:36:06.3424590Z 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-08-26T19:36:06.3430500Z 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-08-26T19:36:06.3431470Z 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-08-26T19:36:06.3434710Z 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-08-26T19:36:06.3439890Z 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-08-26T19:36:06.3441070Z 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-08-26T19:36:06.3443660Z 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-08-26T19:36:06.3444640Z 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-08-26T19:36:06.3454050Z 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-08-26T19:36:06.3458600Z 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-08-26T19:36:06.3461870Z 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-08-26T19:36:06.3465590Z 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-08-26T19:36:06.3466570Z 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-08-26T19:36:06.3470510Z 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-08-26T19:36:06.3474270Z 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-08-26T19:36:06.3478670Z 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-08-26T19:36:06.3481700Z 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-08-26T19:36:06.3486150Z 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-08-26T19:36:06.3486860Z 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-08-26T19:36:06.3490670Z 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-08-26T19:36:06.3495280Z 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-08-26T19:36:06.3499780Z 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-08-26T19:36:06.3503390Z 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-08-26T19:36:06.3504240Z 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-08-26T19:36:06.3508810Z 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-08-26T19:36:06.3511960Z 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-08-26T19:36:06.3516260Z 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-08-26T19:36:06.3517050Z 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-08-26T19:36:06.3520970Z 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-08-26T19:36:06.3526310Z 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-08-26T19:36:06.3530160Z 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-08-26T19:36:06.3534420Z 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-08-26T19:36:06.3535210Z 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-08-26T19:36:06.3538120Z 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-08-26T19:36:06.3542570Z 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-08-26T19:36:06.3543480Z 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-08-26T19:36:06.3547110Z 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-08-26T19:36:06.3552020Z 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-08-26T19:36:06.3556300Z 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-08-26T19:36:06.3559630Z 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-08-26T19:36:06.3560460Z 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-08-26T19:36:06.3566730Z 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-08-26T19:36:06.3567570Z 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-08-26T19:36:06.3573840Z 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-08-26T19:36:06.3574710Z 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-08-26T19:36:06.3581500Z 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-08-26T19:36:06.3582370Z 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-08-26T19:36:06.3583450Z 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-08-26T19:36:06.3588050Z 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-08-26T19:36:06.3591040Z 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-08-26T19:36:06.3595610Z 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-08-26T19:36:06.3596510Z 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-08-26T19:36:06.3603000Z 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-08-26T19:36:06.3604470Z 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-08-26T19:36:06.3611380Z 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-08-26T19:36:06.3612320Z 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-08-26T19:36:06.3613540Z 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-08-26T19:36:06.3618430Z 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-08-26T19:36:06.3620900Z 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-08-26T19:36:06.3621890Z 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-08-26T19:36:06.3627620Z 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-08-26T19:36:06.3631350Z 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-08-26T19:36:06.3636330Z 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-08-26T19:36:06.3638760Z 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-08-26T19:36:06.3639550Z 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-08-26T19:36:06.3645730Z 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-08-26T19:36:06.3647280Z 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-08-26T19:36:06.3654770Z 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-08-26T19:36:06.3655780Z 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-08-26T19:36:06.3658470Z 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-08-26T19:36:06.3664380Z 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-08-26T19:36:06.3667550Z 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-08-26T19:36:06.3671230Z 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-08-26T19:36:06.3676100Z 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-08-26T19:36:06.3678440Z 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-08-26T19:36:06.3679590Z 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-08-26T19:36:06.3685550Z 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-08-26T19:36:06.3686440Z 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-08-26T19:36:06.3693460Z 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-08-26T19:36:06.3694380Z 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-08-26T19:36:06.3702710Z 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-08-26T19:36:06.3703540Z 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-08-26T19:36:06.3709950Z 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-08-26T19:36:06.3710880Z 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-08-26T19:36:06.3717470Z 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-08-26T19:36:06.3718270Z 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-08-26T19:36:06.3725740Z 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-08-26T19:36:06.3726530Z 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-08-26T19:36:06.3727720Z 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-08-26T19:36:06.3734390Z 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-08-26T19:36:06.3735100Z 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-08-26T19:36:06.3742040Z 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-08-26T19:36:06.3742880Z 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-08-26T19:36:06.3744040Z 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-08-26T19:36:06.3749890Z 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-08-26T19:36:06.3758160Z 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-08-26T19:36:06.3758870Z 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-08-26T19:36:06.3760190Z 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-08-26T19:36:06.3766310Z 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-08-26T19:36:06.3767210Z 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-08-26T19:36:06.3774580Z 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-08-26T19:36:06.3775480Z 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-08-26T19:36:06.3783370Z 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-08-26T19:36:06.3784140Z 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-08-26T19:36:06.3785300Z 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-08-26T19:36:06.3790450Z 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-08-26T19:36:06.3791930Z 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-08-26T19:36:06.3798500Z 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-08-26T19:36:06.3799570Z 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-08-26T19:36:06.3800650Z 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-08-26T19:36:06.3806850Z 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-08-26T19:36:06.3807700Z 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-08-26T19:36:06.3814530Z 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-08-26T19:36:06.3815700Z 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-08-26T19:36:06.3822160Z 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-08-26T19:36:06.3823060Z 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-08-26T19:36:06.3824230Z 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-08-26T19:36:06.3830090Z 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-08-26T19:36:06.3830960Z 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-08-26T19:36:06.3837670Z 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-08-26T19:36:06.3839020Z 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-08-26T19:36:06.3846630Z 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-08-26T19:36:06.3847530Z 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-08-26T19:36:06.3848650Z 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-08-26T19:36:06.3854520Z 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-08-26T19:36:06.3855410Z 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-08-26T19:36:06.3856470Z 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-08-26T19:36:06.3863650Z 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-08-26T19:36:06.3864490Z 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-08-26T19:36:06.3866310Z 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-08-26T19:36:06.3874840Z 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-08-26T19:36:06.3880000Z 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-08-26T19:36:06.3881860Z 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-08-26T19:36:06.3882970Z 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-08-26T19:36:06.3889700Z 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-08-26T19:36:06.3890930Z 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-08-26T19:36:06.3897740Z 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-08-26T19:36:06.3898620Z 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-08-26T19:36:06.3905650Z 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-08-26T19:36:06.3906490Z 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-08-26T19:36:06.3907700Z 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-08-26T19:36:06.3914360Z 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-08-26T19:36:06.3922960Z 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-08-26T19:36:06.3923750Z 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-08-26T19:36:06.3924890Z 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-08-26T19:36:06.3930500Z 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-08-26T19:36:06.3934350Z 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-08-26T19:36:06.3937910Z 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-08-26T19:36:06.3938640Z 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-08-26T19:36:06.3942230Z 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-08-26T19:36:06.3946390Z 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-08-26T19:36:06.3947160Z 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-08-26T19:36:06.3951410Z 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-08-26T19:36:06.3955730Z 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-08-26T19:36:06.3959490Z 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-08-26T19:36:06.3960200Z 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-08-26T19:36:06.3965130Z 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-08-26T19:36:06.3967460Z 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-08-26T19:36:06.3972960Z 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-08-26T19:36:06.3974050Z 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-08-26T19:36:06.3979830Z 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-08-26T19:36:06.3981060Z 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-08-26T19:36:06.3988260Z 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-08-26T19:36:06.3988890Z 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-08-26T19:36:06.3990030Z 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-08-26T19:36:06.3995420Z 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-08-26T19:36:06.3996620Z 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-08-26T19:36:06.4002960Z 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-08-26T19:36:06.4004370Z 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-08-26T19:36:06.4010770Z 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-08-26T19:36:06.4011690Z 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-08-26T19:36:06.4013740Z 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-08-26T19:36:06.4020240Z 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-08-26T19:36:06.4020890Z 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-08-26T19:36:06.4028110Z 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-08-26T19:36:06.4029230Z 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-08-26T19:36:06.4035680Z 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-08-26T19:36:06.4036410Z 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-08-26T19:36:06.4037560Z 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-08-26T19:36:06.4042890Z 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-08-26T19:36:06.4044630Z 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-08-26T19:36:06.4051250Z 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-08-26T19:36:06.4052120Z 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-08-26T19:36:06.4053250Z 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-08-26T19:36:06.4060230Z 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-08-26T19:36:06.4061040Z 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-08-26T19:36:06.4068080Z 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-08-26T19:36:06.4069600Z 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-08-26T19:36:06.4074680Z 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-08-26T19:36:06.4076090Z 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-08-26T19:36:06.4082970Z 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-08-26T19:36:06.4091820Z 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-08-26T19:36:06.4092690Z 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-08-26T19:36:06.4099460Z 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-08-26T19:36:06.4100330Z 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-08-26T19:36:06.4101530Z 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-08-26T19:36:06.4106770Z 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-08-26T19:36:06.4108710Z 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-08-26T19:36:06.4114910Z 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-08-26T19:36:06.4115710Z 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-08-26T19:36:06.4117180Z 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-08-26T19:36:06.4123710Z 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-08-26T19:36:06.4127470Z 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-08-26T19:36:06.4133570Z 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-08-26T19:36:06.4135870Z 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-08-26T19:36:06.4140900Z 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-08-26T19:36:06.4141890Z 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-08-26T19:36:06.4143940Z 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-08-26T19:36:06.4149080Z 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-08-26T19:36:06.4149990Z 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-08-26T19:36:06.4156890Z 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-08-26T19:36:06.4158090Z 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-08-26T19:36:06.4164820Z 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-08-26T19:36:06.4165460Z 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-08-26T19:36:06.4166960Z 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-08-26T19:36:06.4173420Z 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-08-26T19:36:06.4174450Z 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-08-26T19:36:06.4181190Z 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-08-26T19:36:06.4182070Z 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-08-26T19:36:06.4189440Z 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-08-26T19:36:06.4190070Z 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-08-26T19:36:06.4191420Z 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-08-26T19:36:06.4197410Z 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-08-26T19:36:06.4198280Z 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-08-26T19:36:06.4204870Z 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-08-26T19:36:06.4205900Z 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-08-26T19:36:06.4207000Z 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-08-26T19:36:06.4213040Z 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-08-26T19:36:06.4213850Z 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-08-26T19:36:06.4220620Z 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-08-26T19:36:06.4222510Z 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-08-26T19:36:06.4228270Z 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-08-26T19:36:06.4229120Z 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-08-26T19:36:06.4230400Z 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-08-26T19:36:06.4236140Z 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-08-26T19:36:06.4237130Z 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-08-26T19:36:06.4244080Z 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-08-26T19:36:06.4245260Z 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-08-26T19:36:06.4253760Z 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-08-26T19:36:06.4254670Z 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-08-26T19:36:06.4260900Z 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-08-26T19:36:06.4261780Z 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-08-26T19:36:06.4268610Z 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-08-26T19:36:06.4269390Z 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-08-26T19:36:06.4276160Z 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-08-26T19:36:06.4276810Z 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-08-26T19:36:06.4277980Z 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-08-26T19:36:06.4281900Z 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-08-26T19:36:06.4289670Z 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-08-26T19:36:06.4290610Z 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-08-26T19:36:06.4294930Z 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-08-26T19:36:06.4299430Z 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-08-26T19:36:06.4302320Z 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-08-26T19:36:06.4303090Z 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-08-26T19:36:06.4308930Z 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-08-26T19:36:06.4310680Z 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-08-26T19:36:06.4316290Z 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-08-26T19:36:06.4317880Z 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-08-26T19:36:06.4320560Z 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-08-26T19:36:06.4325060Z 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-08-26T19:36:06.4325850Z 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-08-26T19:36:06.4332140Z 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-08-26T19:36:06.4333440Z 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-08-26T19:36:06.4339970Z 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-08-26T19:36:06.4341570Z 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-08-26T19:36:06.4347260Z 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-08-26T19:36:06.4348650Z 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-08-26T19:36:06.4349860Z 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-08-26T19:36:06.4356580Z 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-08-26T19:36:06.4357610Z 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-08-26T19:36:06.4364670Z 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-08-26T19:36:06.4365550Z 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-08-26T19:36:06.4372900Z 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-08-26T19:36:06.4373510Z 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-08-26T19:36:06.4374670Z 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-08-26T19:36:06.4381210Z 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-08-26T19:36:06.4381950Z 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-08-26T19:36:06.4388660Z 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-08-26T19:36:06.4389490Z 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-08-26T19:36:06.4390580Z 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-08-26T19:36:06.4396080Z 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-08-26T19:36:06.4397320Z 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-08-26T19:36:06.4403660Z 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-08-26T19:36:06.4404630Z 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-08-26T19:36:06.4411450Z 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-08-26T19:36:06.4412770Z 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-08-26T19:36:06.4419280Z 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-08-26T19:36:06.4420430Z 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-08-26T19:36:06.4427620Z 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-08-26T19:36:06.4428750Z 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-08-26T19:36:06.4436360Z 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-08-26T19:36:06.4437080Z 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-08-26T19:36:06.4438260Z 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-08-26T19:36:06.4443800Z 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-08-26T19:36:06.4444840Z 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-08-26T19:36:06.4452040Z 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-08-26T19:36:06.4655010Z 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-08-26T19:36:06.4655820Z 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-08-26T19:36:06.4656960Z 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-08-26T19:36:06.4657990Z 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-08-26T19:36:06.4659410Z 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-08-26T19:36:06.4660340Z 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-08-26T19:36:06.4661500Z 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-08-26T19:36:06.4662550Z 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-08-26T19:36:06.4663710Z 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-08-26T19:36:06.4664920Z 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-08-26T19:36:06.4665970Z 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-08-26T19:36:06.4667090Z 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-08-26T19:36:06.4668250Z 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-08-26T19:36:06.4669380Z 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-08-26T19:36:06.4670690Z 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-08-26T19:36:06.4671770Z 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-08-26T19:36:06.4672990Z 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-08-26T19:36:06.4674130Z 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-08-26T19:36:06.4675290Z 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-08-26T19:36:06.4676550Z 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-08-26T19:36:06.4677700Z 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-08-26T19:36:06.4678870Z 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-08-26T19:36:06.4680160Z 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-08-26T19:36:06.4681250Z 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-08-26T19:36:06.4682320Z 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-08-26T19:36:06.4683540Z 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-08-26T19:36:06.4684670Z 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-08-26T19:36:06.4685800Z 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-08-26T19:36:06.4687030Z 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-08-26T19:36:06.4688120Z 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-08-26T19:36:06.4689240Z 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-08-26T19:36:06.4690340Z 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-08-26T19:36:06.4691510Z 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-08-26T19:36:06.4692560Z 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-08-26T19:36:06.4693710Z 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-08-26T19:36:06.4694900Z 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-08-26T19:36:06.4696030Z 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-08-26T19:36:06.4697150Z 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-08-26T19:36:06.4698220Z 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-08-26T19:36:06.4699410Z 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-08-26T19:36:06.4700580Z 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-08-26T19:36:06.4701760Z 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-08-26T19:36:06.4702780Z 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-08-26T19:36:06.4703930Z 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-08-26T19:36:06.4705200Z 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-08-26T19:36:06.4706350Z 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-08-26T19:36:06.4707420Z 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-08-26T19:36:06.4708470Z 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-08-26T19:36:06.4709780Z 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-08-26T19:36:06.4710810Z 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-08-26T19:36:06.4712020Z 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-08-26T19:36:06.4713180Z 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-08-26T19:36:06.4714300Z 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-08-26T19:36:06.4715560Z 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-08-26T19:36:06.4716650Z 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-08-26T19:36:06.4874850Z 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-08-26T19:36:06.4891250Z 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-08-26T19:36:06.4892200Z 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-08-26T19:36:06.4893280Z 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-08-26T19:36:06.4894390Z 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-08-26T19:36:06.4895530Z 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-08-26T19:36:06.4896450Z 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-08-26T19:36:06.4897560Z 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-08-26T19:36:06.4898610Z 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-08-26T19:36:06.4899790Z 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-08-26T19:36:06.4900870Z 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-08-26T19:36:06.4935560Z 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-08-26T19:36:06.4936420Z 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-08-26T19:36:06.4937510Z 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-08-26T19:36:06.4938710Z 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-08-26T19:36:06.4939800Z 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-08-26T19:36:06.4961200Z 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-08-26T19:36:06.4962110Z 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-08-26T19:36:06.4963220Z 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-08-26T19:36:06.4978720Z 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-08-26T19:36:06.4979490Z 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-08-26T19:36:06.4982470Z 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-08-26T19:36:06.4983440Z 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-08-26T19:36:06.4992560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.4993340Z 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-08-26T19:36:06.5012920Z 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-08-26T19:36:06.5013790Z 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-08-26T19:36:06.5014990Z 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-08-26T19:36:06.5028500Z 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-08-26T19:36:06.5029400Z 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-08-26T19:36:06.5041650Z 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-08-26T19:36:06.5042650Z 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-08-26T19:36:06.5054630Z 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-08-26T19:36:06.5055420Z 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-08-26T19:36:06.5056560Z 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-08-26T19:36:06.5057760Z 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-08-26T19:36:06.5058790Z 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-08-26T19:36:06.5059920Z 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-08-26T19:36:06.5086120Z 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-08-26T19:36:06.5087290Z 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-08-26T19:36:06.5102650Z 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-08-26T19:36:06.5103890Z 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-08-26T19:36:06.5104550Z 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-08-26T19:36:06.5121710Z 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-08-26T19:36:06.5122530Z 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-08-26T19:36:06.5136270Z 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-08-26T19:36:06.5137220Z 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-08-26T19:36:06.5138120Z 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-08-26T19:36:06.5139280Z 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-08-26T19:36:06.5161880Z 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-08-26T19:36:06.5162690Z 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-08-26T19:36:06.5163820Z 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-08-26T19:36:06.5164920Z 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-08-26T19:36:06.5166200Z 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-08-26T19:36:06.5167310Z 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-08-26T19:36:06.5168540Z 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-08-26T19:36:06.5169610Z 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-08-26T19:36:06.5170620Z 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-08-26T19:36:06.5171820Z 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-08-26T19:36:06.5172920Z 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-08-26T19:36:06.5173990Z 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-08-26T19:36:06.5175030Z 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-08-26T19:36:06.5176130Z 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-08-26T19:36:06.5177370Z 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-08-26T19:36:06.5178340Z 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-08-26T19:36:06.5179710Z 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-08-26T19:36:06.5180900Z 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-08-26T19:36:06.5181690Z 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-08-26T19:36:06.5182820Z 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-08-26T19:36:06.5183970Z 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-08-26T19:36:06.5185140Z 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-08-26T19:36:06.5190110Z 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-08-26T19:36:06.5190740Z 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-08-26T19:36:06.5191200Z 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-08-26T19:36:06.5191590Z 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-08-26T19:36:06.5191960Z 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-08-26T19:36:06.5192310Z 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-08-26T19:36:06.5192910Z 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-08-26T19:36:06.5194100Z 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-08-26T19:36:06.5195170Z 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-08-26T19:36:06.5196420Z 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-08-26T19:36:06.5197540Z 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-08-26T19:36:06.5198740Z 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-08-26T19:36:06.5200030Z 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-08-26T19:36:06.5201030Z 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-08-26T19:36:06.5202210Z 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-08-26T19:36:06.5203400Z 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-08-26T19:36:06.5204590Z 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-08-26T19:36:06.5205700Z 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-08-26T19:36:06.5206880Z 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-08-26T19:36:06.5207950Z 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-08-26T19:36:06.5209190Z 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-08-26T19:36:06.5210270Z 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-08-26T19:36:06.5341800Z 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-08-26T19:36:06.5342570Z 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-08-26T19:36:06.5343700Z 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-08-26T19:36:06.5344870Z 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-08-26T19:36:06.5345940Z 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-08-26T19:36:06.5347110Z 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-08-26T19:36:06.5348160Z 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-08-26T19:36:06.5349240Z 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-08-26T19:36:06.5350620Z 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-08-26T19:36:06.5352950Z 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-08-26T19:36:06.5353870Z 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-08-26T19:36:06.5357480Z 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-08-26T19:36:06.5359130Z 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-08-26T19:36:06.5361320Z 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-08-26T19:36:06.5362820Z 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-08-26T19:36:06.5365110Z 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-08-26T19:36:06.5366600Z 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-08-26T19:36:06.5368520Z 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-08-26T19:36:06.5371030Z 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-08-26T19:36:06.5373240Z 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-08-26T19:36:06.5374960Z 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-08-26T19:36:06.5376890Z 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-08-26T19:36:06.5379550Z 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-08-26T19:36:06.5381180Z 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-08-26T19:36:06.5383510Z 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-08-26T19:36:06.5384500Z 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-08-26T19:36:06.5385490Z 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-08-26T19:36:06.5386940Z 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-08-26T19:36:06.5443540Z 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-08-26T19:36:06.5444450Z 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-08-26T19:36:06.5445410Z 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-08-26T19:36:06.5446680Z 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-08-26T19:36:06.5447700Z 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-08-26T19:36:06.5448940Z 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-08-26T19:36:06.5464740Z 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-08-26T19:36:06.5474420Z 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-08-26T19:36:06.5476070Z 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-08-26T19:36:06.5476480Z 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-08-26T19:36:06.5477580Z 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-08-26T19:36:06.5478710Z 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-08-26T19:36:06.5479820Z 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-08-26T19:36:06.5480870Z 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-08-26T19:36:06.5482100Z 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-08-26T19:36:06.5483230Z 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-08-26T19:36:06.5484320Z 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-08-26T19:36:06.5485410Z 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-08-26T19:36:06.5486540Z 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-08-26T19:36:06.5487620Z 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-08-26T19:36:06.5488760Z 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-08-26T19:36:06.5489980Z 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-08-26T19:36:06.5491160Z 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-08-26T19:36:06.5492390Z 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-08-26T19:36:06.5493490Z 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-08-26T19:36:06.5494850Z 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-08-26T19:36:06.5495840Z 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-08-26T19:36:06.5496950Z 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-08-26T19:36:06.5498010Z 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-08-26T19:36:06.5499150Z 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-08-26T19:36:06.5500330Z 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-08-26T19:36:06.5501440Z 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-08-26T19:36:06.5502620Z 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-08-26T19:36:06.5503760Z 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-08-26T19:36:06.5504730Z 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-08-26T19:36:06.5505860Z 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-08-26T19:36:06.5507090Z 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-08-26T19:36:06.5508190Z 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-08-26T19:36:06.5509130Z 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-08-26T19:36:06.5510300Z 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-08-26T19:36:06.5511600Z 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-08-26T19:36:06.5512670Z 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-08-26T19:36:06.5514300Z 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-08-26T19:36:06.5515450Z 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-08-26T19:36:06.5609130Z 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-08-26T19:36:06.5610150Z 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-08-26T19:36:06.5611300Z 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-08-26T19:36:06.5612510Z 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-08-26T19:36:06.5613480Z 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-08-26T19:36:06.5614580Z 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-08-26T19:36:06.5615830Z 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-08-26T19:36:06.5616910Z 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-08-26T19:36:06.5618030Z 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-08-26T19:36:06.5619280Z 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-08-26T19:36:06.5620280Z 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-08-26T19:36:06.5621370Z 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-08-26T19:36:06.5622480Z 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-08-26T19:36:06.5623620Z 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-08-26T19:36:06.5624700Z 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-08-26T19:36:06.5625770Z 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-08-26T19:36:06.5626900Z 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-08-26T19:36:06.5628080Z 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-08-26T19:36:06.5629200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.5630710Z 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-08-26T19:36:06.5631840Z 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-08-26T19:36:06.5634050Z 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-08-26T19:36:06.5634420Z 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-08-26T19:36:06.5635340Z 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-08-26T19:36:06.5636570Z 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-08-26T19:36:06.5637650Z 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-08-26T19:36:06.5638870Z 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-08-26T19:36:06.5640030Z 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-08-26T19:36:06.5641150Z 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-08-26T19:36:06.5642330Z 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-08-26T19:36:06.5643540Z 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-08-26T19:36:06.5644640Z 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-08-26T19:36:06.5645760Z 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-08-26T19:36:06.5646880Z 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-08-26T19:36:06.5648110Z 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-08-26T19:36:06.5649160Z 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-08-26T19:36:06.5650420Z 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-08-26T19:36:06.5651530Z 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-08-26T19:36:06.5652940Z 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-08-26T19:36:06.5654360Z 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-08-26T19:36:06.5655580Z 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-08-26T19:36:06.5656820Z 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-08-26T19:36:06.5657980Z 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-08-26T19:36:06.5659250Z 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-08-26T19:36:06.5660290Z 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-08-26T19:36:06.5661570Z 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-08-26T19:36:06.5662840Z 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-08-26T19:36:06.5663910Z 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-08-26T19:36:06.5664950Z 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-08-26T19:36:06.5666140Z 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-08-26T19:36:06.5667420Z 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-08-26T19:36:06.5668540Z 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-08-26T19:36:06.5669740Z 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-08-26T19:36:06.5670940Z 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-08-26T19:36:06.5672110Z 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-08-26T19:36:06.5673290Z 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-08-26T19:36:06.5674600Z 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-08-26T19:36:06.5675870Z 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-08-26T19:36:06.5677030Z 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-08-26T19:36:06.5818240Z 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-08-26T19:36:06.5819110Z 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-08-26T19:36:06.5820140Z 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-08-26T19:36:06.5821640Z 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-08-26T19:36:06.5822540Z 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-08-26T19:36:06.5823540Z 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-08-26T19:36:06.5824630Z 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-08-26T19:36:06.5825650Z 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-08-26T19:36:06.5826780Z 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-08-26T19:36:06.5827990Z 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-08-26T19:36:06.5829020Z 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-08-26T19:36:06.5830130Z 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-08-26T19:36:06.5831340Z 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-08-26T19:36:06.5832540Z 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-08-26T19:36:06.5833610Z 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-08-26T19:36:06.5834640Z 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-08-26T19:36:06.5835830Z 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-08-26T19:36:06.5836860Z 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-08-26T19:36:06.5838070Z 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-08-26T19:36:06.5839180Z 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-08-26T19:36:06.5840260Z 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-08-26T19:36:06.5841400Z 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-08-26T19:36:06.5842570Z 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-08-26T19:36:06.5843730Z 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-08-26T19:36:06.5844800Z 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-08-26T19:36:06.5846050Z 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-08-26T19:36:06.5847200Z 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-08-26T19:36:06.5848320Z 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-08-26T19:36:06.5849430Z 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-08-26T19:36:06.5850510Z 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-08-26T19:36:06.5851670Z 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-08-26T19:36:06.5852940Z 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-08-26T19:36:06.5854030Z 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-08-26T19:36:06.5855210Z 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-08-26T19:36:06.5856460Z 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-08-26T19:36:06.5857600Z 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-08-26T19:36:06.5858850Z 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-08-26T19:36:06.5859950Z 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-08-26T19:36:06.5861090Z 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-08-26T19:36:06.5862230Z 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-08-26T19:36:06.5863330Z 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-08-26T19:36:06.5864470Z 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-08-26T19:36:06.5865540Z 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-08-26T19:36:06.5866770Z 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-08-26T19:36:06.5868110Z 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-08-26T19:36:06.5869130Z 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-08-26T19:36:06.5870190Z 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-08-26T19:36:06.5871270Z 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-08-26T19:36:06.5872420Z 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-08-26T19:36:06.5873600Z 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-08-26T19:36:06.5874660Z 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-08-26T19:36:06.5875700Z 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-08-26T19:36:06.5898850Z 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-08-26T19:36:06.5899690Z 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-08-26T19:36:06.5900830Z 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-08-26T19:36:06.6008620Z 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-08-26T19:36:06.6009410Z 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-08-26T19:36:06.6010570Z 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-08-26T19:36:06.6011660Z 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-08-26T19:36:06.6021850Z 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-08-26T19:36:06.6022450Z 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-08-26T19:36:06.6023630Z 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-08-26T19:36:06.6024870Z 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-08-26T19:36:06.6025990Z 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-08-26T19:36:06.6027070Z 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-08-26T19:36:06.6028210Z 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-08-26T19:36:06.6029350Z 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-08-26T19:36:06.6030450Z 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-08-26T19:36:06.6031730Z 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-08-26T19:36:06.6042210Z 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-08-26T19:36:06.6043210Z 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-08-26T19:36:06.6044320Z 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-08-26T19:36:06.6045390Z 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-08-26T19:36:06.6046500Z 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-08-26T19:36:06.6047610Z 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-08-26T19:36:06.6048790Z 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-08-26T19:36:06.6050040Z 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-08-26T19:36:06.6051080Z 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-08-26T19:36:06.6052210Z 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-08-26T19:36:06.6053380Z 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-08-26T19:36:06.6054570Z 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-08-26T19:36:06.6055650Z 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-08-26T19:36:06.6056820Z 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-08-26T19:36:06.6058050Z 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-08-26T19:36:06.6059150Z 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-08-26T19:36:06.6060240Z 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-08-26T19:36:06.6061470Z 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-08-26T19:36:06.6062650Z 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-08-26T19:36:06.6063910Z 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-08-26T19:36:06.6064810Z 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-08-26T19:36:06.6065910Z 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-08-26T19:36:06.6067060Z 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-08-26T19:36:06.6068240Z 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-08-26T19:36:06.6069440Z 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-08-26T19:36:06.6070600Z 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-08-26T19:36:06.6071860Z 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-08-26T19:36:06.6073020Z 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-08-26T19:36:06.6074140Z 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-08-26T19:36:06.6075210Z 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-08-26T19:36:06.6076290Z 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-08-26T19:36:06.6077430Z 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-08-26T19:36:06.6078530Z 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-08-26T19:36:06.6079740Z 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-08-26T19:36:06.6081150Z 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-08-26T19:36:06.6081910Z 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-08-26T19:36:06.6082970Z 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-08-26T19:36:06.6084570Z 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-08-26T19:36:06.6085400Z 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-08-26T19:36:06.6086420Z 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-08-26T19:36:06.6087670Z 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-08-26T19:36:06.6088870Z 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-08-26T19:36:06.6089980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.6091150Z 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-08-26T19:36:06.6092250Z 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-08-26T19:36:06.6093270Z 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-08-26T19:36:06.6094430Z 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-08-26T19:36:06.6095480Z 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-08-26T19:36:06.6096980Z 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-08-26T19:36:06.6098090Z 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-08-26T19:36:06.6099190Z 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-08-26T19:36:06.6100390Z 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-08-26T19:36:06.6101500Z 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-08-26T19:36:06.6102590Z 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-08-26T19:36:06.6103640Z 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-08-26T19:36:06.6104960Z 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-08-26T19:36:06.6105970Z 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-08-26T19:36:06.6107200Z 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-08-26T19:36:06.6108230Z 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-08-26T19:36:06.6109320Z 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-08-26T19:36:06.6110490Z 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-08-26T19:36:06.6111570Z 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-08-26T19:36:06.6112770Z 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-08-26T19:36:06.6113920Z 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-08-26T19:36:06.6115090Z 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-08-26T19:36:06.6116150Z 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-08-26T19:36:06.6117260Z 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-08-26T19:36:06.6118350Z 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-08-26T19:36:06.6119420Z 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-08-26T19:36:06.6120560Z 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-08-26T19:36:06.6121660Z 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-08-26T19:36:06.6122930Z 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-08-26T19:36:06.6123960Z 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-08-26T19:36:06.6125200Z 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-08-26T19:36:06.6128740Z 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-08-26T19:36:06.6129420Z 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-08-26T19:36:06.6130610Z 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-08-26T19:36:06.6136750Z 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-08-26T19:36:06.6137550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-08-26T19:36:06.6145010Z 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-08-26T19:36:06.6145760Z 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-08-26T19:36:06.6153000Z 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-08-26T19:36:06.6153620Z 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-08-26T19:36:06.6154790Z 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-08-26T19:36:06.6160620Z 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-08-26T19:36:06.6162530Z 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-08-26T19:36:06.6168660Z 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-08-26T19:36:06.6169510Z 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-08-26T19:36:06.6170730Z 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-08-26T19:36:06.6176310Z 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-08-26T19:36:06.6177010Z 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-08-26T19:36:06.6184300Z 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-08-26T19:36:06.6185390Z 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-08-26T19:36:06.6188230Z 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-08-26T19:36:06.6193870Z 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-08-26T19:36:06.6194730Z 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-08-26T19:36:06.6196370Z 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-08-26T19:36:06.6203270Z 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-08-26T19:36:06.6204610Z 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-08-26T19:36:06.6210340Z 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-08-26T19:36:06.6211840Z 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-08-26T19:36:06.6213100Z 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-08-26T19:36:06.6219890Z 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-08-26T19:36:06.6220780Z 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-08-26T19:36:06.6228810Z 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-08-26T19:36:06.6231890Z 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-08-26T19:36:06.6236310Z 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-08-26T19:36:06.6237200Z 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-08-26T19:36:06.6241350Z 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-08-26T19:36:06.6245860Z 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-08-26T19:36:06.6248810Z 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-08-26T19:36:06.6255650Z 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-08-26T19:36:06.6257770Z 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-08-26T19:36:06.6263460Z 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-08-26T19:36:06.6264390Z 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-08-26T19:36:06.6267280Z 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-08-26T19:36:06.6272900Z 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-08-26T19:36:06.6273870Z 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-08-26T19:36:06.6281920Z 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-08-26T19:36:06.6282760Z 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-08-26T19:36:06.6289830Z 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-08-26T19:36:06.6290740Z 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-08-26T19:36:06.6291790Z 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-08-26T19:36:06.6298010Z 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-08-26T19:36:06.6299250Z 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-08-26T19:36:06.6300570Z 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-08-26T19:36:06.6305440Z 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-08-26T19:36:06.6306840Z 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-08-26T19:36:06.6313420Z 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-08-26T19:36:06.6314830Z 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-08-26T19:36:06.6321670Z 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-08-26T19:36:06.6322570Z 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-08-26T19:36:06.6323680Z 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-08-26T19:36:06.6329000Z 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-08-26T19:36:06.6329940Z 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-08-26T19:36:06.6336690Z 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-08-26T19:36:06.6337860Z 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-08-26T19:36:06.6344980Z 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-08-26T19:36:06.6345990Z 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-08-26T19:36:06.6347030Z 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-08-26T19:36:06.6354140Z 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-08-26T19:36:06.6354960Z 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-08-26T19:36:06.6361710Z 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-08-26T19:36:06.6362560Z 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-08-26T19:36:06.6368920Z 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-08-26T19:36:06.6369720Z 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-08-26T19:36:06.6370890Z 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-08-26T19:36:06.6377180Z 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-08-26T19:36:06.6378000Z 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-08-26T19:36:06.6385120Z 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-08-26T19:36:06.6385950Z 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-08-26T19:36:06.6386960Z 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-08-26T19:36:06.6392020Z 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-08-26T19:36:06.6394050Z 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-08-26T19:36:06.6399800Z 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-08-26T19:36:06.6401000Z 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-08-26T19:36:06.6407850Z 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-08-26T19:36:06.6408730Z 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-08-26T19:36:06.6409740Z 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-08-26T19:36:06.6416870Z 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-08-26T19:36:06.6425770Z 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-08-26T19:36:06.6426660Z 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-08-26T19:36:06.6431330Z 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-08-26T19:36:06.6435100Z 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-08-26T19:36:06.6438750Z 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-08-26T19:36:06.6439740Z 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-08-26T19:36:06.6444930Z 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-08-26T19:36:06.6447680Z 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-08-26T19:36:06.6452210Z 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-08-26T19:36:06.6453470Z 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-08-26T19:36:06.6460300Z 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-08-26T19:36:06.6461130Z 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-08-26T19:36:06.6467450Z 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-08-26T19:36:06.6468500Z 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-08-26T19:36:06.6469690Z 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-08-26T19:36:06.6477340Z 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-08-26T19:36:06.6478200Z 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-08-26T19:36:06.6485400Z 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-08-26T19:36:06.6486290Z 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-08-26T19:36:06.6492690Z 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-08-26T19:36:06.6493370Z 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-08-26T19:36:06.6494550Z 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-08-26T19:36:06.6500240Z 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-08-26T19:36:06.6501300Z 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-08-26T19:36:06.6509450Z 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-08-26T19:36:06.6510260Z 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-08-26T19:36:06.6511250Z 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-08-26T19:36:06.6516950Z 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-08-26T19:36:06.6518270Z 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-08-26T19:36:06.6525270Z 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-08-26T19:36:06.6525910Z 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-08-26T19:36:06.6527050Z 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-08-26T19:36:06.6532950Z 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-08-26T19:36:06.6534080Z 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-08-26T19:36:06.6541270Z 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-08-26T19:36:06.6543050Z 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-08-26T19:36:06.6549720Z 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-08-26T19:36:06.6550570Z 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-08-26T19:36:06.6557860Z 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-08-26T19:36:06.6558710Z 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-08-26T19:36:06.6565380Z 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-08-26T19:36:06.6566410Z 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-08-26T19:36:06.6567600Z 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-08-26T19:36:06.6573590Z 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-08-26T19:36:06.6574450Z 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-08-26T19:36:06.6580420Z 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-08-26T19:36:06.6582770Z 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-08-26T19:36:06.6588190Z 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-08-26T19:36:06.6589030Z 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-08-26T19:36:06.6590150Z 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-08-26T19:36:06.6596380Z 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-08-26T19:36:06.6597270Z 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-08-26T19:36:06.6603530Z 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-08-26T19:36:06.6605570Z 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-08-26T19:36:06.6610960Z 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-08-26T19:36:06.6612010Z 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-08-26T19:36:06.6613060Z 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-08-26T19:36:06.6619830Z 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-08-26T19:36:06.6620730Z 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-08-26T19:36:06.6624390Z 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-08-26T19:36:06.6628730Z 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-08-26T19:36:06.6631760Z 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-08-26T19:36:06.6636620Z 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-08-26T19:36:06.6637380Z 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-08-26T19:36:06.6645930Z 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-08-26T19:36:06.6646800Z 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-08-26T19:36:06.6653650Z 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-08-26T19:36:06.6656180Z 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-08-26T19:36:06.6661730Z 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-08-26T19:36:06.6662780Z 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-08-26T19:36:06.6663850Z 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-08-26T19:36:06.6669370Z 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-08-26T19:36:06.6670120Z 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-08-26T19:36:06.6676920Z 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-08-26T19:36:06.6678440Z 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-08-26T19:36:06.6685130Z 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-08-26T19:36:06.6685920Z 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-08-26T19:36:06.6686920Z 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-08-26T19:36:06.6692600Z 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-08-26T19:36:06.6694030Z 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-08-26T19:36:06.6700390Z 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-08-26T19:36:06.6701770Z 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-08-26T19:36:06.6703000Z 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-08-26T19:36:06.6710410Z 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-08-26T19:36:06.6711220Z 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-08-26T19:36:06.6717980Z 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-08-26T19:36:06.6719260Z 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-08-26T19:36:06.6725620Z 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-08-26T19:36:06.6726620Z 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-08-26T19:36:06.6727670Z 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-08-26T19:36:06.6733620Z 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-08-26T19:36:06.6735130Z 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-08-26T19:36:06.6741940Z 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-08-26T19:36:06.6743170Z 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-08-26T19:36:06.6744450Z 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-08-26T19:36:06.6749250Z 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-08-26T19:36:06.6750620Z 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-08-26T19:36:06.6757290Z 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-08-26T19:36:06.6762880Z 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-08-26T19:36:06.6763780Z 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-08-26T19:36:06.6767410Z 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-08-26T19:36:06.6768320Z 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-08-26T19:36:06.6774840Z 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-08-26T19:36:06.6776030Z 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-08-26T19:36:06.6782410Z 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-08-26T19:36:06.6783270Z 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-08-26T19:36:06.6784450Z 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-08-26T19:36:06.6790080Z 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-08-26T19:36:06.6791350Z 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-08-26T19:36:06.6798420Z 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-08-26T19:36:06.6799320Z 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-08-26T19:36:06.6800440Z 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-08-26T19:36:06.6806450Z 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-08-26T19:36:06.6807600Z 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-08-26T19:36:06.6814470Z 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-08-26T19:36:06.6815680Z 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-08-26T19:36:06.6816850Z 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-08-26T19:36:06.6823910Z 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-08-26T19:36:06.6824740Z 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-08-26T19:36:06.6831760Z 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-08-26T19:36:06.6832610Z 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-08-26T19:36:06.6833680Z 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-08-26T19:36:06.6839440Z 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-08-26T19:36:06.6840840Z 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-08-26T19:36:06.6844910Z 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-08-26T19:36:06.6849200Z 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-08-26T19:36:06.6856410Z 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-08-26T19:36:06.6857600Z 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-08-26T19:36:06.6864090Z 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-08-26T19:36:06.6865080Z 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-08-26T19:36:06.6866560Z 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-08-26T19:36:06.6873350Z 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-08-26T19:36:06.6874380Z 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-08-26T19:36:06.6881290Z 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-08-26T19:36:06.6882340Z 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-08-26T19:36:06.6889810Z 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-08-26T19:36:06.6890800Z 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-08-26T19:36:06.6891860Z 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-08-26T19:36:06.6897280Z 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-08-26T19:36:06.6898170Z 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-08-26T19:36:06.6905140Z 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-08-26T19:36:06.6906010Z 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-08-26T19:36:06.6907210Z 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-08-26T19:36:06.6912920Z 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-08-26T19:36:06.6922240Z 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-08-26T19:36:06.6923060Z 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-08-26T19:36:06.6929580Z 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-08-26T19:36:06.6930340Z 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-08-26T19:36:06.6931680Z 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-08-26T19:36:06.6938940Z 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-08-26T19:36:06.6939860Z 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-08-26T19:36:06.6944350Z 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-08-26T19:36:06.6945290Z 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-08-26T19:36:06.6946440Z 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-08-26T19:36:06.6947810Z 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-08-26T19:36:06.6953780Z 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-08-26T19:36:06.6954730Z 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-08-26T19:36:06.6961770Z 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-08-26T19:36:06.6962670Z 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-08-26T19:36:06.6968940Z 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-08-26T19:36:06.6970130Z 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-08-26T19:36:06.6971480Z 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-08-26T19:36:06.6976860Z 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-08-26T19:36:06.6978460Z 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-08-26T19:36:06.6984300Z 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-08-26T19:36:06.6985470Z 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-08-26T19:36:06.6986860Z 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-08-26T19:36:06.6993620Z 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-08-26T19:36:06.6994450Z 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-08-26T19:36:06.7001180Z 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-08-26T19:36:06.7002120Z 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-08-26T19:36:06.7008960Z 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-08-26T19:36:06.7009800Z 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-08-26T19:36:06.7011040Z 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-08-26T19:36:06.7016170Z 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-08-26T19:36:06.7018070Z 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-08-26T19:36:06.7024610Z 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-08-26T19:36:06.7025450Z 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-08-26T19:36:06.7026910Z 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-08-26T19:36:06.7034270Z 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-08-26T19:36:06.7035160Z 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-08-26T19:36:06.7042070Z 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-08-26T19:36:06.7043310Z 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-08-26T19:36:06.7050210Z 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-08-26T19:36:06.7051300Z 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-08-26T19:36:06.7052490Z 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-08-26T19:36:06.7059940Z 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-08-26T19:36:06.7060710Z 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-08-26T19:36:06.7067510Z 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-08-26T19:36:06.7262150Z 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-08-26T19:36:06.7262930Z 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-08-26T19:36:06.7264270Z 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-08-26T19:36:06.7265170Z 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-08-26T19:36:06.7266400Z 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-08-26T19:36:06.7267630Z 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-08-26T19:36:06.7268600Z 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-08-26T19:36:06.7269650Z 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-08-26T19:36:06.7270750Z 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-08-26T19:36:06.7271920Z 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-08-26T19:36:06.7272990Z 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-08-26T19:36:06.7274150Z 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-08-26T19:36:06.7275310Z 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-08-26T19:36:06.7276440Z 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-08-26T19:36:06.7277550Z 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-08-26T19:36:06.7278620Z 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-08-26T19:36:06.7279740Z 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-08-26T19:36:06.7280840Z 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-08-26T19:36:06.7282010Z 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-08-26T19:36:06.7283230Z 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-08-26T19:36:06.7284160Z 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-08-26T19:36:06.7285290Z 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-08-26T19:36:06.7286480Z 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-08-26T19:36:06.7287560Z 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-08-26T19:36:06.7288540Z 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-08-26T19:36:06.7289690Z 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-08-26T19:36:06.7290840Z 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-08-26T19:36:06.7291890Z 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-08-26T19:36:06.7293080Z 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-08-26T19:36:06.7294370Z 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-08-26T19:36:06.7295440Z 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-08-26T19:36:06.7296650Z 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-08-26T19:36:06.7297770Z 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-08-26T19:36:06.7298980Z 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-08-26T19:36:06.7300230Z 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-08-26T19:36:06.7301320Z 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-08-26T19:36:06.7302430Z 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-08-26T19:36:06.7303530Z 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-08-26T19:36:06.7304700Z 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-08-26T19:36:06.7305860Z 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-08-26T19:36:06.7307000Z 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-08-26T19:36:06.7308030Z 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-08-26T19:36:06.7309260Z 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-08-26T19:36:06.7310420Z 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-08-26T19:36:06.7311670Z 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-08-26T19:36:06.7312790Z 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-08-26T19:36:06.7313940Z 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-08-26T19:36:06.7315150Z 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-08-26T19:36:06.7316340Z 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-08-26T19:36:06.7317430Z 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-08-26T19:36:06.7318480Z 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-08-26T19:36:06.7319660Z 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-08-26T19:36:06.7320800Z 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-08-26T19:36:06.7321860Z 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-08-26T19:36:06.7323020Z 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-08-26T19:36:06.7324090Z 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-08-26T19:36:06.7325190Z 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-08-26T19:36:06.7326290Z 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-08-26T19:36:06.7327410Z 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-08-26T19:36:06.7328490Z 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-08-26T19:36:06.7329610Z 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-08-26T19:36:06.7330740Z 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-08-26T19:36:06.7331850Z 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-08-26T19:36:06.7333010Z 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-08-26T19:36:06.7334040Z 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-08-26T19:36:06.7335200Z 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-08-26T19:36:06.7336340Z 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-08-26T19:36:06.7337430Z 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-08-26T19:36:06.7338520Z 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-08-26T19:36:06.7339640Z 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-08-26T19:36:06.7522450Z 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-08-26T19:36:06.7523330Z 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-08-26T19:36:06.7524400Z 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-08-26T19:36:06.7525460Z 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-08-26T19:36:06.7545800Z 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-08-26T19:36:06.7546810Z 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-08-26T19:36:06.7547780Z 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-08-26T19:36:06.7549270Z 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-08-26T19:36:06.7550290Z 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-08-26T19:36:06.7551240Z 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-08-26T19:36:06.7552310Z 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-08-26T19:36:06.7553360Z 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-08-26T19:36:06.7554520Z 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-08-26T19:36:06.7555690Z 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-08-26T19:36:06.7556820Z 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-08-26T19:36:06.7557890Z 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-08-26T19:36:06.7559040Z 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-08-26T19:36:06.7560250Z 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-08-26T19:36:06.7561510Z 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-08-26T19:36:06.7562500Z 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-08-26T19:36:06.7563750Z 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-08-26T19:36:06.7564790Z 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-08-26T19:36:06.7565940Z 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-08-26T19:36:06.7567070Z 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-08-26T19:36:06.7568210Z 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-08-26T19:36:06.7626030Z 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-08-26T19:36:06.7626880Z 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-08-26T19:36:06.7627940Z 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-08-26T19:36:06.7629010Z 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-08-26T19:36:06.7630150Z 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-08-26T19:36:06.7631260Z 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-08-26T19:36:06.7632470Z 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-08-26T19:36:06.7633600Z 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-08-26T19:36:06.7634740Z 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-08-26T19:36:06.7635930Z 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-08-26T19:36:06.7637170Z 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-08-26T19:36:06.7638260Z 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-08-26T19:36:06.7639390Z 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-08-26T19:36:06.7640440Z 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-08-26T19:36:06.7641560Z 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-08-26T19:36:06.7642620Z 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-08-26T19:36:06.7643750Z 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-08-26T19:36:06.7644810Z 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-08-26T19:36:06.7645840Z 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-08-26T19:36:06.7646990Z 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-08-26T19:36:06.7648040Z 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-08-26T19:36:06.7649210Z 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-08-26T19:36:06.7650330Z 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-08-26T19:36:06.7651360Z 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-08-26T19:36:06.7652410Z 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-08-26T19:36:06.7653440Z 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-08-26T19:36:06.7654520Z 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-08-26T19:36:06.7655720Z 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-08-26T19:36:06.7656870Z 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-08-26T19:36:06.7657940Z 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-08-26T19:36:06.7658960Z 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-08-26T19:36:06.7660020Z 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-08-26T19:36:06.7661170Z 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-08-26T19:36:06.7662520Z 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-08-26T19:36:06.7663790Z 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-08-26T19:36:06.7664930Z 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-08-26T19:36:06.7666030Z 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-08-26T19:36:06.7667300Z 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-08-26T19:36:06.7668270Z 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-08-26T19:36:06.7669470Z 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-08-26T19:36:06.7670490Z 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-08-26T19:36:06.7671700Z 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-08-26T19:36:06.7672720Z 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-08-26T19:36:06.7673840Z 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-08-26T19:36:06.7675000Z 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-08-26T19:36:06.7676070Z 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-08-26T19:36:06.7677230Z 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-08-26T19:36:06.7678360Z 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-08-26T19:36:06.7679460Z 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-08-26T19:36:06.7680560Z 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-08-26T19:36:06.7681770Z 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-08-26T19:36:06.7682960Z 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-08-26T19:36:06.7684070Z 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-08-26T19:36:06.7685350Z 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-08-26T19:36:06.7686810Z 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-08-26T19:36:06.7687660Z 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-08-26T19:36:06.7688810Z 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-08-26T19:36:06.7689960Z 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-08-26T19:36:06.7691100Z 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-08-26T19:36:06.7692220Z 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-08-26T19:36:06.7693350Z 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-08-26T19:36:06.7694420Z 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-08-26T19:36:06.7695640Z 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-08-26T19:36:06.7696840Z 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-08-26T19:36:06.7697910Z 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-08-26T19:36:06.7699190Z 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-08-26T19:36:06.7700240Z 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-08-26T19:36:06.7701360Z 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-08-26T19:36:06.7702500Z 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-08-26T19:36:06.7703680Z 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-08-26T19:36:06.7704740Z 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-08-26T19:36:06.7705860Z 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-08-26T19:36:06.7707050Z 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-08-26T19:36:06.7708160Z 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-08-26T19:36:06.7709290Z 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-08-26T19:36:06.7710400Z 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-08-26T19:36:06.7711640Z 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-08-26T19:36:06.7712830Z 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-08-26T19:36:06.7713910Z 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-08-26T19:36:06.7715030Z 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-08-26T19:36:06.7716240Z 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-08-26T19:36:06.7717410Z 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-08-26T19:36:06.7718450Z 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-08-26T19:36:06.7719580Z 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-08-26T19:36:06.7720680Z 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-08-26T19:36:06.7727500Z 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-08-26T19:36:06.7728320Z 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-08-26T19:36:06.7735600Z 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-08-26T19:36:06.7736430Z 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-08-26T19:36:06.7737420Z 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-08-26T19:36:06.7743220Z 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-08-26T19:36:06.7744500Z 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-08-26T19:36:06.7749960Z 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-08-26T19:36:06.7755200Z 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-08-26T19:36:06.7755960Z 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-08-26T19:36:06.7759740Z 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-08-26T19:36:06.7760540Z 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-08-26T19:36:06.7768960Z 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-08-26T19:36:06.7772780Z 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-08-26T19:36:06.7773560Z 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-08-26T19:36:06.7778250Z 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-08-26T19:36:06.7781430Z 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-08-26T19:36:06.7785900Z 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-08-26T19:36:06.7786950Z 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-08-26T19:36:06.7790780Z 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-08-26T19:36:06.7795190Z 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-08-26T19:36:06.7798690Z 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-08-26T19:36:06.7802660Z 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-08-26T19:36:06.7803530Z 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-08-26T19:36:06.7808520Z 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-08-26T19:36:06.7811510Z 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-08-26T19:36:06.7816650Z 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-08-26T19:36:06.7821170Z 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-08-26T19:36:06.7825580Z 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-08-26T19:36:06.7829490Z 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-08-26T19:36:06.7832710Z 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-08-26T19:36:06.7833640Z 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-08-26T19:36:06.7839200Z 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-08-26T19:36:06.7841000Z 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-08-26T19:36:06.7847410Z 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-08-26T19:36:06.7848210Z 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-08-26T19:36:06.7849970Z 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-08-26T19:36:06.7856300Z 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-08-26T19:36:06.7858210Z 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-08-26T19:36:06.7863430Z 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-08-26T19:36:06.7864390Z 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-08-26T19:36:06.7866770Z 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-08-26T19:36:06.7873220Z 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-08-26T19:36:06.7875040Z 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-08-26T19:36:06.7881850Z 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-08-26T19:36:06.7882780Z 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-08-26T19:36:06.7883850Z 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-08-26T19:36:06.7889400Z 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-08-26T19:36:06.7890220Z 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-08-26T19:36:06.7897350Z 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-08-26T19:36:06.7898450Z 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-08-26T19:36:06.7905510Z 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-08-26T19:36:06.7906420Z 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-08-26T19:36:06.7907580Z 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-08-26T19:36:06.7913450Z 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-08-26T19:36:06.7914500Z 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-08-26T19:36:06.7923730Z 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-08-26T19:36:06.7929450Z 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-08-26T19:36:06.7930480Z 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-08-26T19:36:06.7931610Z 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-08-26T19:36:06.7936830Z 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-08-26T19:36:06.7937910Z 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-08-26T19:36:06.7944490Z 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-08-26T19:36:06.7945790Z 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-08-26T19:36:06.7952770Z 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-08-26T19:36:06.7953600Z 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-08-26T19:36:06.7954680Z 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-08-26T19:36:06.7961240Z 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-08-26T19:36:06.7962250Z 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-08-26T19:36:06.7969530Z 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-08-26T19:36:06.7970320Z 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-08-26T19:36:06.7971240Z 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-08-26T19:36:06.7978740Z 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-08-26T19:36:06.7981190Z 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-08-26T19:36:06.7986160Z 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-08-26T19:36:06.7987070Z 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-08-26T19:36:06.7991380Z 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-08-26T19:36:06.7995620Z 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-08-26T19:36:06.7999710Z 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-08-26T19:36:06.8000630Z 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-08-26T19:36:06.8005400Z 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-08-26T19:36:06.8009130Z 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-08-26T19:36:06.8014320Z 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-08-26T19:36:06.8015200Z 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-08-26T19:36:06.8018940Z 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-08-26T19:36:06.8021790Z 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-08-26T19:36:06.8022600Z 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-08-26T19:36:06.8027420Z 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-08-26T19:36:06.8031640Z 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-08-26T19:36:06.8036580Z 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-08-26T19:36:06.8038300Z 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-08-26T19:36:06.8242090Z 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-08-26T19:36:06.8242960Z 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-08-26T19:36:06.8261010Z 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-08-26T19:36:06.8261820Z 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-08-26T19:36:06.8277900Z 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-08-26T19:36:06.8278770Z 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-08-26T19:36:06.8292480Z 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-08-26T19:36:06.8293270Z 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-08-26T19:36:06.8306200Z 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-08-26T19:36:06.8307110Z 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-08-26T19:36:06.8308290Z 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-08-26T19:36:06.8322570Z 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-08-26T19:36:06.8323440Z 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-08-26T19:36:06.8338690Z 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-08-26T19:36:06.8339500Z 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-08-26T19:36:06.8341030Z 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-08-26T19:36:06.8341910Z 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-08-26T19:36:06.8342900Z 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-08-26T19:36:06.8365240Z 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-08-26T19:36:06.8366150Z 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-08-26T19:36:06.8378720Z 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-08-26T19:36:06.8379600Z 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-08-26T19:36:06.8392690Z 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-08-26T19:36:06.8393700Z 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-08-26T19:36:06.8394750Z 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-08-26T19:36:06.8396230Z 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-08-26T19:36:06.8397160Z 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-08-26T19:36:06.8398050Z 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-08-26T19:36:06.8399130Z 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-08-26T19:36:06.8400420Z 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-08-26T19:36:06.8401620Z 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-08-26T19:36:06.8402810Z 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-08-26T19:36:06.8403870Z 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-08-26T19:36:06.8405130Z 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-08-26T19:36:06.8406150Z 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-08-26T19:36:06.8407290Z 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-08-26T19:36:06.8408640Z 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-08-26T19:36:06.8409840Z 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-08-26T19:36:06.8411350Z 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-08-26T19:36:06.8455540Z 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-08-26T19:36:06.8540340Z 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-08-26T19:36:06.8542040Z 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-08-26T19:36:06.8543340Z 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-08-26T19:36:07.1842770Z 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-08-26T19:36:07.1890640Z 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-08-26T19:36:07.1891430Z 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-08-26T19:36:07.1892240Z 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-08-26T19:36:07.1893200Z 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-08-26T19:36:07.1894040Z 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-08-26T19:36:07.1894790Z 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-08-26T19:36:07.1895630Z 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-08-26T19:36:07.1896530Z 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-08-26T19:36:07.1897390Z 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-08-26T19:36:07.1898150Z 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-08-26T19:36:07.1898890Z 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-08-26T19:36:07.1899750Z 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-08-26T19:36:07.1900590Z 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-08-26T19:36:07.1901400Z 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-08-26T19:36:07.1902150Z 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-08-26T19:36:07.1902950Z 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-08-26T19:36:07.1903870Z 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-08-26T19:36:07.1904780Z 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-08-26T19:36:07.1905570Z 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-08-26T19:36:07.1906510Z 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-08-26T19:36:07.1907420Z 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-08-26T19:36:07.1908130Z 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-08-26T19:36:07.1908840Z 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-08-26T19:36:07.1909590Z 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-08-26T19:36:07.1910370Z 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-08-26T19:36:07.1911060Z 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-08-26T19:36:07.1911790Z 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-08-26T19:36:07.1912490Z 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-08-26T19:36:07.1913200Z 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-08-26T19:36:07.2038650Z 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-08-26T19:36:07.2039650Z 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-08-26T19:36:07.2040890Z 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-08-26T19:36:07.2042270Z 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-08-26T19:36:07.2043800Z 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-08-26T19:36:07.2045460Z 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-08-26T19:36:07.2046610Z 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-08-26T19:36:07.2047740Z 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-08-26T19:36:07.2048980Z 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-08-26T19:36:07.2050460Z 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-08-26T19:36:07.2051670Z 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-08-26T19:36:07.2052910Z 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-08-26T19:36:07.2055120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-08-26T19:36:07.2055750Z 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-08-26T19:36:07.2056980Z 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-08-26T19:36:07.2058090Z 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-08-26T19:36:07.2059230Z 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-08-26T19:36:07.2060490Z 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-08-26T19:36:07.2061680Z 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-08-26T19:36:07.2063060Z 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-08-26T19:36:07.2064240Z 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-08-26T19:36:07.2065320Z 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-08-26T19:36:07.2066470Z 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-08-26T19:36:07.2067700Z 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-08-26T19:36:07.2068980Z 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-08-26T19:36:07.2070020Z 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-08-26T19:36:07.2071090Z 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-08-26T19:36:07.2072250Z 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-08-26T19:36:07.2073390Z 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-08-26T19:36:07.2074650Z 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-08-26T19:36:07.2076010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-08-26T19:36:07.2076770Z 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-08-26T19:36:07.2078030Z 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-08-26T19:36:07.2079110Z 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-08-26T19:36:07.2080360Z 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-08-26T19:36:07.2081570Z 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-08-26T19:36:07.2082740Z 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-08-26T19:36:07.2083870Z 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-08-26T19:36:07.2086450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10 2025-08-26T19:36:07.2087410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-08-26T19:36:07.2088140Z 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-08-26T19:36:07.2089730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-08-26T19:36:07.2090510Z 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-08-26T19:36:07.2092090Z 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-08-26T19:36:07.2093330Z 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-08-26T19:36:07.2094540Z 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-08-26T19:36:07.2095710Z 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-08-26T19:36:07.2097020Z 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-08-26T19:36:07.2098120Z 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-08-26T19:36:07.2099470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyInterpreterHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-08-26T19:36:07.2100570Z 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-08-26T19:36:07.2101700Z 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-08-26T19:36:07.2102810Z 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-08-26T19:36:07.2104100Z 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-08-26T19:36:07.2105080Z 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-08-26T19:36:07.2106240Z 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-08-26T19:36:07.2107360Z 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-08-26T19:36:07.2108500Z 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-08-26T19:36:07.2111450Z 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-08-26T19:36:07.2114840Z 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-08-26T19:36:07.2118360Z 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-08-26T19:36:07.2121420Z 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-08-26T19:36:07.2123550Z 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-08-26T19:36:07.2128140Z 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-08-26T19:36:07.2131080Z 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-08-26T19:36:07.2135500Z 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-08-26T19:36:07.2136940Z 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-08-26T19:36:07.2139860Z 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-08-26T19:36:07.2146130Z 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-08-26T19:36:07.2148760Z 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-08-26T19:36:07.2152490Z 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-08-26T19:36:07.2153360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/AllocatorConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-08-26T19:36:07.2159070Z 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-08-26T19:36:07.2160880Z 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-08-26T19:36:07.2165820Z 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-08-26T19:36:07.2167230Z 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-08-26T19:36:07.2169910Z 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-08-26T19:36:07.2189120Z 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-08-26T19:36:07.2191220Z 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-08-26T19:36:07.2200760Z 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-08-26T19:36:07.2201650Z 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-08-26T19:36:07.2216650Z 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-08-26T19:36:07.2422510Z 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-08-26T19:36:07.2428810Z 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-08-26T19:36:07.2476480Z 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-08-26T19:36:07.2477770Z 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-08-26T19:36:07.2479030Z 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-08-26T19:36:07.2480120Z 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-08-26T19:36:07.2481180Z 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-08-26T19:36:07.2482280Z 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-08-26T19:36:07.2483430Z 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-08-26T19:36:07.2484650Z 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-08-26T19:36:07.2486060Z 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-08-26T19:36:07.2490640Z 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-08-26T19:36:07.2492530Z 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-08-26T19:36:07.2493580Z 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-08-26T19:36:07.2494900Z 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-08-26T19:36:07.2495920Z 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-08-26T19:36:07.2496990Z 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-08-26T19:36:07.2502930Z 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-08-26T19:36:07.2503710Z 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-08-26T19:36:07.2504470Z 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-08-26T19:36:07.2505320Z 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-08-26T19:36:07.2506050Z 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-08-26T19:36:07.2506810Z 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-08-26T19:36:07.2507540Z 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-08-26T19:36:07.2689680Z 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-08-26T19:36:07.2690530Z 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-08-26T19:36:07.2691780Z 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-08-26T19:36:07.2693400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test 2025-08-26T19:36:07.2694040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-08-26T19:36:07.2694820Z 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-08-26T19:36:07.2696240Z 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-08-26T19:36:07.2697490Z 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-08-26T19:36:07.2699330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-08-26T19:36:07.2700050Z 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-08-26T19:36:07.2701320Z 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-08-26T19:36:07.2702860Z 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-08-26T19:36:07.2703970Z 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-08-26T19:36:07.2705000Z 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-08-26T19:36:07.2706100Z 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-08-26T19:36:07.2707250Z 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-08-26T19:36:07.2708430Z 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-08-26T19:36:07.2709480Z 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-08-26T19:36:07.2710550Z 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-08-26T19:36:07.2711670Z 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-08-26T19:36:07.2713270Z 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-08-26T19:36:07.2714280Z 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-08-26T19:36:07.2715440Z 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-08-26T19:36:07.2716610Z 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-08-26T19:36:07.2717790Z 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-08-26T19:36:07.2718890Z 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-08-26T19:36:07.2720030Z 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-08-26T19:36:07.2721100Z 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-08-26T19:36:07.2722470Z 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-08-26T19:36:07.2723580Z 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-08-26T19:36:07.2724720Z 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-08-26T19:36:07.2726550Z 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-08-26T19:36:07.2727420Z 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-08-26T19:36:07.2728650Z 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-08-26T19:36:07.2729740Z 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-08-26T19:36:07.2730860Z 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-08-26T19:36:07.2731900Z 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-08-26T19:36:07.2733010Z 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-08-26T19:36:07.2734160Z 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-08-26T19:36:07.2735200Z 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-08-26T19:36:07.2736320Z 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-08-26T19:36:07.2737420Z 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-08-26T19:36:07.2738530Z 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-08-26T19:36:07.2739740Z 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-08-26T19:36:07.2740770Z 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-08-26T19:36:07.2741860Z 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-08-26T19:36:07.2742980Z 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-08-26T19:36:07.2744100Z 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-08-26T19:36:07.2745250Z 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-08-26T19:36:07.2757130Z 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-08-26T19:36:07.2758470Z 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-08-26T19:36:07.2764700Z 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-08-26T19:36:07.2765430Z 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-08-26T19:36:07.2767420Z 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-08-26T19:36:07.2772830Z 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-08-26T19:36:07.2780330Z 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-08-26T19:36:07.2781740Z 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-08-26T19:36:07.2788890Z 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-08-26T19:36:07.2790020Z 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-08-26T19:36:07.2795930Z 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-08-26T19:36:07.2797930Z 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-08-26T19:36:07.2807740Z 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-08-26T19:36:07.2812850Z 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-08-26T19:36:07.2813670Z 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-08-26T19:36:07.2822980Z 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-08-26T19:36:07.2830570Z 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-08-26T19:36:07.2831490Z 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-08-26T19:36:07.2833300Z 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-08-26T19:36:07.2838400Z 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-08-26T19:36:07.2846350Z 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-08-26T19:36:07.2861720Z 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-08-26T19:36:07.2862550Z 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-08-26T19:36:07.2863640Z 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-08-26T19:36:07.2868900Z 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-08-26T19:36:07.2870440Z 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-08-26T19:36:07.2876660Z 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-08-26T19:36:07.2878130Z 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-08-26T19:36:07.2885470Z 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-08-26T19:36:07.2887950Z 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-08-26T19:36:07.2895900Z 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-08-26T19:36:07.2896880Z 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-08-26T19:36:07.2898000Z 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-08-26T19:36:07.2899050Z 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-08-26T19:36:07.2904910Z 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-08-26T19:36:07.2906260Z 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-08-26T19:36:07.2907400Z 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-08-26T19:36:07.2908400Z 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-08-26T19:36:07.2913340Z 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-08-26T19:36:07.2914130Z 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-08-26T19:36:07.2922700Z 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-08-26T19:36:07.2929060Z 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-08-26T19:36:07.2930390Z 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-08-26T19:36:07.2938920Z 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-08-26T19:36:07.2944320Z 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-08-26T19:36:07.2946370Z 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-08-26T19:36:07.2955300Z 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-08-26T19:36:07.2961120Z 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-08-26T19:36:07.2962140Z 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-08-26T19:36:07.2963200Z 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-08-26T19:36:07.2968860Z 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-08-26T19:36:07.2970340Z 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-08-26T19:36:07.2977260Z 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-08-26T19:36:07.2986160Z 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-08-26T19:36:07.2993380Z 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-08-26T19:36:07.2994290Z 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-08-26T19:36:07.3008770Z 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-08-26T19:36:07.3009560Z 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-08-26T19:36:07.3011320Z 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-08-26T19:36:07.3020780Z 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-08-26T19:36:07.3025200Z 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-08-26T19:36:07.3029630Z 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-08-26T19:36:07.3030340Z 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-08-26T19:36:07.3033190Z 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-08-26T19:36:07.3042740Z 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-08-26T19:36:07.3046420Z 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-08-26T19:36:07.3047160Z 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-08-26T19:36:07.3052210Z 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-08-26T19:36:07.3054220Z 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-08-26T19:36:07.3060580Z 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-08-26T19:36:07.3061600Z 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-08-26T19:36:07.3063340Z 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-08-26T19:36:07.3069870Z 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-08-26T19:36:07.3070690Z 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-08-26T19:36:07.3080130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-08-26T19:36:07.3080660Z 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-08-26T19:36:07.3086990Z 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-08-26T19:36:07.3095270Z 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-08-26T19:36:07.3098240Z 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-08-26T19:36:07.3102680Z 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-08-26T19:36:07.3103500Z 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-08-26T19:36:07.3104720Z 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-08-26T19:36:07.3108010Z 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-08-26T19:36:07.3112000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-08-26T19:36:07.3112630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-08-26T19:36:07.3113310Z 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-08-26T19:36:07.3115110Z 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-08-26T19:36:07.3116220Z 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-08-26T19:36:07.3120830Z 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-08-26T19:36:07.3124850Z 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-08-26T19:36:07.3129980Z 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-08-26T19:36:07.3132920Z 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-08-26T19:36:07.3139550Z 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-08-26T19:36:07.3140370Z 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-08-26T19:36:07.3147520Z 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-08-26T19:36:07.3148290Z 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-08-26T19:36:07.3151030Z 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-08-26T19:36:07.3156590Z 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-08-26T19:36:07.3157400Z 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-08-26T19:36:07.3160860Z 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-08-26T19:36:07.3166400Z 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-08-26T19:36:07.3170200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-08-26T19:36:07.3170770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-08-26T19:36:07.3171500Z 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-08-26T19:36:07.3175040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test 2025-08-26T19:36:07.3175470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-08-26T19:36:07.3176220Z 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-08-26T19:36:07.3177320Z 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-08-26T19:36:07.3178760Z 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-08-26T19:36:07.3182350Z 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-08-26T19:36:07.3183110Z 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-08-26T19:36:07.3188800Z 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-08-26T19:36:07.3190930Z 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-08-26T19:36:07.3197540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-08-26T19:36:07.3198140Z 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-08-26T19:36:07.3198950Z 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-08-26T19:36:07.3200010Z 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-08-26T19:36:07.3206080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-08-26T19:36:07.3206680Z 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-08-26T19:36:07.3207560Z 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-08-26T19:36:07.3215230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:07.3216420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/experiments-config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:07.3222920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fxdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-08-26T19:36:07.3231300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-08-26T19:36:07.3231780Z 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-08-26T19:36:07.3241380Z 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-08-26T19:36:07.3248490Z 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-08-26T19:36:07.3250150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/torch_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.3251710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-08-26T19:36:07.3252600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-08-26T19:36:07.3253300Z 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-08-26T19:36:07.3256810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-08-26T19:36:07.3257350Z 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-08-26T19:36:07.3258540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-08-26T19:36:07.3259350Z 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-08-26T19:36:07.3260470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-08-26T19:36:07.3261110Z 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-08-26T19:36:07.3265880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-08-26T19:36:07.3266370Z 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-08-26T19:36:07.3267490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-08-26T19:36:07.3268200Z 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-08-26T19:36:07.3269310Z 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-08-26T19:36:07.3270320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-08-26T19:36:07.3270930Z 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-08-26T19:36:07.3275780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-08-26T19:36:07.3432810Z 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-08-26T19:36:07.3437140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/miopen 2025-08-26T19:36:07.3437670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/miopen 2025-08-26T19:36:07.3438540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-08-26T19:36:07.3439890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-08-26T19:36:07.3440520Z 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-08-26T19:36:07.3441830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-08-26T19:36:07.3442530Z 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-08-26T19:36:07.3444260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-08-26T19:36:07.3444940Z 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-08-26T19:36:07.3446280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-08-26T19:36:07.3446950Z 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-08-26T19:36:07.3448230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-08-26T19:36:07.3448960Z 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-08-26T19:36:07.3450280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-08-26T19:36:07.3450900Z 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-08-26T19:36:07.3451780Z 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-08-26T19:36:07.3453360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-08-26T19:36:07.3453950Z 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-08-26T19:36:07.3454850Z 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-08-26T19:36:07.3456670Z 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-08-26T19:36:07.3458000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-08-26T19:36:07.3458660Z 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-08-26T19:36:07.3459910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-08-26T19:36:07.3460550Z 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-08-26T19:36:07.3461640Z 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-08-26T19:36:07.3462890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-08-26T19:36:07.3463700Z 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-08-26T19:36:07.3464840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-08-26T19:36:07.3467310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-08-26T19:36:07.3468300Z 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-08-26T19:36:07.3469480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.3470680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-26T19:36:07.3471340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-26T19:36:07.3472440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-26T19:36:07.3473500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-26T19:36:07.3474710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-26T19:36:07.3475830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-26T19:36:07.3476870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-08-26T19:36:07.3477890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_streambase.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.3479250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-26T19:36:07.3479950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-26T19:36:07.3481600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-26T19:36:07.3482650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-08-26T19:36:07.3484440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-08-26T19:36:07.3485150Z 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-08-26T19:36:07.3486280Z 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-08-26T19:36:07.3487350Z 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-08-26T19:36:07.3488560Z 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-08-26T19:36:07.3489640Z 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-08-26T19:36:07.3490700Z 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-08-26T19:36:07.3491850Z 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-08-26T19:36:07.3492960Z 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-08-26T19:36:07.3493900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.3496400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3496880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lr_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3498480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3499770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_adafactor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3500990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_muon.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3502090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sparse_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3503170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3504390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3505570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3506700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3508090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3509350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-08-26T19:36:07.3510020Z 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-08-26T19:36:07.3511170Z 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-08-26T19:36:07.3512170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3513240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/swa_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3514560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lbfgs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3515780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/radam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3517000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3518320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3519650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/nadam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3520820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/asgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3521970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3523000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-08-26T19:36:07.3524250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_weights_only_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.3525470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.3528140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3528710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dtype_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3534120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3534800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/select_algorithm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3535450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ops_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3536080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3536720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codecache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3537550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mock_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3538620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3539730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3540810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3541890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpp_builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3543600Z 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-08-26T19:36:07.3544690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3546460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-08-26T19:36:07.3547150Z 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-08-26T19:36:07.3548330Z 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-08-26T19:36:07.3549190Z 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-08-26T19:36:07.3550960Z 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-08-26T19:36:07.3551740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3553310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3554620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3556140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/async_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3557090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3558780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3559830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/triton_bundler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3560930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/aoti_eager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3562030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3563740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3566650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-08-26T19:36:07.3567250Z 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-08-26T19:36:07.3568260Z 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-08-26T19:36:07.3570100Z 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-08-26T19:36:07.3571190Z 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-08-26T19:36:07.3572450Z 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-08-26T19:36:07.3573480Z 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-08-26T19:36:07.3574590Z 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-08-26T19:36:07.3575480Z 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-08-26T19:36:07.3576590Z 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-08-26T19:36:07.3577840Z 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-08-26T19:36:07.3579010Z 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-08-26T19:36:07.3580190Z 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-08-26T19:36:07.3581340Z 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-08-26T19:36:07.3582490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-08-26T19:36:07.3583510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3584640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3585660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3586800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3588600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3589780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/sizevars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3591090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3594200Z 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-08-26T19:36:07.3594950Z 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-08-26T19:36:07.3595930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/index_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3597130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3599640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-08-26T19:36:07.3600220Z 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-08-26T19:36:07.3601830Z 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-08-26T19:36:07.3604890Z 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-08-26T19:36:07.3608800Z 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-08-26T19:36:07.3613680Z 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-08-26T19:36:07.3614970Z 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-08-26T19:36:07.3619490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-08-26T19:36:07.3620090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-08-26T19:36:07.3624310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-08-26T19:36:07.3625290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-08-26T19:36:07.3630210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-08-26T19:36:07.3632230Z 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-08-26T19:36:07.3633880Z 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-08-26T19:36:07.3635260Z 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-08-26T19:36:07.3636300Z 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-08-26T19:36:07.3638600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-08-26T19:36:07.3639200Z 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-08-26T19:36:07.3640460Z 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-08-26T19:36:07.3641430Z 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-08-26T19:36:07.3642460Z 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-08-26T19:36:07.3644100Z 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-08-26T19:36:07.3645200Z 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-08-26T19:36:07.3650000Z 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-08-26T19:36:07.3651040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-08-26T19:36:07.3651850Z 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-08-26T19:36:07.3653150Z 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-08-26T19:36:07.3654170Z 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-08-26T19:36:07.3655400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-08-26T19:36:07.3656300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:36:07.3657270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:36:07.3658560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:36:07.3659870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-08-26T19:36:07.3665290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-08-26T19:36:07.3666250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-08-26T19:36:07.3667200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-08-26T19:36:07.3668140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-26T19:36:07.3669080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-26T19:36:07.3670380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-08-26T19:36:07.3671440Z 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-08-26T19:36:07.3674920Z 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-08-26T19:36:07.3675730Z 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-08-26T19:36:07.3676890Z 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-08-26T19:36:07.3677960Z 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-08-26T19:36:07.3679390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-08-26T19:36:07.3680100Z 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-08-26T19:36:07.3681060Z 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-08-26T19:36:07.3682150Z 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-08-26T19:36:07.3686470Z 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-08-26T19:36:07.3688680Z 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-08-26T19:36:07.3689600Z 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-08-26T19:36:07.3691070Z 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-08-26T19:36:07.3692290Z 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-08-26T19:36:07.3696540Z 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-08-26T19:36:07.3698640Z 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-08-26T19:36:07.3701790Z 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-08-26T19:36:07.3707170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-08-26T19:36:07.3707800Z 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-08-26T19:36:07.3708580Z 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-08-26T19:36:07.3851960Z 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-08-26T19:36:07.3852960Z 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-08-26T19:36:07.3854280Z 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-08-26T19:36:07.3855770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/segmented_tree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-08-26T19:36:07.3856980Z 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-08-26T19:36:07.3858220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-08-26T19:36:07.3858860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-08-26T19:36:07.3859790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-08-26T19:36:07.3860870Z 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-08-26T19:36:07.3862410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-08-26T19:36:07.3863120Z 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-08-26T19:36:07.3864240Z 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-08-26T19:36:07.3865320Z 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-08-26T19:36:07.3866470Z 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-08-26T19:36:07.3867500Z 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-08-26T19:36:07.3868450Z 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-08-26T19:36:07.3869520Z 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-08-26T19:36:07.3870660Z 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-08-26T19:36:07.3871880Z 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-08-26T19:36:07.3873020Z 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-08-26T19:36:07.3874280Z 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-08-26T19:36:07.3875410Z 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-08-26T19:36:07.3876480Z 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-08-26T19:36:07.3877790Z 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-08-26T19:36:07.3879010Z 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-08-26T19:36:07.3880590Z 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-08-26T19:36:07.3881560Z 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-08-26T19:36:07.3882620Z 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-08-26T19:36:07.3883840Z 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-08-26T19:36:07.3884980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/python_wrapper_mtia.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-08-26T19:36:07.3886020Z 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-08-26T19:36:07.3887270Z 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-08-26T19:36:07.3888510Z 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-08-26T19:36:07.3889890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/inductor_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3891090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/virtualized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3892460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3893240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/script.ld -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3894370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autotune_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3895640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/standalone_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3896710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/await_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3898120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-08-26T19:36:07.3898860Z 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-08-26T19:36:07.3899950Z 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-08-26T19:36:07.3900850Z 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-08-26T19:36:07.3901960Z 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-08-26T19:36:07.3903010Z 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-08-26T19:36:07.3904000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3905110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3906940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3908160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3909260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__autotune_main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3910270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3911800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3912680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/decomposition.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3914270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-08-26T19:36:07.3915150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-08-26T19:36:07.3915910Z 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-08-26T19:36:07.3917030Z 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-08-26T19:36:07.3918150Z 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-08-26T19:36:07.3919340Z 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-08-26T19:36:07.3920270Z 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-08-26T19:36:07.3921540Z 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-08-26T19:36:07.3922620Z 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-08-26T19:36:07.3923890Z 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-08-26T19:36:07.3925000Z 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-08-26T19:36:07.3926050Z 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-08-26T19:36:07.3927050Z 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-08-26T19:36:07.3928560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-08-26T19:36:07.3929230Z 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-08-26T19:36:07.3930810Z 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-08-26T19:36:07.3932000Z 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-08-26T19:36:07.3932950Z 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-08-26T19:36:07.3934330Z 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-08-26T19:36:07.3935440Z 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-08-26T19:36:07.3936520Z 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-08-26T19:36:07.3937800Z 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-08-26T19:36:07.3939950Z 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-08-26T19:36:07.3941660Z 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-08-26T19:36:07.3942620Z 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-08-26T19:36:07.3943680Z 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-08-26T19:36:07.3944630Z 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-08-26T19:36:07.3946200Z 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-08-26T19:36:07.3947280Z 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-08-26T19:36:07.3948510Z 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-08-26T19:36:07.3949760Z 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-08-26T19:36:07.3951970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-08-26T19:36:07.3952430Z 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-08-26T19:36:07.3953660Z 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-08-26T19:36:07.3954600Z 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-08-26T19:36:07.3955740Z 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-08-26T19:36:07.3957180Z 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-08-26T19:36:07.3958330Z 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-08-26T19:36:07.3959570Z 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-08-26T19:36:07.3960530Z 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-08-26T19:36:07.3961650Z 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-08-26T19:36:07.3962800Z 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-08-26T19:36:07.3963840Z 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-08-26T19:36:07.3965140Z 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-08-26T19:36:07.3966040Z 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-08-26T19:36:07.3967180Z 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-08-26T19:36:07.3968360Z 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-08-26T19:36:07.3969480Z 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-08-26T19:36:07.3970580Z 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-08-26T19:36:07.3971870Z 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-08-26T19:36:07.3972930Z 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-08-26T19:36:07.3974040Z 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-08-26T19:36:07.3975320Z 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-08-26T19:36:07.3976230Z 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-08-26T19:36:07.3977280Z 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-08-26T19:36:07.3978380Z 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-08-26T19:36:07.3979440Z 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-08-26T19:36:07.3980560Z 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-08-26T19:36:07.3981730Z 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-08-26T19:36:07.3982750Z 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-08-26T19:36:07.3983750Z 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-08-26T19:36:07.3985030Z 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-08-26T19:36:07.3986240Z 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-08-26T19:36:07.3987550Z 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-08-26T19:36:07.3988940Z 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-08-26T19:36:07.3990380Z 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-08-26T19:36:07.3991510Z 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-08-26T19:36:07.3992510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3993640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/shape_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3994770Z 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-08-26T19:36:07.3995800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3998030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms_debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3998890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_gemm_autotune_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.3999900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4001220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4002270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/choices.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4003480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4004550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4005630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compiler_bisector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4006830Z 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-08-26T19:36:07.4007860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/bounds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4008980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4010050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/output_code.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4011310Z 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-08-26T19:36:07.4012500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4013610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4014810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/tiling_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4016510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-08-26T19:36:07.4016930Z 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-08-26T19:36:07.4018050Z 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-08-26T19:36:07.4019230Z 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-08-26T19:36:07.4020300Z 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-08-26T19:36:07.4021730Z 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-08-26T19:36:07.4022530Z 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-08-26T19:36:07.4023800Z 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-08-26T19:36:07.4025140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-08-26T19:36:07.4025810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/flex_decoding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-08-26T19:36:07.4026870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-08-26T19:36:07.4027910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/flex_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-08-26T19:36:07.4028950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-08-26T19:36:07.4030260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:07.4031020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:07.4032330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/flex_decode.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:07.4033410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/utilities.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:07.4034530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/flex_attention.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:07.4035600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/common.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-08-26T19:36:07.4036620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-08-26T19:36:07.4038000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-08-26T19:36:07.4038750Z 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-08-26T19:36:07.4039950Z 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-08-26T19:36:07.4040930Z 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-08-26T19:36:07.4041930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/loop_body.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4043180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4044290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-08-26T19:36:07.4046490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4046900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4048600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-08-26T19:36:07.4049250Z 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-08-26T19:36:07.4050570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-08-26T19:36:07.4051320Z 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-08-26T19:36:07.4052400Z 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-08-26T19:36:07.4053510Z 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-08-26T19:36:07.4054580Z 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-08-26T19:36:07.4055430Z 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-08-26T19:36:07.4056480Z 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-08-26T19:36:07.4057720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-08-26T19:36:07.4058400Z 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-08-26T19:36:07.4059700Z 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-08-26T19:36:07.4060520Z 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-08-26T19:36:07.4061550Z 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-08-26T19:36:07.4062640Z 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-08-26T19:36:07.4063720Z 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-08-26T19:36:07.4065040Z 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-08-26T19:36:07.4066310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-08-26T19:36:07.4067100Z 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-08-26T19:36:07.4068410Z 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-08-26T19:36:07.4072080Z 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-08-26T19:36:07.4072820Z 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-08-26T19:36:07.4073740Z 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-08-26T19:36:07.4074910Z 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-08-26T19:36:07.4075750Z 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-08-26T19:36:07.4076880Z 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-08-26T19:36:07.4077930Z 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-08-26T19:36:07.4079200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-08-26T19:36:07.4079930Z 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-08-26T19:36:07.4081030Z 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-08-26T19:36:07.4081930Z 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-08-26T19:36:07.4083010Z 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-08-26T19:36:07.4084200Z 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-08-26T19:36:07.4085220Z 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-08-26T19:36:07.4086260Z 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-08-26T19:36:07.4087340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_foreach_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4088440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4089610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4090830Z 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-08-26T19:36:07.4092110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_mode_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4092840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/checkpoint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4094700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/show_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4096010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/deterministic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4097260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/file_baton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4098410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backend_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4099710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/module_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4100830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_zoo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4101900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_zip.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4103000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/collect_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4104430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/throughput_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4105450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/dlpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4107230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-08-26T19:36:07.4107600Z 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-08-26T19:36:07.4109080Z 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-08-26T19:36:07.4109940Z 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-08-26T19:36:07.4111090Z 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-08-26T19:36:07.4112270Z 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-08-26T19:36:07.4113300Z 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-08-26T19:36:07.4114500Z 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-08-26T19:36:07.4115720Z 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-08-26T19:36:07.4117000Z 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-08-26T19:36:07.4118140Z 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-08-26T19:36:07.4119490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-08-26T19:36:07.4120210Z 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-08-26T19:36:07.4121330Z 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-08-26T19:36:07.4122700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-08-26T19:36:07.4123400Z 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-08-26T19:36:07.4124510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cxx_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4125860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4126930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4127990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_import_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4129090Z 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-08-26T19:36:07.4130410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-08-26T19:36:07.4131060Z 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-08-26T19:36:07.4132190Z 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-08-26T19:36:07.4135500Z 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-08-26T19:36:07.4136530Z 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-08-26T19:36:07.4137710Z 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-08-26T19:36:07.4139030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_dtype_abbrs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4140190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_typing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4141320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bundled_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4142720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-08-26T19:36:07.4143410Z 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-08-26T19:36:07.4144330Z 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-08-26T19:36:07.4145330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_helion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4146480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4152350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-08-26T19:36:07.4152910Z 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-08-26T19:36:07.4153190Z 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-08-26T19:36:07.4153480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_backtrace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4153750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_contextlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4153860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-08-26T19:36:07.4154140Z 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-08-26T19:36:07.4154440Z 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-08-26T19:36:07.4155190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_python_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4156640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-08-26T19:36:07.4157510Z 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-08-26T19:36:07.4158620Z 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-08-26T19:36:07.4159740Z 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-08-26T19:36:07.4160910Z 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-08-26T19:36:07.4161960Z 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-08-26T19:36:07.4163110Z 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-08-26T19:36:07.4164510Z 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-08-26T19:36:07.4165540Z 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-08-26T19:36:07.4166880Z 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-08-26T19:36:07.4167910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_exposed_in.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4168990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_filelock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4170040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_thunk.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4171190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4172430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4173490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/flop_counter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4174830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_typing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4175890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_stats.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4177270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-08-26T19:36:07.4177900Z 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-08-26T19:36:07.4179150Z 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-08-26T19:36:07.4180190Z 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-08-26T19:36:07.4181330Z 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-08-26T19:36:07.4182400Z 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-08-26T19:36:07.4183580Z 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-08-26T19:36:07.4184680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4186780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_backport_slots.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4187660Z 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-08-26T19:36:07.4188710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4189800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_content_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4191190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-08-26T19:36:07.4192080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-08-26T19:36:07.4192750Z 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-08-26T19:36:07.4193890Z 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-08-26T19:36:07.4195080Z 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-08-26T19:36:07.4201160Z 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-08-26T19:36:07.4202250Z 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-08-26T19:36:07.4203440Z 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-08-26T19:36:07.4210550Z 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-08-26T19:36:07.4211400Z 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-08-26T19:36:07.4217850Z 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-08-26T19:36:07.4218730Z 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-08-26T19:36:07.4226080Z 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-08-26T19:36:07.4226890Z 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-08-26T19:36:07.4227990Z 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-08-26T19:36:07.4235840Z 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-08-26T19:36:07.4237090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-08-26T19:36:07.4237810Z 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-08-26T19:36:07.4240190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-08-26T19:36:07.4240620Z 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-08-26T19:36:07.4243960Z 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-08-26T19:36:07.4244770Z 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-08-26T19:36:07.4245900Z 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-08-26T19:36:07.4247100Z 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-08-26T19:36:07.4248310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-08-26T19:36:07.4249010Z 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-08-26T19:36:07.4250190Z 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-08-26T19:36:07.4251340Z 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-08-26T19:36:07.4252540Z 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-08-26T19:36:07.4253970Z 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-08-26T19:36:07.4255400Z 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-08-26T19:36:07.4256800Z 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-08-26T19:36:07.4257920Z 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-08-26T19:36:07.4258990Z 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-08-26T19:36:07.4260110Z 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-08-26T19:36:07.4261310Z 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-08-26T19:36:07.4262410Z 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-08-26T19:36:07.4263570Z 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-08-26T19:36:07.4264680Z 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-08-26T19:36:07.4265790Z 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-08-26T19:36:07.4267350Z 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-08-26T19:36:07.4268790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-08-26T19:36:07.4269520Z 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-08-26T19:36:07.4270670Z 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-08-26T19:36:07.4271560Z 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-08-26T19:36:07.4272810Z 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-08-26T19:36:07.4273730Z 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-08-26T19:36:07.4275730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-08-26T19:36:07.4276110Z 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-08-26T19:36:07.4277130Z 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-08-26T19:36:07.4278290Z 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-08-26T19:36:07.4279250Z 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-08-26T19:36:07.4280300Z 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-08-26T19:36:07.4281390Z 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-08-26T19:36:07.4282520Z 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-08-26T19:36:07.4283830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-08-26T19:36:07.4284520Z 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-08-26T19:36:07.4285700Z 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-08-26T19:36:07.4286550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_ordered_set.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4287540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/weak.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4288670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mobile_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-08-26T19:36:07.4289800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4292110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_namedtensor_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4292900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4294180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4295280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_linalg_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4296590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__config__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4297840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4299980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-08-26T19:36:07.4300340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-08-26T19:36:07.4301250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-08-26T19:36:07.4302320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4303510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/hub.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4377040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4377480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4378740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4379970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4381050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4382570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-08-26T19:36:07.4383170Z 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-08-26T19:36:07.4384260Z 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-08-26T19:36:07.4385360Z 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-08-26T19:36:07.4386490Z 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-08-26T19:36:07.4387520Z 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-08-26T19:36:07.4388610Z 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-08-26T19:36:07.4389690Z 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-08-26T19:36:07.4390790Z 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-08-26T19:36:07.4391820Z 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-08-26T19:36:07.4392950Z 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-08-26T19:36:07.4394020Z 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-08-26T19:36:07.4395170Z 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-08-26T19:36:07.4396260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4397460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4398530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4399680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4400870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4401970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4403020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4404100Z 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-08-26T19:36:07.4405200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4406230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4407350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-08-26T19:36:07.4408340Z 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-08-26T19:36:07.4409360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_str.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4410750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_sources.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4412120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-08-26T19:36:07.4412770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-08-26T19:36:07.4414870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4415130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_profiler.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4416030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_onnx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4417130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4418450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4419370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_monitor.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4420440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_itt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4421790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-08-26T19:36:07.4422450Z 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-08-26T19:36:07.4423650Z 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-08-26T19:36:07.4424620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4425690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4429190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nvtx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4429980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cpu.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4431170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4432280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cusparselt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4433390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_instruction_counter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4434530Z 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-08-26T19:36:07.4435680Z 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-08-26T19:36:07.4436740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functorch.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4437850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4444970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4446040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-08-26T19:36:07.4446660Z 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-08-26T19:36:07.4447810Z 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-08-26T19:36:07.4448880Z 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-08-26T19:36:07.4450040Z 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-08-26T19:36:07.4451140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_verbose.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4452310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_aoti.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4453330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4454650Z 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-08-26T19:36:07.4455690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cudnn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4456840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-08-26T19:36:07.4458170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-26T19:36:07.4459220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-08-26T19:36:07.4460080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-08-26T19:36:07.4460820Z 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-08-26T19:36:07.4461740Z 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-08-26T19:36:07.4466030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-08-26T19:36:07.4466440Z 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-08-26T19:36:07.4467680Z 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-08-26T19:36:07.4469420Z 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-08-26T19:36:07.4470480Z 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-08-26T19:36:07.4472250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-08-26T19:36:07.4472830Z 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-08-26T19:36:07.4474070Z 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-08-26T19:36:07.4475120Z 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-08-26T19:36:07.4476540Z 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-08-26T19:36:07.4478090Z 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-08-26T19:36:07.4479410Z 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-08-26T19:36:07.4480680Z 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-08-26T19:36:07.4481920Z 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-08-26T19:36:07.4483380Z 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-08-26T19:36:07.4484520Z 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-08-26T19:36:07.4485830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-08-26T19:36:07.4486570Z 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-08-26T19:36:07.4487480Z 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-08-26T19:36:07.4488620Z 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-08-26T19:36:07.4489790Z 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-08-26T19:36:07.4490910Z 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-08-26T19:36:07.4492040Z 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-08-26T19:36:07.4493280Z 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-08-26T19:36:07.4494500Z 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-08-26T19:36:07.4495540Z 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-08-26T19:36:07.4497550Z 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-08-26T19:36:07.4498760Z 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-08-26T19:36:07.4499950Z 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-08-26T19:36:07.4501200Z 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-08-26T19:36:07.4502660Z 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-08-26T19:36:07.4503910Z 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-08-26T19:36:07.4505230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-08-26T19:36:07.4506050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-08-26T19:36:07.4506810Z 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-08-26T19:36:07.4507770Z 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-08-26T19:36:07.4509160Z 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-08-26T19:36:07.4510440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-08-26T19:36:07.4511190Z 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-08-26T19:36:07.4512130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-08-26T19:36:07.4512920Z 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-08-26T19:36:07.4513910Z 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-08-26T19:36:07.4515060Z 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-08-26T19:36:07.4516140Z 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-08-26T19:36:07.4517090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-08-26T19:36:07.4517860Z 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-08-26T19:36:07.4519150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-08-26T19:36:07.4519910Z 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-08-26T19:36:07.4521110Z 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-08-26T19:36:07.4522220Z 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-08-26T19:36:07.4523200Z 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-08-26T19:36:07.4524310Z 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-08-26T19:36:07.4525480Z 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-08-26T19:36:07.4526770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-08-26T19:36:07.4527550Z 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-08-26T19:36:07.4528670Z 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-08-26T19:36:07.4529730Z 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-08-26T19:36:07.4530680Z 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-08-26T19:36:07.4532450Z 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-08-26T19:36:07.4533560Z 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-08-26T19:36:07.4534690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-08-26T19:36:07.4535400Z 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-08-26T19:36:07.4536350Z 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-08-26T19:36:07.4537440Z 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-08-26T19:36:07.4538870Z 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-08-26T19:36:07.4540070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-08-26T19:36:07.4540790Z 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-08-26T19:36:07.4541790Z 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-08-26T19:36:07.4542900Z 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-08-26T19:36:07.4543980Z 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-08-26T19:36:07.4546610Z 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-08-26T19:36:07.4547230Z 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-08-26T19:36:07.4551060Z 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-08-26T19:36:07.4551830Z 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-08-26T19:36:07.4552930Z 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-08-26T19:36:07.4554010Z 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-08-26T19:36:07.4555680Z 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-08-26T19:36:07.4557160Z 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-08-26T19:36:07.4558390Z 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-08-26T19:36:07.4559560Z 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-08-26T19:36:07.4561000Z 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-08-26T19:36:07.4562230Z 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-08-26T19:36:07.4563270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-08-26T19:36:07.4563990Z 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-08-26T19:36:07.4565140Z 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-08-26T19:36:07.4566270Z 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-08-26T19:36:07.4567390Z 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-08-26T19:36:07.4568490Z 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-08-26T19:36:07.4569750Z 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-08-26T19:36:07.4570830Z 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-08-26T19:36:07.4577900Z 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-08-26T19:36:07.4578870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-08-26T19:36:07.4579600Z 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-08-26T19:36:07.4580690Z 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-08-26T19:36:07.4581890Z 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-08-26T19:36:07.4583010Z 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-08-26T19:36:07.4584200Z 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-08-26T19:36:07.4586330Z 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-08-26T19:36:07.4588480Z 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-08-26T19:36:07.4589340Z 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-08-26T19:36:07.4590590Z 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-08-26T19:36:07.4591970Z 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-08-26T19:36:07.4593000Z 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-08-26T19:36:07.4594150Z 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-08-26T19:36:07.4596750Z 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-08-26T19:36:07.4597750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-08-26T19:36:07.4598480Z 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-08-26T19:36:07.4599550Z 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-08-26T19:36:07.4600650Z 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-08-26T19:36:07.4601680Z 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-08-26T19:36:07.4602940Z 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-08-26T19:36:07.4604040Z 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-08-26T19:36:07.4605100Z 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-08-26T19:36:07.4606410Z 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-08-26T19:36:07.4607560Z 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-08-26T19:36:07.4608680Z 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-08-26T19:36:07.4609690Z 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-08-26T19:36:07.4611000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-26T19:36:07.4612150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-26T19:36:07.4613220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_comparison.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-26T19:36:07.4615160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-08-26T19:36:07.4616020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vmap_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4617770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4618370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4619700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_profile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4620860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/infer_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4622100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/simple_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4623100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4624440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4625630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4626760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4627860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-08-26T19:36:07.4629170Z 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-08-26T19:36:07.4630140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4632150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lowrank.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4632900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_appdirs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4634560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-26T19:36:07.4635130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-26T19:36:07.4636340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-26T19:36:07.4637420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-08-26T19:36:07.4638660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-26T19:36:07.4639360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-26T19:36:07.4640530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-26T19:36:07.4641800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-08-26T19:36:07.4643210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4643830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_ir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4644990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_monkeytype_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4646000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4647060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_recursive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4648330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4649380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4650460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4651460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4761550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4762480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_shape_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4763980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decomposition_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4765000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_freeze.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4766190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4767280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4768410Z 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-08-26T19:36:07.4769520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/frontend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4770800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4772010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4773070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_fuser.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4774170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4775420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_dataclass_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4776290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4778290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-08-26T19:36:07.4778680Z 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-08-26T19:36:07.4779800Z 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-08-26T19:36:07.4780680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/generate_bytecode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4781830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4783250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-08-26T19:36:07.4783870Z 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-08-26T19:36:07.4785060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4786160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/annotations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4787380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_await.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-08-26T19:36:07.4789480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4789830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4791140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/cache_size.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4792130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/callback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4793160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/comptime.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4794250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4795390Z 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-08-26T19:36:07.4796480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4797640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/precompile_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4798770Z 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-08-26T19:36:07.4799890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4801070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4803390Z 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-08-26T19:36:07.4804350Z 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-08-26T19:36:07.4805430Z 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-08-26T19:36:07.4806640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/device_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4808630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-08-26T19:36:07.4809020Z 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-08-26T19:36:07.4809980Z 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-08-26T19:36:07.4810880Z 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-08-26T19:36:07.4812130Z 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-08-26T19:36:07.4813290Z 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-08-26T19:36:07.4814430Z 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-08-26T19:36:07.4815840Z 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-08-26T19:36:07.4816720Z 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-08-26T19:36:07.4817860Z 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-08-26T19:36:07.4818930Z 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-08-26T19:36:07.4819940Z 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-08-26T19:36:07.4821010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4822040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4823130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4824210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4825530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/metrics_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4826340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4827460Z 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-08-26T19:36:07.4828450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/external_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4830830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4831130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4831760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/resume_execution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4832920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/output_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4835130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4836210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4837420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4839900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-08-26T19:36:07.4840340Z 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-08-26T19:36:07.4841910Z 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-08-26T19:36:07.4843040Z 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-08-26T19:36:07.4844710Z 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-08-26T19:36:07.4846060Z 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-08-26T19:36:07.4847070Z 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-08-26T19:36:07.4848310Z 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-08-26T19:36:07.4849430Z 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-08-26T19:36:07.4851120Z 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-08-26T19:36:07.4852560Z 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-08-26T19:36:07.4854720Z 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-08-26T19:36:07.4855890Z 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-08-26T19:36:07.4857700Z 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-08-26T19:36:07.4858710Z 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-08-26T19:36:07.4859820Z 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-08-26T19:36:07.4860970Z 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-08-26T19:36:07.4863120Z 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-08-26T19:36:07.4863730Z 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-08-26T19:36:07.4864780Z 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-08-26T19:36:07.4866870Z 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-08-26T19:36:07.4867910Z 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-08-26T19:36:07.4869290Z 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-08-26T19:36:07.4870450Z 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-08-26T19:36:07.4872570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-08-26T19:36:07.4873000Z 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-08-26T19:36:07.4874180Z 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-08-26T19:36:07.4875100Z 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-08-26T19:36:07.4876420Z 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-08-26T19:36:07.4877720Z 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-08-26T19:36:07.4878720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/replay_record.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4879810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/side_effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4882000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-08-26T19:36:07.4882410Z 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-08-26T19:36:07.4883290Z 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-08-26T19:36:07.4884380Z 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-08-26T19:36:07.4885380Z 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-08-26T19:36:07.4886530Z 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-08-26T19:36:07.4887620Z 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-08-26T19:36:07.4888760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/_collections.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-08-26T19:36:07.4889800Z 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-08-26T19:36:07.4890820Z 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-08-26T19:36:07.4891890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/struct.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-08-26T19:36:07.4892970Z 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-08-26T19:36:07.4893990Z 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-08-26T19:36:07.4895070Z 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-08-26T19:36:07.4896110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/trace_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4898470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4899610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/convert_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4901060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4902070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4903330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/pgo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4904720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4905840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4908150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/codegen.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4909120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/source.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4910380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/eval_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4912210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/code_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4913210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_deduplication.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4914450Z 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-08-26T19:36:07.4915520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4916730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/decorators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-08-26T19:36:07.4918150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_environment.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4919530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4920190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4921300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4922380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4923490Z 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-08-26T19:36:07.4924530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4925740Z 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-08-26T19:36:07.4926890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ir_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4927880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ts_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4929040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/computation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4930130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/closure.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4931390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/device_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-08-26T19:36:07.4932370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4933780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:07.4935740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-08-26T19:36:07.4936310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-08-26T19:36:07.4937130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-08-26T19:36:07.4938000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-08-26T19:36:07.4938720Z 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-08-26T19:36:07.4940100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-08-26T19:36:07.4940760Z 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-08-26T19:36:07.4942010Z 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-08-26T19:36:07.4943030Z 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-08-26T19:36:07.4944410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-08-26T19:36:07.4945140Z 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-08-26T19:36:07.4946210Z 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-08-26T19:36:07.4947280Z 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-08-26T19:36:07.4948480Z 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-08-26T19:36:07.4949740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-08-26T19:36:07.4950590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-08-26T19:36:07.4951280Z 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-08-26T19:36:07.4952600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-08-26T19:36:07.4953310Z 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-08-26T19:36:07.4954450Z 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-08-26T19:36:07.4955490Z 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-08-26T19:36:07.4956760Z 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-08-26T19:36:07.4958140Z 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-08-26T19:36:07.4959290Z 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-08-26T19:36:07.4960710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-08-26T19:36:07.4961410Z 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-08-26T19:36:07.4962560Z 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-08-26T19:36:07.4963590Z 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-08-26T19:36:07.4964680Z 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-08-26T19:36:07.4965850Z 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-08-26T19:36:07.4966860Z 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-08-26T19:36:07.4968010Z 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-08-26T19:36:07.4969080Z 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-08-26T19:36:07.4970460Z 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-08-26T19:36:07.4971500Z 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-08-26T19:36:07.4975490Z 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-08-26T19:36:07.4979060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-08-26T19:36:07.4979800Z 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-08-26T19:36:07.4980970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-08-26T19:36:07.4981710Z 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-08-26T19:36:07.4985430Z 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-08-26T19:36:07.4988470Z 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-08-26T19:36:07.4993460Z 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-08-26T19:36:07.4994230Z 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-08-26T19:36:07.4997030Z 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-08-26T19:36:07.5002790Z 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-08-26T19:36:07.5003810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-08-26T19:36:07.5004480Z 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-08-26T19:36:07.5010700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-08-26T19:36:07.5011300Z 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-08-26T19:36:07.5012270Z 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-08-26T19:36:07.5018140Z 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-08-26T19:36:07.5019230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-08-26T19:36:07.5020010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-08-26T19:36:07.5020760Z 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-08-26T19:36:07.5022000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-08-26T19:36:07.5027180Z 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-08-26T19:36:07.5027870Z 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-08-26T19:36:07.5028270Z 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-08-26T19:36:07.5032860Z 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-08-26T19:36:07.5034500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-08-26T19:36:07.5035370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-08-26T19:36:07.5036270Z 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-08-26T19:36:07.5041420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-08-26T19:36:07.5041910Z 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-08-26T19:36:07.5043080Z 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-08-26T19:36:07.5044060Z 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-08-26T19:36:07.5045580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-08-26T19:36:07.5046310Z 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-08-26T19:36:07.5047370Z 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-08-26T19:36:07.5048460Z 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-08-26T19:36:07.5049620Z 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-08-26T19:36:07.5050840Z 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-08-26T19:36:07.5051810Z 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-08-26T19:36:07.5053080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-08-26T19:36:07.5053760Z 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-08-26T19:36:07.5055150Z 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-08-26T19:36:07.5056540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-08-26T19:36:07.5057370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-08-26T19:36:07.5058240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-08-26T19:36:07.5059020Z 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-08-26T19:36:07.5060250Z 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-08-26T19:36:07.5061430Z 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-08-26T19:36:07.5062540Z 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-08-26T19:36:07.5063630Z 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-08-26T19:36:07.5064760Z 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-08-26T19:36:07.5066130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-08-26T19:36:07.5066940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-08-26T19:36:07.5067640Z 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-08-26T19:36:07.5069040Z 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-08-26T19:36:07.5070210Z 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-08-26T19:36:07.5071430Z 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-08-26T19:36:07.5072320Z 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-08-26T19:36:07.5073610Z 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-08-26T19:36:07.5074660Z 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-08-26T19:36:07.5075840Z 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-08-26T19:36:07.5077220Z 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-08-26T19:36:07.5078490Z 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-08-26T19:36:07.5079690Z 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-08-26T19:36:07.5080950Z 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-08-26T19:36:07.5081880Z 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-08-26T19:36:07.5083200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-08-26T19:36:07.5085250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-08-26T19:36:07.5085580Z 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-08-26T19:36:07.5087150Z 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-08-26T19:36:07.5088270Z 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-08-26T19:36:07.5089640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-08-26T19:36:07.5090390Z 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-08-26T19:36:07.5091710Z 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-08-26T19:36:07.5092830Z 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-08-26T19:36:07.5094060Z 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-08-26T19:36:07.5095230Z 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-08-26T19:36:07.5096340Z 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-08-26T19:36:07.5097600Z 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-08-26T19:36:07.5098690Z 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-08-26T19:36:07.5099900Z 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-08-26T19:36:07.5101230Z 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-08-26T19:36:07.5102590Z 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-08-26T19:36:07.5105300Z 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-08-26T19:36:07.5109580Z 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-08-26T19:36:07.5113370Z 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-08-26T19:36:07.5114540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-08-26T19:36:07.5115270Z 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-08-26T19:36:07.5121840Z 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-08-26T19:36:07.5127480Z 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-08-26T19:36:07.5129890Z 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-08-26T19:36:07.5130670Z 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-08-26T19:36:07.5136590Z 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-08-26T19:36:07.5140650Z 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-08-26T19:36:07.5141550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-08-26T19:36:07.5142390Z 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-08-26T19:36:07.5144190Z 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-08-26T19:36:07.5145630Z 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-08-26T19:36:07.5150880Z 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-08-26T19:36:07.5152100Z 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-08-26T19:36:07.5153450Z 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-08-26T19:36:07.5154560Z 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-08-26T19:36:07.5156130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-08-26T19:36:07.5156820Z 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-08-26T19:36:07.5158020Z 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-08-26T19:36:07.5159180Z 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-08-26T19:36:07.5160510Z 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-08-26T19:36:07.5161840Z 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-08-26T19:36:07.5162990Z 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-08-26T19:36:07.5164280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-08-26T19:36:07.5165020Z 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-08-26T19:36:07.5166550Z 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-08-26T19:36:07.5167840Z 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-08-26T19:36:07.5168920Z 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-08-26T19:36:07.5169780Z 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-08-26T19:36:07.5170960Z 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-08-26T19:36:07.5172080Z 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-08-26T19:36:07.5173500Z 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-08-26T19:36:07.5174800Z 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-08-26T19:36:07.5176260Z 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-08-26T19:36:07.5177380Z 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-08-26T19:36:07.5178570Z 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-08-26T19:36:07.5179620Z 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-08-26T19:36:07.5180700Z 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-08-26T19:36:07.5182290Z 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-08-26T19:36:07.5183380Z 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-08-26T19:36:07.5184790Z 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-08-26T19:36:07.5185950Z 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-08-26T19:36:07.5187080Z 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-08-26T19:36:07.5188200Z 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-08-26T19:36:07.5189570Z 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-08-26T19:36:07.5190960Z 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-08-26T19:36:07.5192080Z 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-08-26T19:36:07.5193130Z 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-08-26T19:36:07.5194220Z 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-08-26T19:36:07.5195460Z 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-08-26T19:36:07.5196600Z 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-08-26T19:36:07.5197590Z 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-08-26T19:36:07.5198920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-08-26T19:36:07.5199680Z 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-08-26T19:36:07.5200790Z 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-08-26T19:36:07.5202300Z 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-08-26T19:36:07.5203390Z 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-08-26T19:36:07.5204530Z 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-08-26T19:36:07.5205530Z 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-08-26T19:36:07.5206650Z 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-08-26T19:36:07.5207730Z 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-08-26T19:36:07.5208850Z 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-08-26T19:36:07.5210110Z 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-08-26T19:36:07.5211150Z 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-08-26T19:36:07.5212610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-08-26T19:36:07.5213460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-08-26T19:36:07.5214220Z 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-08-26T19:36:07.5215300Z 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-08-26T19:36:07.5216140Z 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-08-26T19:36:07.5217270Z 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-08-26T19:36:07.5218290Z 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-08-26T19:36:07.5219490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-08-26T19:36:07.5220350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-08-26T19:36:07.5221240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-08-26T19:36:07.5222200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-08-26T19:36:07.5222990Z 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-08-26T19:36:07.5224180Z 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-08-26T19:36:07.5225190Z 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-08-26T19:36:07.5226260Z 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-08-26T19:36:07.5227150Z 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-08-26T19:36:07.5228440Z 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-08-26T19:36:07.5229630Z 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-08-26T19:36:07.5230770Z 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-08-26T19:36:07.5231990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-08-26T19:36:07.5232720Z 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-08-26T19:36:07.5233850Z 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-08-26T19:36:07.5234980Z 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-08-26T19:36:07.5236210Z 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-08-26T19:36:07.5237450Z 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-08-26T19:36:07.5238940Z 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-08-26T19:36:07.5240170Z 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-08-26T19:36:07.5241440Z 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-08-26T19:36:07.5242640Z 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-08-26T19:36:07.5244390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-08-26T19:36:07.5244930Z 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-08-26T19:36:07.5246320Z 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-08-26T19:36:07.5247350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-08-26T19:36:07.5248080Z 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-08-26T19:36:07.5249410Z 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-08-26T19:36:07.5250560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-08-26T19:36:07.5251320Z 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-08-26T19:36:07.5252430Z 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-08-26T19:36:07.5253490Z 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-08-26T19:36:07.5254410Z 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-08-26T19:36:07.5255420Z 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-08-26T19:36:07.5256540Z 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-08-26T19:36:07.5257860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-26T19:36:07.5258480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-26T19:36:07.5259620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-26T19:36:07.5260750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-08-26T19:36:07.5262010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-26T19:36:07.5262710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_python.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-26T19:36:07.5745520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-26T19:36:07.5746510Z 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-08-26T19:36:07.5747890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libomp.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-26T19:36:07.5753190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-08-26T19:36:07.5753620Z 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-08-26T19:36:07.5754990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-08-26T19:36:07.5755620Z 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-08-26T19:36:07.5756820Z 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-08-26T19:36:07.5757810Z 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-08-26T19:36:07.5759000Z 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-08-26T19:36:07.5760240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-26T19:36:08.7803450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libc10.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-26T19:36:08.7810470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-08-26T19:36:08.7811920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.7819480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.7820680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/py.typed -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.7821690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lobpcg.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.7823980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-26T19:36:08.7824680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-08-26T19:36:08.7825370Z 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-08-26T19:36:08.7826810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-08-26T19:36:08.7827410Z 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-08-26T19:36:08.7828940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-08-26T19:36:08.7829620Z 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-08-26T19:36:08.7831080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-26T19:36:08.7832180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-26T19:36:08.7834970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-08-26T19:36:08.7835480Z 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-08-26T19:36:08.7836650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-08-26T19:36:08.7838150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-08-26T19:36:08.7838800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fft/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-08-26T19:36:08.7840270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__future__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.7841610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7842340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_memory_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7843740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/itt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7844870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7846240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7847340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7848710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/python_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7849880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-08-26T19:36:08.7851210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-26T19:36:08.7851870Z 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-08-26T19:36:08.7853050Z 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-08-26T19:36:08.7854150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-26T19:36:08.7855490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/semi_structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-26T19:36:08.7856840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-08-26T19:36:08.7898100Z 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-08-26T19:36:08.7901480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-08-26T19:36:08.7902080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-08-26T19:36:08.7903200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.7905040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_python_dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.7906000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7906640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_safeguard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7907990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-08-26T19:36:08.7908680Z 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-08-26T19:36:08.7910100Z 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-08-26T19:36:08.7911100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/exported_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7912600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7914000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7915150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_obj.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7916550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-08-26T19:36:08.7917170Z 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-08-26T19:36:08.7918260Z 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-08-26T19:36:08.7919430Z 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-08-26T19:36:08.7920550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7921870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_unlift.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7923090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7924810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/graph_signature.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7926010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_wrapper_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7927100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/decomp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.7928510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-08-26T19:36:08.7929190Z 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-08-26T19:36:08.8068390Z 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-08-26T19:36:08.8069260Z 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-08-26T19:36:08.8070300Z 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-08-26T19:36:08.8071380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_swap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.8072710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_draft_export.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.8073980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.8075370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_tree_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-08-26T19:36:08.8076680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-08-26T19:36:08.8077580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-08-26T19:36:08.8078280Z 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-08-26T19:36:08.8079710Z 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-08-26T19:36:08.8080610Z 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-08-26T19:36:08.8082410Z 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-08-26T19:36:08.8083850Z 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-08-26T19:36:08.8084870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-08-26T19:36:08.8086360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-08-26T19:36:08.8087090Z 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-08-26T19:36:08.8088110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_classes.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.8089500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-08-26T19:36:08.8090250Z 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-08-26T19:36:08.8091280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-08-26T19:36:08.8092230Z 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-08-26T19:36:08.8093480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-08-26T19:36:08.8094110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-08-26T19:36:08.8095000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/binding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-08-26T19:36:08.8096440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-26T19:36:08.8097080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-26T19:36:08.8098270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-26T19:36:08.8099400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-08-26T19:36:08.8100790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-08-26T19:36:08.8101400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-08-26T19:36:08.8102740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-08-26T19:36:08.8103410Z 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-08-26T19:36:08.8104570Z 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-08-26T19:36:08.8105820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.8108060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8108580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/inverse_gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8109590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/laplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8110790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8111960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8113080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8114460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/dirichlet.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8115570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/log_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8116850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transformed_distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8117900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/geometric.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8119030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/generalized_pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8120210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/weibull.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8121220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/studentT.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8122380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8123520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8124640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/poisson.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8125760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/beta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8126950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kumaraswamy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8128040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8129190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8130410Z 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-08-26T19:36:08.8131430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8132600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8133750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8134880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/independent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8136010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multinomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8137170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exponential.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8138230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8139360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/negative_binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8140440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8141800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/von_mises.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8142650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8143720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gumbel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8144910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraint_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8146030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8147180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8148600Z 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-08-26T19:36:08.8149710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8150820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/fishersnedecor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8156230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8156970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/uniform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8157660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8158360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exp_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8159110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/logistic_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8159840Z 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-08-26T19:36:08.8160550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/wishart.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8161230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8162320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/chi2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8163510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-08-26T19:36:08.8165020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8165770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_exporter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8167440Z 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-08-26T19:36:08.8168550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8169700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8170900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_stdlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8171960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mangling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8173070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8174220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8175520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8176640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/glob_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8177900Z 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-08-26T19:36:08.8178950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8180360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-08-26T19:36:08.8181120Z 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-08-26T19:36:08.8182340Z 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-08-26T19:36:08.8183420Z 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-08-26T19:36:08.8184770Z 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-08-26T19:36:08.8185830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_importlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8187090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_directory_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8188100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_digraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-08-26T19:36:08.8189170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-08-26T19:36:08.8190950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share 2025-08-26T19:36:08.8191780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake 2025-08-26T19:36:08.8192680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-08-26T19:36:08.8193460Z 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-08-26T19:36:08.8194700Z 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-08-26T19:36:08.8196040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-08-26T19:36:08.8196770Z 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-08-26T19:36:08.8198010Z 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-08-26T19:36:08.8199510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-08-26T19:36:08.8200080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-08-26T19:36:08.8200960Z 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-08-26T19:36:08.8202140Z 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-08-26T19:36:08.8203390Z 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-08-26T19:36:08.8204690Z 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-08-26T19:36:08.8205850Z 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-08-26T19:36:08.8206940Z 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-08-26T19:36:08.8213970Z 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-08-26T19:36:08.8215200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-08-26T19:36:08.8215930Z 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-08-26T19:36:08.8217170Z 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-08-26T19:36:08.8218280Z 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-08-26T19:36:08.8219420Z 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-08-26T19:36:08.8220860Z 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-08-26T19:36:08.8222030Z 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-08-26T19:36:08.8223140Z 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-08-26T19:36:08.8224350Z 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-08-26T19:36:08.8225440Z 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-08-26T19:36:08.8226670Z 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-08-26T19:36:08.8227950Z 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-08-26T19:36:08.8229510Z 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-08-26T19:36:08.8230760Z 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-08-26T19:36:08.8231870Z 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-08-26T19:36:08.8233190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-08-26T19:36:08.8233930Z 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-08-26T19:36:08.8235200Z 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-08-26T19:36:08.8236490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-08-26T19:36:08.8237180Z 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-08-26T19:36:08.8238520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-08-26T19:36:08.8239170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/func/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-08-26T19:36:08.8241910Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8242380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/native_function_generation.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8244000Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-08-26T19:36:08.8244660Z 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-08-26T19:36:08.8245850Z 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-08-26T19:36:08.8246990Z 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-08-26T19:36:08.8247730Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8248870Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8251330Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged 2025-08-26T19:36:08.8251970Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-08-26T19:36:08.8252730Z 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-08-26T19:36:08.8254210Z 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-08-26T19:36:08.8255330Z 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-08-26T19:36:08.8256640Z 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-08-26T19:36:08.8258180Z 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-08-26T19:36:08.8259690Z 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-08-26T19:36:08.8260800Z 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-08-26T19:36:08.8261890Z 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-08-26T19:36:08.8263530Z 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-08-26T19:36:08.8264560Z 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-08-26T19:36:08.8265830Z 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-08-26T19:36:08.8267140Z 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-08-26T19:36:08.8268220Z 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-08-26T19:36:08.8269880Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-08-26T19:36:08.8270740Z 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-08-26T19:36:08.8271990Z 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-08-26T19:36:08.8273170Z 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-08-26T19:36:08.8274370Z 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-08-26T19:36:08.8275660Z 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-08-26T19:36:08.8276810Z 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-08-26T19:36:08.8278000Z 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-08-26T19:36:08.8279200Z 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-08-26T19:36:08.8280570Z 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-08-26T19:36:08.8281590Z 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-08-26T19:36:08.8282650Z 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-08-26T19:36:08.8284080Z 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-08-26T19:36:08.8285260Z 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-08-26T19:36:08.8286400Z 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-08-26T19:36:08.8287520Z 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-08-26T19:36:08.8288620Z 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-08-26T19:36:08.8289800Z 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-08-26T19:36:08.8291070Z 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-08-26T19:36:08.8292290Z 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-08-26T19:36:08.8293390Z 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-08-26T19:36:08.8294520Z 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-08-26T19:36:08.8295760Z 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-08-26T19:36:08.8297020Z 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-08-26T19:36:08.8298110Z 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-08-26T19:36:08.8299750Z 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-08-26T19:36:08.8300810Z 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-08-26T19:36:08.8302950Z 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-08-26T19:36:08.8304180Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen 2025-08-26T19:36:08.8305410Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-08-26T19:36:08.8306230Z 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-08-26T19:36:08.8310880Z 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-08-26T19:36:08.8312020Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-08-26T19:36:08.8312890Z 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-08-26T19:36:08.8314080Z 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-08-26T19:36:08.8315450Z 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-08-26T19:36:08.8316630Z 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-08-26T19:36:08.8317750Z 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-08-26T19:36:08.8318910Z 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-08-26T19:36:08.8320110Z 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-08-26T19:36:08.8321410Z 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-08-26T19:36:08.8322490Z 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-08-26T19:36:08.8323720Z 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-08-26T19:36:08.8324780Z 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-08-26T19:36:08.8325950Z 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-08-26T19:36:08.8327250Z 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-08-26T19:36:08.8328460Z 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-08-26T19:36:08.8329630Z 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-08-26T19:36:08.8330900Z 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-08-26T19:36:08.8331990Z 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-08-26T19:36:08.8333140Z 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-08-26T19:36:08.8334210Z 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-08-26T19:36:08.8335310Z 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-08-26T19:36:08.8336470Z 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-08-26T19:36:08.8337590Z 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-08-26T19:36:08.8338640Z 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-08-26T19:36:08.8339840Z 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-08-26T19:36:08.8340880Z 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-08-26T19:36:08.8341950Z 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-08-26T19:36:08.8343100Z 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-08-26T19:36:08.8344220Z 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-08-26T19:36:08.8345370Z 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-08-26T19:36:08.8346570Z 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-08-26T19:36:08.8347700Z 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-08-26T19:36:08.8348700Z 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-08-26T19:36:08.8349810Z 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-08-26T19:36:08.8350930Z 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-08-26T19:36:08.8352100Z 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-08-26T19:36:08.8353140Z 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-08-26T19:36:08.8354260Z 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-08-26T19:36:08.8355380Z 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-08-26T19:36:08.8356530Z 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-08-26T19:36:08.8358140Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-08-26T19:36:08.8358690Z 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-08-26T19:36:08.8359770Z 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-08-26T19:36:08.8360660Z 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-08-26T19:36:08.8362110Z 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-08-26T19:36:08.8363100Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/local.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8364300Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_functionalization_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8365590Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/code_template.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8367020Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-08-26T19:36:08.8367700Z 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-08-26T19:36:08.8368640Z 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-08-26T19:36:08.8369840Z 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-08-26T19:36:08.8370780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8371980Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/yaml_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8373000Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8374240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/model.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8375930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_schema_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8376990Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8378070Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8379610Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-26T19:36:08.8380280Z 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-08-26T19:36:08.8381490Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-26T19:36:08.8382720Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-26T19:36:08.8383850Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/native_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-26T19:36:08.8384970Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-08-26T19:36:08.8386310Z 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-08-26T19:36:08.8387880Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8388490Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8389610Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/translate.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8391120Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-08-26T19:36:08.8391780Z 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-08-26T19:36:08.8392930Z 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-08-26T19:36:08.8394050Z 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-08-26T19:36:08.8395170Z 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-08-26T19:36:08.8396290Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8397450Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8398310Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/native.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8399450Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8400650Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/unboxing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8401730Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/functionalization.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8402780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8404120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8405270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/python.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8406630Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8407840Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/meta.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-08-26T19:36:08.8409000Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_backend_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8410540Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-08-26T19:36:08.8411100Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-08-26T19:36:08.8412080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-08-26T19:36:08.8413160Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-08-26T19:36:08.8415540Z creating build/bdist.macosx-14.0-arm64/wheel/functorch 2025-08-26T19:36:08.8416410Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-26T19:36:08.8417270Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/control_flow.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-26T19:36:08.8418590Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-26T19:36:08.8419740Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/ops.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-08-26T19:36:08.8421130Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-08-26T19:36:08.8421970Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-08-26T19:36:08.8422700Z 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-08-26T19:36:08.8423810Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-08-26T19:36:08.8424970Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-08-26T19:36:08.8425640Z 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-08-26T19:36:08.8426920Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-08-26T19:36:08.8427620Z 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-08-26T19:36:08.8428970Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-08-26T19:36:08.8429560Z 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-08-26T19:36:08.8430860Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-26T19:36:08.8431540Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/magic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-26T19:36:08.8432850Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-26T19:36:08.8434020Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/op_properties.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-26T19:36:08.8435310Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/wrap_type.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-26T19:36:08.8436340Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/tree_map.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-08-26T19:36:08.8437440Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-08-26T19:36:08.8438800Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-08-26T19:36:08.8439470Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/compile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-08-26T19:36:08.8440620Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-08-26T19:36:08.8443260Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-26T19:36:08.8443750Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/_parsing.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-26T19:36:08.8444800Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-26T19:36:08.8445870Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/rearrange.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-08-26T19:36:08.8448230Z running install_egg_info 2025-08-26T19:36:08.8477980Z running egg_info 2025-08-26T19:36:08.8478160Z creating torch.egg-info 2025-08-26T19:36:08.8504700Z writing torch.egg-info/PKG-INFO 2025-08-26T19:36:08.8512740Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-08-26T19:36:08.8513940Z writing entry points to torch.egg-info/entry_points.txt 2025-08-26T19:36:08.8517090Z writing requirements to torch.egg-info/requires.txt 2025-08-26T19:36:08.8518280Z writing top-level names to torch.egg-info/top_level.txt 2025-08-26T19:36:08.8519290Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-08-26T19:36:09.2200050Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-08-26T19:36:09.2201100Z reading manifest template 'MANIFEST.in' 2025-08-26T19:36:09.2212050Z warning: no files found matching 'BUILD' 2025-08-26T19:36:09.2212780Z warning: no files found matching '*.BUILD' 2025-08-26T19:36:09.2213950Z warning: no files found matching 'BUCK' 2025-08-26T19:36:09.2219050Z warning: no files found matching '[Mm]akefile.*' 2025-08-26T19:36:09.2220860Z warning: no files found matching '*.[Dd]ockerfile' 2025-08-26T19:36:09.2221670Z warning: no files found matching '[Dd]ockerfile.*' 2025-08-26T19:36:10.6261890Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-08-26T19:36:10.6819540Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-08-26T19:36:11.0867870Z no previously-included directories found matching '*/.git' 2025-08-26T19:36:11.1829920Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-08-26T19:36:11.2386390Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-08-26T19:36:11.2386730Z adding license file 'LICENSE' 2025-08-26T19:36:11.2386900Z adding license file 'NOTICE' 2025-08-26T19:36:11.8945530Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-08-26T19:36:11.9270590Z Copying torch.egg-info to build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git262640f-py3.12.egg-info 2025-08-26T19:36:11.9441490Z running install_scripts 2025-08-26T19:36:11.9528850Z creating build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git262640f.dist-info/WHEEL 2025-08-26T19:36:11.9531560Z creating 'dist/torch-2.9.0a0+git262640f-cp312-cp312-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-14.0-arm64/wheel' to it 2025-08-26T19:36:11.9604540Z adding 'functorch/_C.cpython-312-darwin.so' 2025-08-26T19:36:11.9607010Z adding 'functorch/__init__.py' 2025-08-26T19:36:11.9608260Z adding 'functorch/_src/__init__.py' 2025-08-26T19:36:11.9609670Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-08-26T19:36:11.9610980Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-08-26T19:36:11.9612200Z adding 'functorch/_src/make_functional/__init__.py' 2025-08-26T19:36:11.9613280Z adding 'functorch/_src/vmap/__init__.py' 2025-08-26T19:36:11.9614370Z adding 'functorch/compile/__init__.py' 2025-08-26T19:36:11.9616340Z adding 'functorch/dim/__init__.py' 2025-08-26T19:36:11.9617130Z adding 'functorch/dim/magic_trace.py' 2025-08-26T19:36:11.9619130Z adding 'functorch/dim/op_properties.py' 2025-08-26T19:36:11.9619760Z adding 'functorch/dim/tree_map.py' 2025-08-26T19:36:11.9620790Z adding 'functorch/dim/wrap_type.py' 2025-08-26T19:36:11.9621810Z adding 'functorch/einops/__init__.py' 2025-08-26T19:36:11.9624900Z adding 'functorch/einops/_parsing.py' 2025-08-26T19:36:11.9627160Z adding 'functorch/einops/rearrange.py' 2025-08-26T19:36:11.9628130Z adding 'functorch/experimental/__init__.py' 2025-08-26T19:36:11.9629010Z adding 'functorch/experimental/control_flow.py' 2025-08-26T19:36:11.9629810Z adding 'functorch/experimental/ops.py' 2025-08-26T19:36:11.9634360Z adding 'torch/_C.cpython-312-darwin.so' 2025-08-26T19:36:11.9635410Z adding 'torch/_VF.py' 2025-08-26T19:36:11.9784660Z adding 'torch/_VF.pyi' 2025-08-26T19:36:11.9790810Z adding 'torch/__config__.py' 2025-08-26T19:36:11.9792110Z adding 'torch/__future__.py' 2025-08-26T19:36:11.9815580Z adding 'torch/__init__.py' 2025-08-26T19:36:11.9820270Z adding 'torch/_appdirs.py' 2025-08-26T19:36:11.9821280Z adding 'torch/_classes.py' 2025-08-26T19:36:11.9822460Z adding 'torch/_compile.py' 2025-08-26T19:36:11.9825570Z adding 'torch/_custom_ops.py' 2025-08-26T19:36:11.9826140Z adding 'torch/_environment.py' 2025-08-26T19:36:11.9835380Z adding 'torch/_guards.py' 2025-08-26T19:36:11.9848700Z adding 'torch/_jit_internal.py' 2025-08-26T19:36:11.9850180Z adding 'torch/_linalg_utils.py' 2025-08-26T19:36:11.9859720Z adding 'torch/_lobpcg.py' 2025-08-26T19:36:11.9862410Z adding 'torch/_lowrank.py' 2025-08-26T19:36:11.9911400Z adding 'torch/_meta_registrations.py' 2025-08-26T19:36:11.9914380Z adding 'torch/_namedtensor_internals.py' 2025-08-26T19:36:11.9927450Z adding 'torch/_ops.py' 2025-08-26T19:36:11.9929820Z adding 'torch/_python_dispatcher.py' 2025-08-26T19:36:11.9930530Z adding 'torch/_size_docs.py' 2025-08-26T19:36:11.9932510Z adding 'torch/_sources.py' 2025-08-26T19:36:11.9933280Z adding 'torch/_storage_docs.py' 2025-08-26T19:36:11.9934090Z adding 'torch/_streambase.py' 2025-08-26T19:36:11.9949310Z adding 'torch/_tensor.py' 2025-08-26T19:36:11.9975790Z adding 'torch/_tensor_docs.py' 2025-08-26T19:36:11.9982160Z adding 'torch/_tensor_str.py' 2025-08-26T19:36:11.9982800Z adding 'torch/_thread_safe_fork.py' 2025-08-26T19:36:12.0069600Z adding 'torch/_torch_docs.py' 2025-08-26T19:36:12.0080870Z adding 'torch/_utils.py' 2025-08-26T19:36:12.0083990Z adding 'torch/_utils_internal.py' 2025-08-26T19:36:12.0086540Z adding 'torch/_vmap_internals.py' 2025-08-26T19:36:12.0091030Z adding 'torch/_weights_only_unpickler.py' 2025-08-26T19:36:12.0109710Z adding 'torch/functional.py' 2025-08-26T19:36:12.0117490Z adding 'torch/hub.py' 2025-08-26T19:36:12.0131790Z adding 'torch/library.py' 2025-08-26T19:36:12.0148410Z adding 'torch/overrides.py' 2025-08-26T19:36:12.0149420Z adding 'torch/py.typed' 2025-08-26T19:36:12.0151770Z adding 'torch/quasirandom.py' 2025-08-26T19:36:12.0153880Z adding 'torch/random.py' 2025-08-26T19:36:12.0154670Z adding 'torch/return_types.py' 2025-08-26T19:36:12.0156720Z adding 'torch/return_types.pyi' 2025-08-26T19:36:12.0174750Z adding 'torch/serialization.py' 2025-08-26T19:36:12.0183980Z adding 'torch/storage.py' 2025-08-26T19:36:12.0185210Z adding 'torch/torch_version.py' 2025-08-26T19:36:12.0186620Z adding 'torch/types.py' 2025-08-26T19:36:12.0187450Z adding 'torch/version.py' 2025-08-26T19:36:12.0337810Z adding 'torch/_C/_VariableFunctions.pyi' 2025-08-26T19:36:12.0401300Z adding 'torch/_C/__init__.pyi' 2025-08-26T19:36:12.0404640Z adding 'torch/_C/_aoti.pyi' 2025-08-26T19:36:12.0405950Z adding 'torch/_C/_autograd.pyi' 2025-08-26T19:36:12.0406930Z adding 'torch/_C/_cpu.pyi' 2025-08-26T19:36:12.0407980Z adding 'torch/_C/_cudnn.pyi' 2025-08-26T19:36:12.0408590Z adding 'torch/_C/_cusparselt.pyi' 2025-08-26T19:36:12.0409570Z adding 'torch/_C/_distributed_autograd.pyi' 2025-08-26T19:36:12.0414180Z adding 'torch/_C/_distributed_c10d.pyi' 2025-08-26T19:36:12.0415690Z adding 'torch/_C/_distributed_rpc.pyi' 2025-08-26T19:36:12.0416670Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-08-26T19:36:12.0417490Z adding 'torch/_C/_functions.pyi' 2025-08-26T19:36:12.0418640Z adding 'torch/_C/_functorch.pyi' 2025-08-26T19:36:12.0419450Z adding 'torch/_C/_instruction_counter.pyi' 2025-08-26T19:36:12.0420190Z adding 'torch/_C/_itt.pyi' 2025-08-26T19:36:12.0421680Z adding 'torch/_C/_jit_tree_views.pyi' 2025-08-26T19:36:12.0422540Z adding 'torch/_C/_lazy.pyi' 2025-08-26T19:36:12.0423330Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-08-26T19:36:12.0424290Z adding 'torch/_C/_monitor.pyi' 2025-08-26T19:36:12.0426240Z adding 'torch/_C/_nn.pyi' 2025-08-26T19:36:12.0426620Z adding 'torch/_C/_nvtx.pyi' 2025-08-26T19:36:12.0427520Z adding 'torch/_C/_onnx.pyi' 2025-08-26T19:36:12.0429520Z adding 'torch/_C/_profiler.pyi' 2025-08-26T19:36:12.0429930Z adding 'torch/_C/_verbose.pyi' 2025-08-26T19:36:12.0431100Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-08-26T19:36:12.0432010Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-08-26T19:36:12.0433160Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-08-26T19:36:12.0435490Z adding 'torch/_C/_dynamo/guards.pyi' 2025-08-26T19:36:12.0436280Z adding 'torch/_C/_export/__init__.pyi' 2025-08-26T19:36:12.0437130Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-08-26T19:36:12.0438140Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-08-26T19:36:12.0439340Z adding 'torch/_awaits/__init__.py' 2025-08-26T19:36:12.0440280Z adding 'torch/_custom_op/__init__.py' 2025-08-26T19:36:12.0443320Z adding 'torch/_custom_op/autograd.py' 2025-08-26T19:36:12.0448600Z adding 'torch/_custom_op/impl.py' 2025-08-26T19:36:12.0452530Z adding 'torch/_decomp/__init__.py' 2025-08-26T19:36:12.0489660Z adding 'torch/_decomp/decompositions.py' 2025-08-26T19:36:12.0493260Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-08-26T19:36:12.0495650Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-08-26T19:36:12.0496510Z adding 'torch/_dispatch/__init__.py' 2025-08-26T19:36:12.0498690Z adding 'torch/_dispatch/python.py' 2025-08-26T19:36:12.0501130Z adding 'torch/_dynamo/__init__.py' 2025-08-26T19:36:12.0503640Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-08-26T19:36:12.0505880Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-08-26T19:36:12.0520810Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-08-26T19:36:12.0523350Z adding 'torch/_dynamo/cache_size.py' 2025-08-26T19:36:12.0524710Z adding 'torch/_dynamo/callback.py' 2025-08-26T19:36:12.0525800Z adding 'torch/_dynamo/code_context.py' 2025-08-26T19:36:12.0531810Z adding 'torch/_dynamo/codegen.py' 2025-08-26T19:36:12.0544720Z adding 'torch/_dynamo/compiled_autograd.py' 2025-08-26T19:36:12.0548320Z adding 'torch/_dynamo/comptime.py' 2025-08-26T19:36:12.0556060Z adding 'torch/_dynamo/config.py' 2025-08-26T19:36:12.0571840Z adding 'torch/_dynamo/convert_frame.py' 2025-08-26T19:36:12.0573130Z adding 'torch/_dynamo/create_parameter_op.py' 2025-08-26T19:36:12.0574330Z adding 'torch/_dynamo/current_scope_id.py' 2025-08-26T19:36:12.0581900Z adding 'torch/_dynamo/debug_utils.py' 2025-08-26T19:36:12.0589790Z adding 'torch/_dynamo/decorators.py' 2025-08-26T19:36:12.0593400Z adding 'torch/_dynamo/device_interface.py' 2025-08-26T19:36:12.0594310Z adding 'torch/_dynamo/distributed.py' 2025-08-26T19:36:12.0614280Z adding 'torch/_dynamo/eval_frame.py' 2025-08-26T19:36:12.0620210Z adding 'torch/_dynamo/exc.py' 2025-08-26T19:36:12.0622410Z adding 'torch/_dynamo/external_utils.py' 2025-08-26T19:36:12.0623400Z adding 'torch/_dynamo/funcname_cache.py' 2025-08-26T19:36:12.0624410Z adding 'torch/_dynamo/graph_break_hints.py' 2025-08-26T19:36:12.0640400Z adding 'torch/_dynamo/graph_break_registry.json' 2025-08-26T19:36:12.0646230Z adding 'torch/_dynamo/graph_deduplication.py' 2025-08-26T19:36:12.0650580Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-08-26T19:36:12.0651580Z adding 'torch/_dynamo/graph_utils.py' 2025-08-26T19:36:12.0688590Z adding 'torch/_dynamo/guards.py' 2025-08-26T19:36:12.0690350Z adding 'torch/_dynamo/hooks.py' 2025-08-26T19:36:12.0691410Z adding 'torch/_dynamo/logging.py' 2025-08-26T19:36:12.0693760Z adding 'torch/_dynamo/metrics_context.py' 2025-08-26T19:36:12.0695160Z adding 'torch/_dynamo/mutation_guard.py' 2025-08-26T19:36:12.0729300Z adding 'torch/_dynamo/output_graph.py' 2025-08-26T19:36:12.0737130Z adding 'torch/_dynamo/package.py' 2025-08-26T19:36:12.0744930Z adding 'torch/_dynamo/pgo.py' 2025-08-26T19:36:12.0747590Z adding 'torch/_dynamo/precompile_context.py' 2025-08-26T19:36:12.0749110Z adding 'torch/_dynamo/profiler.py' 2025-08-26T19:36:12.0750670Z adding 'torch/_dynamo/replay_record.py' 2025-08-26T19:36:12.0756180Z adding 'torch/_dynamo/resume_execution.py' 2025-08-26T19:36:12.0766240Z adding 'torch/_dynamo/side_effects.py' 2025-08-26T19:36:12.0771850Z adding 'torch/_dynamo/source.py' 2025-08-26T19:36:12.0810710Z adding 'torch/_dynamo/symbolic_convert.py' 2025-08-26T19:36:12.0812800Z adding 'torch/_dynamo/tensor_version_op.py' 2025-08-26T19:36:12.0814880Z adding 'torch/_dynamo/test_case.py' 2025-08-26T19:36:12.0815620Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-08-26T19:36:12.0818780Z adding 'torch/_dynamo/test_minifier_common.py' 2025-08-26T19:36:12.0822490Z adding 'torch/_dynamo/testing.py' 2025-08-26T19:36:12.0846660Z adding 'torch/_dynamo/trace_rules.py' 2025-08-26T19:36:12.0848970Z adding 'torch/_dynamo/types.py' 2025-08-26T19:36:12.0888090Z adding 'torch/_dynamo/utils.py' 2025-08-26T19:36:12.0890210Z adding 'torch/_dynamo/backends/__init__.py' 2025-08-26T19:36:12.0891960Z adding 'torch/_dynamo/backends/common.py' 2025-08-26T19:36:12.0894550Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-08-26T19:36:12.0898260Z adding 'torch/_dynamo/backends/debugging.py' 2025-08-26T19:36:12.0904730Z adding 'torch/_dynamo/backends/distributed.py' 2025-08-26T19:36:12.0905650Z adding 'torch/_dynamo/backends/inductor.py' 2025-08-26T19:36:12.0906770Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-08-26T19:36:12.0908920Z adding 'torch/_dynamo/backends/registry.py' 2025-08-26T19:36:12.0909520Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-08-26T19:36:12.0910510Z adding 'torch/_dynamo/backends/torchxla.py' 2025-08-26T19:36:12.0912860Z adding 'torch/_dynamo/backends/tvm.py' 2025-08-26T19:36:12.0916120Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-08-26T19:36:12.0916790Z adding 'torch/_dynamo/polyfills/_collections.py' 2025-08-26T19:36:12.0918220Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-08-26T19:36:12.0919170Z adding 'torch/_dynamo/polyfills/functools.py' 2025-08-26T19:36:12.0920080Z adding 'torch/_dynamo/polyfills/fx.py' 2025-08-26T19:36:12.0922300Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-08-26T19:36:12.0923100Z adding 'torch/_dynamo/polyfills/loader.py' 2025-08-26T19:36:12.0924300Z adding 'torch/_dynamo/polyfills/operator.py' 2025-08-26T19:36:12.0925260Z adding 'torch/_dynamo/polyfills/os.py' 2025-08-26T19:36:12.0928590Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-08-26T19:36:12.0929230Z adding 'torch/_dynamo/polyfills/struct.py' 2025-08-26T19:36:12.0930030Z adding 'torch/_dynamo/polyfills/sys.py' 2025-08-26T19:36:12.0931040Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-08-26T19:36:12.0932120Z adding 'torch/_dynamo/repro/__init__.py' 2025-08-26T19:36:12.0941190Z adding 'torch/_dynamo/repro/after_aot.py' 2025-08-26T19:36:12.0945820Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-08-26T19:36:12.0950790Z adding 'torch/_dynamo/repro/aoti.py' 2025-08-26T19:36:12.0953250Z adding 'torch/_dynamo/variables/__init__.py' 2025-08-26T19:36:12.0958400Z adding 'torch/_dynamo/variables/base.py' 2025-08-26T19:36:12.0992110Z adding 'torch/_dynamo/variables/builder.py' 2025-08-26T19:36:12.1012870Z adding 'torch/_dynamo/variables/builtin.py' 2025-08-26T19:36:12.1015900Z adding 'torch/_dynamo/variables/constant.py' 2025-08-26T19:36:12.1024030Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-08-26T19:36:12.1032220Z adding 'torch/_dynamo/variables/dicts.py' 2025-08-26T19:36:12.1035740Z adding 'torch/_dynamo/variables/distributed.py' 2025-08-26T19:36:12.1054660Z adding 'torch/_dynamo/variables/functions.py' 2025-08-26T19:36:12.1079340Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-08-26T19:36:12.1083480Z adding 'torch/_dynamo/variables/iter.py' 2025-08-26T19:36:12.1085630Z adding 'torch/_dynamo/variables/lazy.py' 2025-08-26T19:36:12.1093620Z adding 'torch/_dynamo/variables/lists.py' 2025-08-26T19:36:12.1107890Z adding 'torch/_dynamo/variables/misc.py' 2025-08-26T19:36:12.1118140Z adding 'torch/_dynamo/variables/nn_module.py' 2025-08-26T19:36:12.1121900Z adding 'torch/_dynamo/variables/optimizer.py' 2025-08-26T19:36:12.1123290Z adding 'torch/_dynamo/variables/script_object.py' 2025-08-26T19:36:12.1124480Z adding 'torch/_dynamo/variables/sdpa.py' 2025-08-26T19:36:12.1138440Z adding 'torch/_dynamo/variables/tensor.py' 2025-08-26T19:36:12.1153540Z adding 'torch/_dynamo/variables/torch.py' 2025-08-26T19:36:12.1159360Z adding 'torch/_dynamo/variables/torch_function.py' 2025-08-26T19:36:12.1176390Z adding 'torch/_dynamo/variables/user_defined.py' 2025-08-26T19:36:12.1179180Z adding 'torch/_export/__init__.py' 2025-08-26T19:36:12.1192380Z adding 'torch/_export/converter.py' 2025-08-26T19:36:12.1193580Z adding 'torch/_export/error.py' 2025-08-26T19:36:12.1202820Z adding 'torch/_export/non_strict_utils.py' 2025-08-26T19:36:12.1206420Z adding 'torch/_export/pass_base.py' 2025-08-26T19:36:12.1207790Z adding 'torch/_export/tools.py' 2025-08-26T19:36:12.1221180Z adding 'torch/_export/utils.py' 2025-08-26T19:36:12.1225140Z adding 'torch/_export/verifier.py' 2025-08-26T19:36:12.1227500Z adding 'torch/_export/wrappers.py' 2025-08-26T19:36:12.1228540Z adding 'torch/_export/db/__init__.py' 2025-08-26T19:36:12.1230510Z adding 'torch/_export/db/case.py' 2025-08-26T19:36:12.1231100Z adding 'torch/_export/db/gen_example.py' 2025-08-26T19:36:12.1232150Z adding 'torch/_export/db/logging.py' 2025-08-26T19:36:12.1234110Z adding 'torch/_export/db/examples/__init__.py' 2025-08-26T19:36:12.1234710Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-08-26T19:36:12.1235570Z adding 'torch/_export/db/examples/autograd_function.py' 2025-08-26T19:36:12.1236440Z adding 'torch/_export/db/examples/class_method.py' 2025-08-26T19:36:12.1237440Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-08-26T19:36:12.1238430Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-08-26T19:36:12.1239460Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-08-26T19:36:12.1240290Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-08-26T19:36:12.1241170Z adding 'torch/_export/db/examples/cond_operands.py' 2025-08-26T19:36:12.1242040Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-08-26T19:36:12.1243000Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-08-26T19:36:12.1243860Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-08-26T19:36:12.1244640Z adding 'torch/_export/db/examples/decorator.py' 2025-08-26T19:36:12.1245440Z adding 'torch/_export/db/examples/dictionary.py' 2025-08-26T19:36:12.1246280Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-08-26T19:36:12.1247100Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-08-26T19:36:12.1247930Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-08-26T19:36:12.1248720Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-08-26T19:36:12.1249610Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-08-26T19:36:12.1250470Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-08-26T19:36:12.1251240Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-08-26T19:36:12.1252080Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-08-26T19:36:12.1252900Z adding 'torch/_export/db/examples/list_contains.py' 2025-08-26T19:36:12.1253710Z adding 'torch/_export/db/examples/list_unpack.py' 2025-08-26T19:36:12.1254550Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-08-26T19:36:12.1255370Z adding 'torch/_export/db/examples/nested_function.py' 2025-08-26T19:36:12.1256220Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-08-26T19:36:12.1257060Z adding 'torch/_export/db/examples/optional_input.py' 2025-08-26T19:36:12.1257880Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-08-26T19:36:12.1258680Z adding 'torch/_export/db/examples/scalar_output.py' 2025-08-26T19:36:12.1259540Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-08-26T19:36:12.1260330Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-08-26T19:36:12.1261110Z adding 'torch/_export/db/examples/static_if.py' 2025-08-26T19:36:12.1261950Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-08-26T19:36:12.1262790Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-08-26T19:36:12.1263610Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-08-26T19:36:12.1264440Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-08-26T19:36:12.1265330Z adding 'torch/_export/pass_infra/__init__.py' 2025-08-26T19:36:12.1266220Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-08-26T19:36:12.1267150Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-08-26T19:36:12.1268220Z adding 'torch/_export/passes/__init__.py' 2025-08-26T19:36:12.1269610Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-08-26T19:36:12.1272350Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-08-26T19:36:12.1273730Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-08-26T19:36:12.1276690Z adding 'torch/_export/passes/constant_folding.py' 2025-08-26T19:36:12.1277810Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-08-26T19:36:12.1278970Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-08-26T19:36:12.1282810Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-08-26T19:36:12.1283770Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-08-26T19:36:12.1286090Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-08-26T19:36:12.1291070Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-08-26T19:36:12.1292320Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-08-26T19:36:12.1293490Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-08-26T19:36:12.1295750Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-08-26T19:36:12.1296540Z adding 'torch/_export/serde/__init__.py' 2025-08-26T19:36:12.1299410Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-08-26T19:36:12.1301500Z adding 'torch/_export/serde/export_schema.thrift' 2025-08-26T19:36:12.1304600Z adding 'torch/_export/serde/schema.py' 2025-08-26T19:36:12.1306880Z adding 'torch/_export/serde/schema.yaml' 2025-08-26T19:36:12.1311550Z adding 'torch/_export/serde/schema_check.py' 2025-08-26T19:36:12.1340360Z adding 'torch/_export/serde/serialize.py' 2025-08-26T19:36:12.1342260Z adding 'torch/_export/serde/union.py' 2025-08-26T19:36:12.1343340Z adding 'torch/_functorch/__init__.py' 2025-08-26T19:36:12.1360680Z adding 'torch/_functorch/aot_autograd.py' 2025-08-26T19:36:12.1364970Z adding 'torch/_functorch/apis.py' 2025-08-26T19:36:12.1371110Z adding 'torch/_functorch/autograd_function.py' 2025-08-26T19:36:12.1372030Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-08-26T19:36:12.1374360Z adding 'torch/_functorch/benchmark_utils.py' 2025-08-26T19:36:12.1376570Z adding 'torch/_functorch/compile_utils.py' 2025-08-26T19:36:12.1379850Z adding 'torch/_functorch/compilers.py' 2025-08-26T19:36:12.1383820Z adding 'torch/_functorch/config.py' 2025-08-26T19:36:12.1385860Z adding 'torch/_functorch/deprecated.py' 2025-08-26T19:36:12.1400570Z adding 'torch/_functorch/eager_transforms.py' 2025-08-26T19:36:12.1403560Z adding 'torch/_functorch/functional_call.py' 2025-08-26T19:36:12.1407380Z adding 'torch/_functorch/fx_minifier.py' 2025-08-26T19:36:12.1412020Z adding 'torch/_functorch/make_functional.py' 2025-08-26T19:36:12.1437480Z adding 'torch/_functorch/partitioners.py' 2025-08-26T19:36:12.1439650Z adding 'torch/_functorch/predispatch.py' 2025-08-26T19:36:12.1442140Z adding 'torch/_functorch/pyfunctorch.py' 2025-08-26T19:36:12.1442780Z adding 'torch/_functorch/python_key.py' 2025-08-26T19:36:12.1443750Z adding 'torch/_functorch/pytree_hacks.py' 2025-08-26T19:36:12.1448710Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-08-26T19:36:12.1449500Z adding 'torch/_functorch/utils.py' 2025-08-26T19:36:12.1453740Z adding 'torch/_functorch/vmap.py' 2025-08-26T19:36:12.1454810Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-08-26T19:36:12.1456420Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-08-26T19:36:12.1459290Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-08-26T19:36:12.1460940Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-08-26T19:36:12.1463660Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-08-26T19:36:12.1464550Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-08-26T19:36:12.1477720Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-08-26T19:36:12.1488020Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-08-26T19:36:12.1493730Z adding 'torch/_functorch/_aot_autograd/descriptors.py' 2025-08-26T19:36:12.1496530Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-08-26T19:36:12.1501170Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-08-26T19:36:12.1503630Z adding 'torch/_functorch/_aot_autograd/fx_utils.py' 2025-08-26T19:36:12.1507220Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-08-26T19:36:12.1520360Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-08-26T19:36:12.1538440Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-08-26T19:36:12.1543020Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-08-26T19:36:12.1544420Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-08-26T19:36:12.1568830Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-08-26T19:36:12.1582590Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-08-26T19:36:12.1584210Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-08-26T19:36:12.1588970Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-08-26T19:36:12.1593860Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-08-26T19:36:12.1595230Z adding 'torch/_higher_order_ops/__init__.py' 2025-08-26T19:36:12.1597640Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-08-26T19:36:12.1599150Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-08-26T19:36:12.1603780Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-08-26T19:36:12.1610950Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-08-26T19:36:12.1613960Z adding 'torch/_higher_order_ops/base_hop.py' 2025-08-26T19:36:12.1620410Z adding 'torch/_higher_order_ops/cond.py' 2025-08-26T19:36:12.1623130Z adding 'torch/_higher_order_ops/effects.py' 2025-08-26T19:36:12.1624760Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-08-26T19:36:12.1626250Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-08-26T19:36:12.1633620Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-08-26T19:36:12.1634470Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-08-26T19:36:12.1636470Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-08-26T19:36:12.1641710Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-08-26T19:36:12.1644220Z adding 'torch/_higher_order_ops/map.py' 2025-08-26T19:36:12.1645740Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-08-26T19:36:12.1646930Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-08-26T19:36:12.1656120Z adding 'torch/_higher_order_ops/scan.py' 2025-08-26T19:36:12.1659060Z adding 'torch/_higher_order_ops/schema.py' 2025-08-26T19:36:12.1660150Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-08-26T19:36:12.1662290Z adding 'torch/_higher_order_ops/torchbind.py' 2025-08-26T19:36:12.1678920Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-08-26T19:36:12.1690230Z adding 'torch/_higher_order_ops/utils.py' 2025-08-26T19:36:12.1695070Z adding 'torch/_higher_order_ops/while_loop.py' 2025-08-26T19:36:12.1697790Z adding 'torch/_higher_order_ops/wrap.py' 2025-08-26T19:36:12.1699560Z adding 'torch/_inductor/__autotune_main__.py' 2025-08-26T19:36:12.1702760Z adding 'torch/_inductor/__init__.py' 2025-08-26T19:36:12.1704240Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-08-26T19:36:12.1706970Z adding 'torch/_inductor/aoti_eager.py' 2025-08-26T19:36:12.1712350Z adding 'torch/_inductor/async_compile.py' 2025-08-26T19:36:12.1718420Z adding 'torch/_inductor/autotune_process.py' 2025-08-26T19:36:12.1720470Z adding 'torch/_inductor/await_utils.py' 2025-08-26T19:36:12.1722970Z adding 'torch/_inductor/bounds.py' 2025-08-26T19:36:12.1726250Z adding 'torch/_inductor/choices.py' 2025-08-26T19:36:12.1762040Z adding 'torch/_inductor/codecache.py' 2025-08-26T19:36:12.1765050Z adding 'torch/_inductor/comm_analysis.py' 2025-08-26T19:36:12.1767890Z adding 'torch/_inductor/comm_lowering.py' 2025-08-26T19:36:12.1781740Z adding 'torch/_inductor/comms.py' 2025-08-26T19:36:12.1783240Z adding 'torch/_inductor/comms_debug.py' 2025-08-26T19:36:12.1806700Z adding 'torch/_inductor/compile_fx.py' 2025-08-26T19:36:12.1810160Z adding 'torch/_inductor/compile_fx_async.py' 2025-08-26T19:36:12.1815010Z adding 'torch/_inductor/compile_fx_ext.py' 2025-08-26T19:36:12.1816230Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-08-26T19:36:12.1820760Z adding 'torch/_inductor/compiler_bisector.py' 2025-08-26T19:36:12.1840490Z adding 'torch/_inductor/config.py' 2025-08-26T19:36:12.1844250Z adding 'torch/_inductor/constant_folding.py' 2025-08-26T19:36:12.1860100Z adding 'torch/_inductor/cpp_builder.py' 2025-08-26T19:36:12.1863760Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-08-26T19:36:12.1887880Z adding 'torch/_inductor/cudagraph_trees.py' 2025-08-26T19:36:12.1891580Z adding 'torch/_inductor/cudagraph_utils.py' 2025-08-26T19:36:12.1892770Z adding 'torch/_inductor/custom_graph_pass.py' 2025-08-26T19:36:12.1901800Z adding 'torch/_inductor/debug.py' 2025-08-26T19:36:12.1909920Z adding 'torch/_inductor/decomposition.py' 2025-08-26T19:36:12.1916740Z adding 'torch/_inductor/dependencies.py' 2025-08-26T19:36:12.1919280Z adding 'torch/_inductor/dtype_propagation.py' 2025-08-26T19:36:12.1920580Z adding 'torch/_inductor/exc.py' 2025-08-26T19:36:12.1921620Z adding 'torch/_inductor/extern_node_serializer.py' 2025-08-26T19:36:12.1924550Z adding 'torch/_inductor/freezing.py' 2025-08-26T19:36:12.1925350Z adding 'torch/_inductor/freezing_utils.py' 2025-08-26T19:36:12.1933200Z adding 'torch/_inductor/fuzzer.py' 2025-08-26T19:36:12.1936400Z adding 'torch/_inductor/fx_utils.py' 2025-08-26T19:36:12.1959200Z adding 'torch/_inductor/graph.py' 2025-08-26T19:36:12.1960460Z adding 'torch/_inductor/hooks.py' 2025-08-26T19:36:12.1963760Z adding 'torch/_inductor/index_propagation.py' 2025-08-26T19:36:12.1965870Z adding 'torch/_inductor/inductor_prims.py' 2025-08-26T19:36:12.2033200Z adding 'torch/_inductor/ir.py' 2025-08-26T19:36:12.2036860Z adding 'torch/_inductor/jagged_lowerings.py' 2025-08-26T19:36:12.2038940Z adding 'torch/_inductor/kernel_inputs.py' 2025-08-26T19:36:12.2044080Z adding 'torch/_inductor/loop_body.py' 2025-08-26T19:36:12.2094480Z adding 'torch/_inductor/lowering.py' 2025-08-26T19:36:12.2103140Z adding 'torch/_inductor/memory.py' 2025-08-26T19:36:12.2106410Z adding 'torch/_inductor/metrics.py' 2025-08-26T19:36:12.2112710Z adding 'torch/_inductor/mkldnn_ir.py' 2025-08-26T19:36:12.2119890Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-08-26T19:36:12.2122160Z adding 'torch/_inductor/mock_cache.py' 2025-08-26T19:36:12.2128460Z adding 'torch/_inductor/ops_handler.py' 2025-08-26T19:36:12.2129970Z adding 'torch/_inductor/optimize_indexing.py' 2025-08-26T19:36:12.2136110Z adding 'torch/_inductor/output_code.py' 2025-08-26T19:36:12.2154140Z adding 'torch/_inductor/pattern_matcher.py' 2025-08-26T19:36:12.2156250Z adding 'torch/_inductor/quantized_lowerings.py' 2025-08-26T19:36:12.2159240Z adding 'torch/_inductor/remote_cache.py' 2025-08-26T19:36:12.2160080Z adding 'torch/_inductor/remote_gemm_autotune_cache.py' 2025-08-26T19:36:12.2204500Z adding 'torch/_inductor/scheduler.py' 2025-08-26T19:36:12.2206610Z adding 'torch/_inductor/script.ld' 2025-08-26T19:36:12.2234760Z adding 'torch/_inductor/select_algorithm.py' 2025-08-26T19:36:12.2236920Z adding 'torch/_inductor/shape_propagation.py' 2025-08-26T19:36:12.2245120Z adding 'torch/_inductor/sizevars.py' 2025-08-26T19:36:12.2247800Z adding 'torch/_inductor/standalone_compile.py' 2025-08-26T19:36:12.2249900Z adding 'torch/_inductor/subgraph_lowering.py' 2025-08-26T19:36:12.2259840Z adding 'torch/_inductor/template_heuristics.py' 2025-08-26T19:36:12.2261390Z adding 'torch/_inductor/template_registry.py' 2025-08-26T19:36:12.2262510Z adding 'torch/_inductor/test_case.py' 2025-08-26T19:36:12.2263430Z adding 'torch/_inductor/test_operators.py' 2025-08-26T19:36:12.2269440Z adding 'torch/_inductor/tiling_utils.py' 2025-08-26T19:36:12.2272800Z adding 'torch/_inductor/triton_bundler.py' 2025-08-26T19:36:12.2300420Z adding 'torch/_inductor/utils.py' 2025-08-26T19:36:12.2304260Z adding 'torch/_inductor/virtualized.py' 2025-08-26T19:36:12.2308080Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-08-26T19:36:12.2309230Z adding 'torch/_inductor/analysis/__init__.py' 2025-08-26T19:36:12.2311280Z adding 'torch/_inductor/analysis/device_info.py' 2025-08-26T19:36:12.2317060Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-08-26T19:36:12.2318090Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-08-26T19:36:12.2321210Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-08-26T19:36:12.2323780Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-08-26T19:36:12.2325240Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-08-26T19:36:12.2326480Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-08-26T19:36:12.2330960Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-08-26T19:36:12.2335220Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-08-26T19:36:12.2336740Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-08-26T19:36:12.2338870Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-08-26T19:36:12.2339980Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-08-26T19:36:12.2341020Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-08-26T19:36:12.2342510Z adding 'torch/_inductor/codegen/__init__.py' 2025-08-26T19:36:12.2343620Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-08-26T19:36:12.2345940Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-08-26T19:36:12.2365730Z adding 'torch/_inductor/codegen/common.py' 2025-08-26T19:36:12.2411840Z adding 'torch/_inductor/codegen/cpp.py' 2025-08-26T19:36:12.2415330Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-08-26T19:36:12.2423470Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-08-26T19:36:12.2438130Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-08-26T19:36:12.2442470Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-08-26T19:36:12.2454900Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-08-26T19:36:12.2457000Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-08-26T19:36:12.2461720Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-08-26T19:36:12.2467480Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-08-26T19:36:12.2491150Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-08-26T19:36:12.2498930Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-08-26T19:36:12.2504860Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-08-26T19:36:12.2506990Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-08-26T19:36:12.2507500Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-08-26T19:36:12.2509070Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-08-26T19:36:12.2511700Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-08-26T19:36:12.2524050Z adding 'torch/_inductor/codegen/halide.py' 2025-08-26T19:36:12.2529700Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-08-26T19:36:12.2537330Z adding 'torch/_inductor/codegen/mps.py' 2025-08-26T19:36:12.2538200Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-08-26T19:36:12.2542760Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-08-26T19:36:12.2543720Z adding 'torch/_inductor/codegen/python_wrapper_mtia.py' 2025-08-26T19:36:12.2545890Z adding 'torch/_inductor/codegen/segmented_tree.py' 2025-08-26T19:36:12.2567530Z adding 'torch/_inductor/codegen/simd.py' 2025-08-26T19:36:12.2572780Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-08-26T19:36:12.2575200Z adding 'torch/_inductor/codegen/subgraph.py' 2025-08-26T19:36:12.2615790Z adding 'torch/_inductor/codegen/triton.py' 2025-08-26T19:36:12.2624500Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-08-26T19:36:12.2626780Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-08-26T19:36:12.2629110Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-08-26T19:36:12.2658580Z adding 'torch/_inductor/codegen/wrapper.py' 2025-08-26T19:36:12.2665230Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-08-26T19:36:12.2668600Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-08-26T19:36:12.2669410Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-08-26T19:36:12.2672480Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-08-26T19:36:12.2673260Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-08-26T19:36:12.2678670Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-08-26T19:36:12.2681850Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-08-26T19:36:12.2683170Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-08-26T19:36:12.2684590Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-08-26T19:36:12.2687730Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-08-26T19:36:12.2691440Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-08-26T19:36:12.2694160Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-08-26T19:36:12.2708520Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-08-26T19:36:12.2711940Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-08-26T19:36:12.2712950Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-08-26T19:36:12.2715750Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-08-26T19:36:12.2719050Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-08-26T19:36:12.2720020Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py' 2025-08-26T19:36:12.2721220Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py' 2025-08-26T19:36:12.2722090Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py' 2025-08-26T19:36:12.2722950Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py' 2025-08-26T19:36:12.2723920Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py' 2025-08-26T19:36:12.2724920Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py' 2025-08-26T19:36:12.2725710Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py' 2025-08-26T19:36:12.2726560Z adding 'torch/_inductor/codegen/cutedsl/__init__.py' 2025-08-26T19:36:12.2728890Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_kernel.py' 2025-08-26T19:36:12.2730290Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py' 2025-08-26T19:36:12.2732400Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_template.py' 2025-08-26T19:36:12.2733050Z adding 'torch/_inductor/codegen/mtia/__init__.py' 2025-08-26T19:36:12.2734040Z adding 'torch/_inductor/codegen/mtia/device_op_overrides.py' 2025-08-26T19:36:12.2735040Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-08-26T19:36:12.2739680Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-08-26T19:36:12.2740780Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-08-26T19:36:12.2741800Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-08-26T19:36:12.2748090Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-08-26T19:36:12.2755470Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-08-26T19:36:12.2756870Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-08-26T19:36:12.2758870Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-08-26T19:36:12.2760090Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-08-26T19:36:12.2762870Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-08-26T19:36:12.2764670Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-08-26T19:36:12.2765570Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-08-26T19:36:12.2766340Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-08-26T19:36:12.2767390Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-08-26T19:36:12.2768510Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-08-26T19:36:12.2769520Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-08-26T19:36:12.2770650Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-08-26T19:36:12.2774140Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-08-26T19:36:12.2775300Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-08-26T19:36:12.2776300Z adding 'torch/_inductor/compile_worker/utils.py' 2025-08-26T19:36:12.2777430Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-08-26T19:36:12.2782650Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-08-26T19:36:12.2786150Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-08-26T19:36:12.2790420Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-08-26T19:36:12.2795210Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-08-26T19:36:12.2797470Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-08-26T19:36:12.2798450Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-08-26T19:36:12.2801290Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-08-26T19:36:12.2803480Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-08-26T19:36:12.2804450Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-08-26T19:36:12.2810200Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-08-26T19:36:12.2819360Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-08-26T19:36:12.2826350Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-08-26T19:36:12.2834140Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-08-26T19:36:12.2835620Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-08-26T19:36:12.2845590Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-08-26T19:36:12.2847700Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-08-26T19:36:12.2853260Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-08-26T19:36:12.2867950Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-08-26T19:36:12.2874000Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-08-26T19:36:12.2896300Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-08-26T19:36:12.2903400Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-08-26T19:36:12.2904640Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-08-26T19:36:12.2926750Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-08-26T19:36:12.2928370Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-08-26T19:36:12.2930000Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-08-26T19:36:12.2931760Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-08-26T19:36:12.2933880Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-08-26T19:36:12.2935250Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-08-26T19:36:12.2936680Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-08-26T19:36:12.2938400Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-08-26T19:36:12.2940600Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-08-26T19:36:12.2943500Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-08-26T19:36:12.2945610Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-08-26T19:36:12.2948110Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-08-26T19:36:12.2949790Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-08-26T19:36:12.2951300Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-08-26T19:36:12.2953610Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-08-26T19:36:12.2954960Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-08-26T19:36:12.2960020Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-08-26T19:36:12.2960390Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-08-26T19:36:12.2960740Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-08-26T19:36:12.2961240Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-08-26T19:36:12.2962850Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-08-26T19:36:12.2964400Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-08-26T19:36:12.2966040Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-08-26T19:36:12.2967960Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-08-26T19:36:12.2969440Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-08-26T19:36:12.2971540Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-08-26T19:36:12.2972250Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-08-26T19:36:12.2973160Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-08-26T19:36:12.2974060Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-08-26T19:36:12.2975120Z adding 'torch/_inductor/kernel/__init__.py' 2025-08-26T19:36:12.2977800Z adding 'torch/_inductor/kernel/bmm.py' 2025-08-26T19:36:12.2981960Z adding 'torch/_inductor/kernel/conv.py' 2025-08-26T19:36:12.2990410Z adding 'torch/_inductor/kernel/mm.py' 2025-08-26T19:36:12.2992340Z adding 'torch/_inductor/kernel/mm_common.py' 2025-08-26T19:36:12.2997040Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-08-26T19:36:12.2999140Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-08-26T19:36:12.2999890Z adding 'torch/_inductor/kernel/flex/__init__.py' 2025-08-26T19:36:12.3002910Z adding 'torch/_inductor/kernel/flex/common.py' 2025-08-26T19:36:12.3008150Z adding 'torch/_inductor/kernel/flex/flex_attention.py' 2025-08-26T19:36:12.3010960Z adding 'torch/_inductor/kernel/flex/flex_cpu.py' 2025-08-26T19:36:12.3014260Z adding 'torch/_inductor/kernel/flex/flex_decoding.py' 2025-08-26T19:36:12.3016460Z adding 'torch/_inductor/kernel/flex/templates/common.py.jinja' 2025-08-26T19:36:12.3019060Z adding 'torch/_inductor/kernel/flex/templates/flex_attention.py.jinja' 2025-08-26T19:36:12.3023620Z adding 'torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja' 2025-08-26T19:36:12.3026400Z adding 'torch/_inductor/kernel/flex/templates/flex_decode.py.jinja' 2025-08-26T19:36:12.3027280Z adding 'torch/_inductor/kernel/flex/templates/utilities.py.jinja' 2025-08-26T19:36:12.3028210Z adding 'torch/_inductor/package/__init__.py' 2025-08-26T19:36:12.3029050Z adding 'torch/_inductor/package/build_package.py' 2025-08-26T19:36:12.3031060Z adding 'torch/_inductor/package/package.py' 2025-08-26T19:36:12.3031720Z adding 'torch/_inductor/runtime/__init__.py' 2025-08-26T19:36:12.3036890Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-08-26T19:36:12.3039710Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-08-26T19:36:12.3040460Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-08-26T19:36:12.3041610Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-08-26T19:36:12.3044260Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-08-26T19:36:12.3045390Z adding 'torch/_inductor/runtime/debug_utils.py' 2025-08-26T19:36:12.3046760Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-08-26T19:36:12.3048940Z adding 'torch/_inductor/runtime/hints.py' 2025-08-26T19:36:12.3050200Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-08-26T19:36:12.3052980Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-08-26T19:36:12.3054090Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-08-26T19:36:12.3059510Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-08-26T19:36:12.3085840Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-08-26T19:36:12.3087910Z adding 'torch/_lazy/__init__.py' 2025-08-26T19:36:12.3089420Z adding 'torch/_lazy/closure.py' 2025-08-26T19:36:12.3090360Z adding 'torch/_lazy/computation.py' 2025-08-26T19:36:12.3091210Z adding 'torch/_lazy/config.py' 2025-08-26T19:36:12.3092100Z adding 'torch/_lazy/debug.py' 2025-08-26T19:36:12.3092970Z adding 'torch/_lazy/device_context.py' 2025-08-26T19:36:12.3095600Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-08-26T19:36:12.3096190Z adding 'torch/_lazy/ir_cache.py' 2025-08-26T19:36:12.3097000Z adding 'torch/_lazy/metrics.py' 2025-08-26T19:36:12.3097970Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-08-26T19:36:12.3098700Z adding 'torch/_lazy/ts_backend.py' 2025-08-26T19:36:12.3099780Z adding 'torch/_library/__init__.py' 2025-08-26T19:36:12.3102200Z adding 'torch/_library/autograd.py' 2025-08-26T19:36:12.3109570Z adding 'torch/_library/custom_ops.py' 2025-08-26T19:36:12.3112940Z adding 'torch/_library/fake_class_registry.py' 2025-08-26T19:36:12.3115170Z adding 'torch/_library/fake_impl.py' 2025-08-26T19:36:12.3117980Z adding 'torch/_library/fake_profile.py' 2025-08-26T19:36:12.3120930Z adding 'torch/_library/infer_schema.py' 2025-08-26T19:36:12.3121890Z adding 'torch/_library/simple_registry.py' 2025-08-26T19:36:12.3125650Z adding 'torch/_library/triton.py' 2025-08-26T19:36:12.3129860Z adding 'torch/_library/utils.py' 2025-08-26T19:36:12.3130880Z adding 'torch/_logging/__init__.py' 2025-08-26T19:36:12.3142620Z adding 'torch/_logging/_internal.py' 2025-08-26T19:36:12.3144860Z adding 'torch/_logging/_registrations.py' 2025-08-26T19:36:12.3145810Z adding 'torch/_logging/scribe.py' 2025-08-26T19:36:12.3147200Z adding 'torch/_logging/structured.py' 2025-08-26T19:36:12.3148470Z adding 'torch/_numpy/__init__.py' 2025-08-26T19:36:12.3149540Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-08-26T19:36:12.3152800Z adding 'torch/_numpy/_casting_dicts.py' 2025-08-26T19:36:12.3155650Z adding 'torch/_numpy/_dtypes.py' 2025-08-26T19:36:12.3157460Z adding 'torch/_numpy/_dtypes_impl.py' 2025-08-26T19:36:12.3158510Z adding 'torch/_numpy/_funcs.py' 2025-08-26T19:36:12.3171490Z adding 'torch/_numpy/_funcs_impl.py' 2025-08-26T19:36:12.3172340Z adding 'torch/_numpy/_getlimits.py' 2025-08-26T19:36:12.3177270Z adding 'torch/_numpy/_ndarray.py' 2025-08-26T19:36:12.3179550Z adding 'torch/_numpy/_normalizations.py' 2025-08-26T19:36:12.3181990Z adding 'torch/_numpy/_reductions_impl.py' 2025-08-26T19:36:12.3184060Z adding 'torch/_numpy/_ufuncs.py' 2025-08-26T19:36:12.3184780Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-08-26T19:36:12.3187260Z adding 'torch/_numpy/_util.py' 2025-08-26T19:36:12.3188130Z adding 'torch/_numpy/fft.py' 2025-08-26T19:36:12.3189610Z adding 'torch/_numpy/linalg.py' 2025-08-26T19:36:12.3191370Z adding 'torch/_numpy/random.py' 2025-08-26T19:36:12.3192330Z adding 'torch/_numpy/testing/__init__.py' 2025-08-26T19:36:12.3208670Z adding 'torch/_numpy/testing/utils.py' 2025-08-26T19:36:12.3224760Z adding 'torch/_prims/__init__.py' 2025-08-26T19:36:12.3227040Z adding 'torch/_prims/context.py' 2025-08-26T19:36:12.3227980Z adding 'torch/_prims/debug_prims.py' 2025-08-26T19:36:12.3229170Z adding 'torch/_prims/executor.py' 2025-08-26T19:36:12.3232060Z adding 'torch/_prims/rng_prims.py' 2025-08-26T19:36:12.3248840Z adding 'torch/_prims_common/__init__.py' 2025-08-26T19:36:12.3253430Z adding 'torch/_prims_common/wrappers.py' 2025-08-26T19:36:12.3299570Z adding 'torch/_refs/__init__.py' 2025-08-26T19:36:12.3301950Z adding 'torch/_refs/_conversions.py' 2025-08-26T19:36:12.3305250Z adding 'torch/_refs/fft.py' 2025-08-26T19:36:12.3308320Z adding 'torch/_refs/linalg/__init__.py' 2025-08-26T19:36:12.3309100Z adding 'torch/_refs/nn/__init__.py' 2025-08-26T19:36:12.3317280Z adding 'torch/_refs/nn/functional/__init__.py' 2025-08-26T19:36:12.3319330Z adding 'torch/_refs/special/__init__.py' 2025-08-26T19:36:12.3320030Z adding 'torch/_strobelight/__init__.py' 2025-08-26T19:36:12.3322800Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-08-26T19:36:12.3324930Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-08-26T19:36:12.3326660Z adding 'torch/_subclasses/__init__.py' 2025-08-26T19:36:12.3329110Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-08-26T19:36:12.3338020Z adding 'torch/_subclasses/fake_impls.py' 2025-08-26T19:36:12.3368990Z adding 'torch/_subclasses/fake_tensor.py' 2025-08-26T19:36:12.3372100Z adding 'torch/_subclasses/fake_utils.py' 2025-08-26T19:36:12.3378960Z adding 'torch/_subclasses/functional_tensor.py' 2025-08-26T19:36:12.3396900Z adding 'torch/_subclasses/meta_utils.py' 2025-08-26T19:36:12.3399470Z adding 'torch/_subclasses/schema_check_mode.py' 2025-08-26T19:36:12.3400250Z adding 'torch/_vendor/__init__.py' 2025-08-26T19:36:12.3401410Z adding 'torch/_vendor/packaging/__init__.py' 2025-08-26T19:36:12.3402380Z adding 'torch/_vendor/packaging/_structures.py' 2025-08-26T19:36:12.3406200Z adding 'torch/_vendor/packaging/version.py' 2025-08-26T19:36:12.3408850Z adding 'torch/accelerator/__init__.py' 2025-08-26T19:36:12.3409620Z adding 'torch/accelerator/_utils.py' 2025-08-26T19:36:12.3411650Z adding 'torch/accelerator/memory.py' 2025-08-26T19:36:12.3412400Z adding 'torch/amp/__init__.py' 2025-08-26T19:36:12.3417350Z adding 'torch/amp/autocast_mode.py' 2025-08-26T19:36:12.3423870Z adding 'torch/amp/grad_scaler.py' 2025-08-26T19:36:12.3424910Z adding 'torch/ao/__init__.py' 2025-08-26T19:36:12.3426230Z adding 'torch/ao/nn/__init__.py' 2025-08-26T19:36:12.3427560Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-08-26T19:36:12.3428730Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-08-26T19:36:12.3430280Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-08-26T19:36:12.3431230Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-08-26T19:36:12.3432410Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-08-26T19:36:12.3437350Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-08-26T19:36:12.3439480Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-08-26T19:36:12.3440200Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-08-26T19:36:12.3441220Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-08-26T19:36:12.3442250Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-08-26T19:36:12.3443260Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-08-26T19:36:12.3444450Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-08-26T19:36:12.3445450Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-08-26T19:36:12.3446520Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-08-26T19:36:12.3447750Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-08-26T19:36:12.3449370Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-08-26T19:36:12.3450900Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-08-26T19:36:12.3451780Z adding 'torch/ao/nn/qat/__init__.py' 2025-08-26T19:36:12.3452720Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-08-26T19:36:12.3453710Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-08-26T19:36:12.3454680Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-08-26T19:36:12.3455650Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-08-26T19:36:12.3458350Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-08-26T19:36:12.3459760Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-08-26T19:36:12.3461010Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-08-26T19:36:12.3461960Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-08-26T19:36:12.3463070Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-08-26T19:36:12.3467570Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-08-26T19:36:12.3471860Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-08-26T19:36:12.3472760Z adding 'torch/ao/nn/quantized/__init__.py' 2025-08-26T19:36:12.3477390Z adding 'torch/ao/nn/quantized/functional.py' 2025-08-26T19:36:12.3478250Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-08-26T19:36:12.3479350Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-08-26T19:36:12.3481840Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-08-26T19:36:12.3483610Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-08-26T19:36:12.3491800Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-08-26T19:36:12.3493910Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-08-26T19:36:12.3496150Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-08-26T19:36:12.3497210Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-08-26T19:36:12.3502710Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-08-26T19:36:12.3503560Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-08-26T19:36:12.3506350Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-08-26T19:36:12.3507880Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-08-26T19:36:12.3511050Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-08-26T19:36:12.3512340Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-08-26T19:36:12.3513410Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-08-26T19:36:12.3514930Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-08-26T19:36:12.3516010Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-08-26T19:36:12.3517120Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-08-26T19:36:12.3519330Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-08-26T19:36:12.3520240Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-08-26T19:36:12.3524700Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-08-26T19:36:12.3525840Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-08-26T19:36:12.3528560Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-08-26T19:36:12.3529230Z adding 'torch/ao/nn/sparse/__init__.py' 2025-08-26T19:36:12.3530270Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-08-26T19:36:12.3532580Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-08-26T19:36:12.3533350Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-08-26T19:36:12.3534370Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-08-26T19:36:12.3536400Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-08-26T19:36:12.3537050Z adding 'torch/ao/ns/__init__.py' 2025-08-26T19:36:12.3540940Z adding 'torch/ao/ns/_numeric_suite.py' 2025-08-26T19:36:12.3548700Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-08-26T19:36:12.3549550Z adding 'torch/ao/ns/fx/__init__.py' 2025-08-26T19:36:12.3553970Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-08-26T19:36:12.3562460Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-08-26T19:36:12.3565680Z adding 'torch/ao/ns/fx/mappings.py' 2025-08-26T19:36:12.3576090Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-08-26T19:36:12.3577270Z adding 'torch/ao/ns/fx/ns_types.py' 2025-08-26T19:36:12.3579560Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-08-26T19:36:12.3581990Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-08-26T19:36:12.3585990Z adding 'torch/ao/ns/fx/utils.py' 2025-08-26T19:36:12.3588360Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-08-26T19:36:12.3589280Z adding 'torch/ao/pruning/__init__.py' 2025-08-26T19:36:12.3590090Z adding 'torch/ao/pruning/_mappings.py' 2025-08-26T19:36:12.3591160Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-08-26T19:36:12.3592230Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-08-26T19:36:12.3596690Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-08-26T19:36:12.3597400Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-08-26T19:36:12.3599750Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-08-26T19:36:12.3600530Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-08-26T19:36:12.3604000Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-08-26T19:36:12.3606140Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-08-26T19:36:12.3607470Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-08-26T19:36:12.3608430Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-08-26T19:36:12.3609390Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-08-26T19:36:12.3610470Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-08-26T19:36:12.3612080Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-08-26T19:36:12.3613680Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-08-26T19:36:12.3614500Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-08-26T19:36:12.3617170Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-08-26T19:36:12.3618100Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-08-26T19:36:12.3619150Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-08-26T19:36:12.3620220Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-08-26T19:36:12.3624060Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-08-26T19:36:12.3624850Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-08-26T19:36:12.3625760Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-08-26T19:36:12.3627860Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-08-26T19:36:12.3628980Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-08-26T19:36:12.3630140Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-08-26T19:36:12.3631060Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-08-26T19:36:12.3634400Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-08-26T19:36:12.3635410Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-08-26T19:36:12.3637020Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-08-26T19:36:12.3639570Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-08-26T19:36:12.3641750Z adding 'torch/ao/quantization/__init__.py' 2025-08-26T19:36:12.3643260Z adding 'torch/ao/quantization/_correct_bias.py' 2025-08-26T19:36:12.3645920Z adding 'torch/ao/quantization/_equalize.py' 2025-08-26T19:36:12.3647830Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-08-26T19:36:12.3651890Z adding 'torch/ao/quantization/fake_quantize.py' 2025-08-26T19:36:12.3654020Z adding 'torch/ao/quantization/fuse_modules.py' 2025-08-26T19:36:12.3656130Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-08-26T19:36:12.3671490Z adding 'torch/ao/quantization/observer.py' 2025-08-26T19:36:12.3676290Z adding 'torch/ao/quantization/qconfig.py' 2025-08-26T19:36:12.3679250Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-08-26T19:36:12.3679960Z adding 'torch/ao/quantization/quant_type.py' 2025-08-26T19:36:12.3682770Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-08-26T19:36:12.3688870Z adding 'torch/ao/quantization/quantize.py' 2025-08-26T19:36:12.3694290Z adding 'torch/ao/quantization/quantize_fx.py' 2025-08-26T19:36:12.3697390Z adding 'torch/ao/quantization/quantize_jit.py' 2025-08-26T19:36:12.3699620Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-08-26T19:36:12.3700460Z adding 'torch/ao/quantization/stubs.py' 2025-08-26T19:36:12.3707170Z adding 'torch/ao/quantization/utils.py' 2025-08-26T19:36:12.3708510Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-08-26T19:36:12.3713040Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-08-26T19:36:12.3714490Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-08-26T19:36:12.3720410Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-08-26T19:36:12.3723130Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-08-26T19:36:12.3724130Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-08-26T19:36:12.3725730Z adding 'torch/ao/quantization/backend_config/native.py' 2025-08-26T19:36:12.3728900Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-08-26T19:36:12.3730060Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-08-26T19:36:12.3731260Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-08-26T19:36:12.3734260Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-08-26T19:36:12.3735200Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-08-26T19:36:12.3736730Z adding 'torch/ao/quantization/fx/__init__.py' 2025-08-26T19:36:12.3742860Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-08-26T19:36:12.3750730Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-08-26T19:36:12.3760590Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-08-26T19:36:12.3772320Z adding 'torch/ao/quantization/fx/convert.py' 2025-08-26T19:36:12.3775710Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-08-26T19:36:12.3777870Z adding 'torch/ao/quantization/fx/fuse.py' 2025-08-26T19:36:12.3779140Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-08-26T19:36:12.3781140Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-08-26T19:36:12.3781640Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-08-26T19:36:12.3782530Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-08-26T19:36:12.3785080Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-08-26T19:36:12.3787370Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-08-26T19:36:12.3788440Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-08-26T19:36:12.3807530Z adding 'torch/ao/quantization/fx/prepare.py' 2025-08-26T19:36:12.3811210Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-08-26T19:36:12.3813300Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-08-26T19:36:12.3813980Z adding 'torch/ao/quantization/fx/tracer.py' 2025-08-26T19:36:12.3822180Z adding 'torch/ao/quantization/fx/utils.py' 2025-08-26T19:36:12.3823220Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-08-26T19:36:12.3837400Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-08-26T19:36:12.3843960Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-08-26T19:36:12.3846850Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-08-26T19:36:12.3853480Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-08-26T19:36:12.3854360Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-08-26T19:36:12.3860610Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-08-26T19:36:12.3863770Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-08-26T19:36:12.3869290Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-08-26T19:36:12.3869620Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-08-26T19:36:12.3869940Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-08-26T19:36:12.3870170Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-08-26T19:36:12.3872830Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-08-26T19:36:12.3877820Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-08-26T19:36:12.3885100Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-08-26T19:36:12.3890150Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-08-26T19:36:12.3891180Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-08-26T19:36:12.3895700Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-08-26T19:36:12.3896700Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-08-26T19:36:12.3898090Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-08-26T19:36:12.3899450Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-08-26T19:36:12.3901810Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-08-26T19:36:12.3902800Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-08-26T19:36:12.3913020Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-08-26T19:36:12.3916710Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-08-26T19:36:12.3923140Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-08-26T19:36:12.3924590Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-08-26T19:36:12.3930620Z adding 'torch/autograd/__init__.py' 2025-08-26T19:36:12.3932010Z adding 'torch/autograd/anomaly_mode.py' 2025-08-26T19:36:12.3934390Z adding 'torch/autograd/forward_ad.py' 2025-08-26T19:36:12.3941230Z adding 'torch/autograd/function.py' 2025-08-26T19:36:12.3950600Z adding 'torch/autograd/functional.py' 2025-08-26T19:36:12.3953490Z adding 'torch/autograd/grad_mode.py' 2025-08-26T19:36:12.3973440Z adding 'torch/autograd/gradcheck.py' 2025-08-26T19:36:12.3980640Z adding 'torch/autograd/graph.py' 2025-08-26T19:36:12.3990750Z adding 'torch/autograd/profiler.py' 2025-08-26T19:36:12.3993690Z adding 'torch/autograd/profiler_legacy.py' 2025-08-26T19:36:12.4002380Z adding 'torch/autograd/profiler_util.py' 2025-08-26T19:36:12.4003200Z adding 'torch/autograd/variable.py' 2025-08-26T19:36:12.4004220Z adding 'torch/autograd/_functions/__init__.py' 2025-08-26T19:36:12.4005370Z adding 'torch/autograd/_functions/tensor.py' 2025-08-26T19:36:12.4006580Z adding 'torch/autograd/_functions/utils.py' 2025-08-26T19:36:12.4008540Z adding 'torch/backends/__init__.py' 2025-08-26T19:36:12.4009630Z adding 'torch/backends/_coreml/__init__.py' 2025-08-26T19:36:12.4011160Z adding 'torch/backends/_coreml/preprocess.py' 2025-08-26T19:36:12.4012100Z adding 'torch/backends/_nnapi/__init__.py' 2025-08-26T19:36:12.4014310Z adding 'torch/backends/_nnapi/prepare.py' 2025-08-26T19:36:12.4028880Z adding 'torch/backends/_nnapi/serializer.py' 2025-08-26T19:36:12.4030250Z adding 'torch/backends/cpu/__init__.py' 2025-08-26T19:36:12.4034190Z adding 'torch/backends/cuda/__init__.py' 2025-08-26T19:36:12.4036580Z adding 'torch/backends/cudnn/__init__.py' 2025-08-26T19:36:12.4037550Z adding 'torch/backends/cudnn/rnn.py' 2025-08-26T19:36:12.4038910Z adding 'torch/backends/cusparselt/__init__.py' 2025-08-26T19:36:12.4039950Z adding 'torch/backends/kleidiai/__init__.py' 2025-08-26T19:36:12.4041110Z adding 'torch/backends/mha/__init__.py' 2025-08-26T19:36:12.4042410Z adding 'torch/backends/miopen/__init__.py' 2025-08-26T19:36:12.4043880Z adding 'torch/backends/mkl/__init__.py' 2025-08-26T19:36:12.4045770Z adding 'torch/backends/mkldnn/__init__.py' 2025-08-26T19:36:12.4046970Z adding 'torch/backends/mps/__init__.py' 2025-08-26T19:36:12.4047980Z adding 'torch/backends/nnpack/__init__.py' 2025-08-26T19:36:12.4049070Z adding 'torch/backends/openmp/__init__.py' 2025-08-26T19:36:12.4051040Z adding 'torch/backends/opt_einsum/__init__.py' 2025-08-26T19:36:12.4051990Z adding 'torch/backends/quantized/__init__.py' 2025-08-26T19:36:12.4052960Z adding 'torch/backends/xeon/__init__.py' 2025-08-26T19:36:12.4059990Z adding 'torch/backends/xeon/run_cpu.py' 2025-08-26T19:36:12.4061050Z adding 'torch/backends/xnnpack/__init__.py' 2025-08-26T19:36:12.5161370Z adding 'torch/bin/protoc' 2025-08-26T19:36:12.6272770Z adding 'torch/bin/protoc-3.13.0.0' 2025-08-26T19:36:12.6300360Z adding 'torch/bin/torch_shm_manager' 2025-08-26T19:36:12.6306870Z adding 'torch/compiler/__init__.py' 2025-08-26T19:36:12.6310040Z adding 'torch/compiler/_cache.py' 2025-08-26T19:36:12.6311620Z adding 'torch/compiler/config.py' 2025-08-26T19:36:12.6312730Z adding 'torch/contrib/__init__.py' 2025-08-26T19:36:12.6315010Z adding 'torch/contrib/_tensorboard_vis.py' 2025-08-26T19:36:12.6316620Z adding 'torch/cpu/__init__.py' 2025-08-26T19:36:12.6317720Z adding 'torch/cpu/amp/__init__.py' 2025-08-26T19:36:12.6318740Z adding 'torch/cpu/amp/autocast_mode.py' 2025-08-26T19:36:12.6319690Z adding 'torch/cpu/amp/grad_scaler.py' 2025-08-26T19:36:12.6321950Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-08-26T19:36:12.6335150Z adding 'torch/cuda/__init__.py' 2025-08-26T19:36:12.6336100Z adding 'torch/cuda/_gpu_trace.py' 2025-08-26T19:36:12.6342310Z adding 'torch/cuda/_memory_viz.py' 2025-08-26T19:36:12.6343140Z adding 'torch/cuda/_pin_memory_utils.py' 2025-08-26T19:36:12.6347940Z adding 'torch/cuda/_sanitizer.py' 2025-08-26T19:36:12.6350840Z adding 'torch/cuda/_utils.py' 2025-08-26T19:36:12.6351870Z adding 'torch/cuda/comm.py' 2025-08-26T19:36:12.6353790Z adding 'torch/cuda/gds.py' 2025-08-26T19:36:12.6359560Z adding 'torch/cuda/graphs.py' 2025-08-26T19:36:12.6361320Z adding 'torch/cuda/jiterator.py' 2025-08-26T19:36:12.6370790Z adding 'torch/cuda/memory.py' 2025-08-26T19:36:12.6372550Z adding 'torch/cuda/nccl.py' 2025-08-26T19:36:12.6373700Z adding 'torch/cuda/nvtx.py' 2025-08-26T19:36:12.6375100Z adding 'torch/cuda/profiler.py' 2025-08-26T19:36:12.6376570Z adding 'torch/cuda/random.py' 2025-08-26T19:36:12.6377340Z adding 'torch/cuda/sparse.py' 2025-08-26T19:36:12.6379860Z adding 'torch/cuda/streams.py' 2025-08-26T19:36:12.6386530Z adding 'torch/cuda/tunable.py' 2025-08-26T19:36:12.6387580Z adding 'torch/cuda/amp/__init__.py' 2025-08-26T19:36:12.6388740Z adding 'torch/cuda/amp/autocast_mode.py' 2025-08-26T19:36:12.6389570Z adding 'torch/cuda/amp/common.py' 2025-08-26T19:36:12.6390740Z adding 'torch/cuda/amp/grad_scaler.py' 2025-08-26T19:36:12.6393310Z adding 'torch/distributed/__init__.py' 2025-08-26T19:36:12.6394060Z adding 'torch/distributed/_checkpointable.py' 2025-08-26T19:36:12.6395060Z adding 'torch/distributed/_composable_state.py' 2025-08-26T19:36:12.6397170Z adding 'torch/distributed/_dist2.py' 2025-08-26T19:36:12.6405730Z adding 'torch/distributed/_functional_collectives.py' 2025-08-26T19:36:12.6406780Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-08-26T19:36:12.6408820Z adding 'torch/distributed/_serialization.py' 2025-08-26T19:36:12.6414690Z adding 'torch/distributed/_state_dict_utils.py' 2025-08-26T19:36:12.6415890Z adding 'torch/distributed/argparse_util.py' 2025-08-26T19:36:12.6417130Z adding 'torch/distributed/c10d_logger.py' 2025-08-26T19:36:12.6420320Z adding 'torch/distributed/collective_utils.py' 2025-08-26T19:36:12.6421040Z adding 'torch/distributed/constants.py' 2025-08-26T19:36:12.6432580Z adding 'torch/distributed/device_mesh.py' 2025-08-26T19:36:12.6478450Z adding 'torch/distributed/distributed_c10d.py' 2025-08-26T19:36:12.6481900Z adding 'torch/distributed/launch.py' 2025-08-26T19:36:12.6482600Z adding 'torch/distributed/logging_handlers.py' 2025-08-26T19:36:12.6484570Z adding 'torch/distributed/remote_device.py' 2025-08-26T19:36:12.6487070Z adding 'torch/distributed/rendezvous.py' 2025-08-26T19:36:12.6494610Z adding 'torch/distributed/run.py' 2025-08-26T19:36:12.6497630Z adding 'torch/distributed/utils.py' 2025-08-26T19:36:12.6499420Z adding 'torch/distributed/_composable/__init__.py' 2025-08-26T19:36:12.6500910Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-08-26T19:36:12.6503440Z adding 'torch/distributed/_composable/contract.py' 2025-08-26T19:36:12.6505890Z adding 'torch/distributed/_composable/replicate.py' 2025-08-26T19:36:12.6509520Z adding 'torch/distributed/_composable/replicate_with_fsdp.py' 2025-08-26T19:36:12.6510380Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-08-26T19:36:12.6511240Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-08-26T19:36:12.6512240Z adding 'torch/distributed/_shard/__init__.py' 2025-08-26T19:36:12.6513430Z adding 'torch/distributed/_shard/_utils.py' 2025-08-26T19:36:12.6516620Z adding 'torch/distributed/_shard/api.py' 2025-08-26T19:36:12.6517620Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-08-26T19:36:12.6518750Z adding 'torch/distributed/_shard/metadata.py' 2025-08-26T19:36:12.6519920Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-08-26T19:36:12.6520870Z adding 'torch/distributed/_shard/sharder.py' 2025-08-26T19:36:12.6522130Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-08-26T19:36:12.6523550Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-08-26T19:36:12.6525170Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-08-26T19:36:12.6528700Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-08-26T19:36:12.6539440Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-08-26T19:36:12.6540430Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-08-26T19:36:12.6541350Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-08-26T19:36:12.6542840Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-08-26T19:36:12.6545360Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-08-26T19:36:12.6546290Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-08-26T19:36:12.6549140Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-08-26T19:36:12.6550270Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-08-26T19:36:12.6551740Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-08-26T19:36:12.6552930Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-08-26T19:36:12.6554510Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-08-26T19:36:12.6555570Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-08-26T19:36:12.6557710Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-08-26T19:36:12.6558400Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-08-26T19:36:12.6559790Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-08-26T19:36:12.6561050Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-08-26T19:36:12.6563660Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-08-26T19:36:12.6566100Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-08-26T19:36:12.6568490Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-08-26T19:36:12.6569510Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-08-26T19:36:12.6572630Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-08-26T19:36:12.6575450Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-08-26T19:36:12.6579300Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-08-26T19:36:12.6580310Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-08-26T19:36:12.6581370Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-08-26T19:36:12.6594230Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-08-26T19:36:12.6600980Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-08-26T19:36:12.6602170Z adding 'torch/distributed/_tensor/__init__.py' 2025-08-26T19:36:12.6603040Z adding 'torch/distributed/_tensor/api.py' 2025-08-26T19:36:12.6604130Z adding 'torch/distributed/_tensor/placement_types.py' 2025-08-26T19:36:12.6605240Z adding 'torch/distributed/_tools/__init__.py' 2025-08-26T19:36:12.6606250Z adding 'torch/distributed/_tools/common_utils.py' 2025-08-26T19:36:12.6609330Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-08-26T19:36:12.6613960Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-08-26T19:36:12.6616500Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-08-26T19:36:12.6625090Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-08-26T19:36:12.6627860Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-08-26T19:36:12.6630310Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-08-26T19:36:12.6634760Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-08-26T19:36:12.6643250Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-08-26T19:36:12.6646110Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-08-26T19:36:12.6647220Z adding 'torch/distributed/algorithms/__init__.py' 2025-08-26T19:36:12.6650660Z adding 'torch/distributed/algorithms/join.py' 2025-08-26T19:36:12.6651610Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-08-26T19:36:12.6654860Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-08-26T19:36:12.6655770Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-08-26T19:36:12.6657950Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-08-26T19:36:12.6658650Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-08-26T19:36:12.6660020Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-08-26T19:36:12.6661160Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-08-26T19:36:12.6662710Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-08-26T19:36:12.6664350Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-08-26T19:36:12.6668380Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-08-26T19:36:12.6669360Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-08-26T19:36:12.6671490Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-08-26T19:36:12.6672530Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-08-26T19:36:12.6674770Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-08-26T19:36:12.6676170Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-08-26T19:36:12.6684350Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-08-26T19:36:12.6686470Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-08-26T19:36:12.6687300Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-08-26T19:36:12.6689390Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-08-26T19:36:12.6691630Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-08-26T19:36:12.6692650Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-08-26T19:36:12.6694130Z adding 'torch/distributed/autograd/__init__.py' 2025-08-26T19:36:12.6695470Z adding 'torch/distributed/checkpoint/__init__.py' 2025-08-26T19:36:12.6696460Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-08-26T19:36:12.6699460Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-08-26T19:36:12.6700640Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-08-26T19:36:12.6701950Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-08-26T19:36:12.6707970Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-08-26T19:36:12.6709160Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-08-26T19:36:12.6710550Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-08-26T19:36:12.6712820Z adding 'torch/distributed/checkpoint/_extension.py' 2025-08-26T19:36:12.6714230Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-08-26T19:36:12.6715410Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-08-26T19:36:12.6716850Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-08-26T19:36:12.6720270Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-08-26T19:36:12.6721480Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-08-26T19:36:12.6724820Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-08-26T19:36:12.6725790Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-08-26T19:36:12.6727810Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-08-26T19:36:12.6729050Z adding 'torch/distributed/checkpoint/_version.py' 2025-08-26T19:36:12.6731070Z adding 'torch/distributed/checkpoint/api.py' 2025-08-26T19:36:12.6736700Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-08-26T19:36:12.6744200Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-08-26T19:36:12.6746900Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-08-26T19:36:12.6750280Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-08-26T19:36:12.6751470Z adding 'torch/distributed/checkpoint/logger.py' 2025-08-26T19:36:12.6752450Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-08-26T19:36:12.6754460Z adding 'torch/distributed/checkpoint/metadata.py' 2025-08-26T19:36:12.6757430Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-08-26T19:36:12.6761140Z adding 'torch/distributed/checkpoint/planner.py' 2025-08-26T19:36:12.6764720Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-08-26T19:36:12.6765710Z adding 'torch/distributed/checkpoint/resharding.py' 2025-08-26T19:36:12.6770270Z adding 'torch/distributed/checkpoint/staging.py' 2025-08-26T19:36:12.6781180Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-08-26T19:36:12.6784560Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-08-26T19:36:12.6788260Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-08-26T19:36:12.6789140Z adding 'torch/distributed/checkpoint/stateful.py' 2025-08-26T19:36:12.6791540Z adding 'torch/distributed/checkpoint/storage.py' 2025-08-26T19:36:12.6794930Z adding 'torch/distributed/checkpoint/utils.py' 2025-08-26T19:36:12.6796310Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-08-26T19:36:12.6798870Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-08-26T19:36:12.6800280Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-08-26T19:36:12.6803370Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-08-26T19:36:12.6805530Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-08-26T19:36:12.6806950Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-08-26T19:36:12.6809470Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-08-26T19:36:12.6810240Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-08-26T19:36:12.6812740Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-08-26T19:36:12.6813410Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-08-26T19:36:12.6814420Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-08-26T19:36:12.6817190Z adding 'torch/distributed/elastic/__init__.py' 2025-08-26T19:36:12.6819010Z adding 'torch/distributed/elastic/control_plane.py' 2025-08-26T19:36:12.6820180Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-08-26T19:36:12.6821610Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-08-26T19:36:12.6830590Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-08-26T19:36:12.6831690Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-08-26T19:36:12.6835420Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-08-26T19:36:12.6837210Z adding 'torch/distributed/elastic/events/__init__.py' 2025-08-26T19:36:12.6838490Z adding 'torch/distributed/elastic/events/api.py' 2025-08-26T19:36:12.6839350Z adding 'torch/distributed/elastic/events/handlers.py' 2025-08-26T19:36:12.6841540Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-08-26T19:36:12.6843030Z adding 'torch/distributed/elastic/metrics/api.py' 2025-08-26T19:36:12.6845670Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-08-26T19:36:12.6852740Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-08-26T19:36:12.6853950Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-08-26T19:36:12.6856030Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-08-26T19:36:12.6859790Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-08-26T19:36:12.6861500Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-08-26T19:36:12.6862360Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-08-26T19:36:12.6863490Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-08-26T19:36:12.6864400Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-08-26T19:36:12.6865800Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-08-26T19:36:12.6867970Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-08-26T19:36:12.6868770Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-08-26T19:36:12.6871910Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-08-26T19:36:12.6874650Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-08-26T19:36:12.6883590Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-08-26T19:36:12.6892370Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-08-26T19:36:12.6894590Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-08-26T19:36:12.6897040Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-08-26T19:36:12.6899200Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-08-26T19:36:12.6900190Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-08-26T19:36:12.6901740Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-08-26T19:36:12.6904260Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-08-26T19:36:12.6905380Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-08-26T19:36:12.6908170Z adding 'torch/distributed/elastic/timer/api.py' 2025-08-26T19:36:12.6908860Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-08-26T19:36:12.6912740Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-08-26T19:36:12.6913970Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-08-26T19:36:12.6915230Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-08-26T19:36:12.6916350Z adding 'torch/distributed/elastic/utils/api.py' 2025-08-26T19:36:12.6918610Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-08-26T19:36:12.6919350Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-08-26T19:36:12.6920510Z adding 'torch/distributed/elastic/utils/logging.py' 2025-08-26T19:36:12.6922980Z adding 'torch/distributed/elastic/utils/store.py' 2025-08-26T19:36:12.6923860Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-08-26T19:36:12.6924950Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-08-26T19:36:12.6931350Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-08-26T19:36:12.6931730Z adding 'torch/distributed/fsdp/__init__.py' 2025-08-26T19:36:12.6932860Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-08-26T19:36:12.6935160Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-08-26T19:36:12.6936100Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-08-26T19:36:12.6939720Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-08-26T19:36:12.6965830Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-08-26T19:36:12.6967930Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-08-26T19:36:12.6978020Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-08-26T19:36:12.6978990Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-08-26T19:36:12.6998800Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-08-26T19:36:12.7013540Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-08-26T19:36:12.7015620Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-08-26T19:36:12.7021950Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-08-26T19:36:12.7024770Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-08-26T19:36:12.7026170Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-08-26T19:36:12.7029090Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-08-26T19:36:12.7031770Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-08-26T19:36:12.7035950Z adding 'torch/distributed/fsdp/api.py' 2025-08-26T19:36:12.7056070Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-08-26T19:36:12.7060050Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-08-26T19:36:12.7065110Z adding 'torch/distributed/fsdp/wrap.py' 2025-08-26T19:36:12.7066200Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-08-26T19:36:12.7068280Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-08-26T19:36:12.7074130Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-08-26T19:36:12.7075580Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-08-26T19:36:12.7078280Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-08-26T19:36:12.7086960Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-08-26T19:36:12.7094890Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-08-26T19:36:12.7098740Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-08-26T19:36:12.7105640Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-08-26T19:36:12.7106610Z adding 'torch/distributed/launcher/__init__.py' 2025-08-26T19:36:12.7109890Z adding 'torch/distributed/launcher/api.py' 2025-08-26T19:36:12.7110690Z adding 'torch/distributed/nn/__init__.py' 2025-08-26T19:36:12.7113910Z adding 'torch/distributed/nn/functional.py' 2025-08-26T19:36:12.7114740Z adding 'torch/distributed/nn/api/__init__.py' 2025-08-26T19:36:12.7120460Z adding 'torch/distributed/nn/api/remote_module.py' 2025-08-26T19:36:12.7121240Z adding 'torch/distributed/nn/jit/__init__.py' 2025-08-26T19:36:12.7123260Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-08-26T19:36:12.7124090Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-08-26T19:36:12.7125400Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-08-26T19:36:12.7126670Z adding 'torch/distributed/optim/__init__.py' 2025-08-26T19:36:12.7127560Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-08-26T19:36:12.7129670Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-08-26T19:36:12.7130650Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-08-26T19:36:12.7132070Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-08-26T19:36:12.7133960Z adding 'torch/distributed/optim/functional_adam.py' 2025-08-26T19:36:12.7135270Z adding 'torch/distributed/optim/functional_adamax.py' 2025-08-26T19:36:12.7137310Z adding 'torch/distributed/optim/functional_adamw.py' 2025-08-26T19:36:12.7138430Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-08-26T19:36:12.7139790Z adding 'torch/distributed/optim/functional_rprop.py' 2025-08-26T19:36:12.7141640Z adding 'torch/distributed/optim/functional_sgd.py' 2025-08-26T19:36:12.7144730Z adding 'torch/distributed/optim/named_optimizer.py' 2025-08-26T19:36:12.7147350Z adding 'torch/distributed/optim/optimizer.py' 2025-08-26T19:36:12.7148630Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-08-26T19:36:12.7149720Z adding 'torch/distributed/optim/utils.py' 2025-08-26T19:36:12.7165110Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-08-26T19:36:12.7166410Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-08-26T19:36:12.7178350Z adding 'torch/distributed/pipelining/_IR.py' 2025-08-26T19:36:12.7179280Z adding 'torch/distributed/pipelining/__init__.py' 2025-08-26T19:36:12.7183370Z adding 'torch/distributed/pipelining/_backward.py' 2025-08-26T19:36:12.7184030Z adding 'torch/distributed/pipelining/_debug.py' 2025-08-26T19:36:12.7186350Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-08-26T19:36:12.7187070Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-08-26T19:36:12.7188610Z adding 'torch/distributed/pipelining/_utils.py' 2025-08-26T19:36:12.7192720Z adding 'torch/distributed/pipelining/microbatch.py' 2025-08-26T19:36:12.7216630Z adding 'torch/distributed/pipelining/schedules.py' 2025-08-26T19:36:12.7230970Z adding 'torch/distributed/pipelining/stage.py' 2025-08-26T19:36:12.7234170Z adding 'torch/distributed/rpc/__init__.py' 2025-08-26T19:36:12.7235040Z adding 'torch/distributed/rpc/_utils.py' 2025-08-26T19:36:12.7242290Z adding 'torch/distributed/rpc/api.py' 2025-08-26T19:36:12.7247180Z adding 'torch/distributed/rpc/backend_registry.py' 2025-08-26T19:36:12.7248060Z adding 'torch/distributed/rpc/constants.py' 2025-08-26T19:36:12.7250350Z adding 'torch/distributed/rpc/functions.py' 2025-08-26T19:36:12.7252950Z adding 'torch/distributed/rpc/internal.py' 2025-08-26T19:36:12.7255120Z adding 'torch/distributed/rpc/options.py' 2025-08-26T19:36:12.7255970Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-08-26T19:36:12.7258380Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-08-26T19:36:12.7259230Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-08-26T19:36:12.7260340Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-08-26T19:36:12.7261720Z adding 'torch/distributed/tensor/__init__.py' 2025-08-26T19:36:12.7272710Z adding 'torch/distributed/tensor/_api.py' 2025-08-26T19:36:12.7276260Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-08-26T19:36:12.7280990Z adding 'torch/distributed/tensor/_dispatch.py' 2025-08-26T19:36:12.7283650Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-08-26T19:36:12.7288990Z adding 'torch/distributed/tensor/_op_schema.py' 2025-08-26T19:36:12.7293390Z adding 'torch/distributed/tensor/_random.py' 2025-08-26T19:36:12.7296820Z adding 'torch/distributed/tensor/_redistribute.py' 2025-08-26T19:36:12.7302170Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-08-26T19:36:12.7305030Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-08-26T19:36:12.7307130Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-08-26T19:36:12.7311000Z adding 'torch/distributed/tensor/_utils.py' 2025-08-26T19:36:12.7311630Z adding 'torch/distributed/tensor/device_mesh.py' 2025-08-26T19:36:12.7317710Z adding 'torch/distributed/tensor/placement_types.py' 2025-08-26T19:36:12.7318870Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-08-26T19:36:12.7322170Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-08-26T19:36:12.7323240Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-08-26T19:36:12.7325510Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-08-26T19:36:12.7327870Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-08-26T19:36:12.7335380Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-08-26T19:36:12.7341130Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-08-26T19:36:12.7345930Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-08-26T19:36:12.7346720Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-08-26T19:36:12.7356080Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-08-26T19:36:12.7362660Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-08-26T19:36:12.7366290Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-08-26T19:36:12.7367280Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-08-26T19:36:12.7372520Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-08-26T19:36:12.7373630Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-08-26T19:36:12.7376050Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-08-26T19:36:12.7376980Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-08-26T19:36:12.7388410Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-08-26T19:36:12.7391440Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-08-26T19:36:12.7393020Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-08-26T19:36:12.7397470Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-08-26T19:36:12.7398420Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-08-26T19:36:12.7399450Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-08-26T19:36:12.7401530Z adding 'torch/distributed/tensor/parallel/api.py' 2025-08-26T19:36:12.7402720Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-08-26T19:36:12.7406110Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-08-26T19:36:12.7407220Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-08-26T19:36:12.7411070Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-08-26T19:36:12.7416620Z adding 'torch/distributed/tensor/parallel/style.py' 2025-08-26T19:36:12.7419200Z adding 'torch/distributions/__init__.py' 2025-08-26T19:36:12.7420340Z adding 'torch/distributions/bernoulli.py' 2025-08-26T19:36:12.7421670Z adding 'torch/distributions/beta.py' 2025-08-26T19:36:12.7423770Z adding 'torch/distributions/binomial.py' 2025-08-26T19:36:12.7425570Z adding 'torch/distributions/categorical.py' 2025-08-26T19:36:12.7426580Z adding 'torch/distributions/cauchy.py' 2025-08-26T19:36:12.7427540Z adding 'torch/distributions/chi2.py' 2025-08-26T19:36:12.7430090Z adding 'torch/distributions/constraint_registry.py' 2025-08-26T19:36:12.7433960Z adding 'torch/distributions/constraints.py' 2025-08-26T19:36:12.7436310Z adding 'torch/distributions/continuous_bernoulli.py' 2025-08-26T19:36:12.7437560Z adding 'torch/distributions/dirichlet.py' 2025-08-26T19:36:12.7440540Z adding 'torch/distributions/distribution.py' 2025-08-26T19:36:12.7441450Z adding 'torch/distributions/exp_family.py' 2025-08-26T19:36:12.7442640Z adding 'torch/distributions/exponential.py' 2025-08-26T19:36:12.7444000Z adding 'torch/distributions/fishersnedecor.py' 2025-08-26T19:36:12.7445380Z adding 'torch/distributions/gamma.py' 2025-08-26T19:36:12.7447380Z adding 'torch/distributions/generalized_pareto.py' 2025-08-26T19:36:12.7448680Z adding 'torch/distributions/geometric.py' 2025-08-26T19:36:12.7449920Z adding 'torch/distributions/gumbel.py' 2025-08-26T19:36:12.7451100Z adding 'torch/distributions/half_cauchy.py' 2025-08-26T19:36:12.7452230Z adding 'torch/distributions/half_normal.py' 2025-08-26T19:36:12.7453760Z adding 'torch/distributions/independent.py' 2025-08-26T19:36:12.7454950Z adding 'torch/distributions/inverse_gamma.py' 2025-08-26T19:36:12.7460870Z adding 'torch/distributions/kl.py' 2025-08-26T19:36:12.7462040Z adding 'torch/distributions/kumaraswamy.py' 2025-08-26T19:36:12.7463280Z adding 'torch/distributions/laplace.py' 2025-08-26T19:36:12.7465520Z adding 'torch/distributions/lkj_cholesky.py' 2025-08-26T19:36:12.7466300Z adding 'torch/distributions/log_normal.py' 2025-08-26T19:36:12.7467450Z adding 'torch/distributions/logistic_normal.py' 2025-08-26T19:36:12.7470040Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-08-26T19:36:12.7472150Z adding 'torch/distributions/mixture_same_family.py' 2025-08-26T19:36:12.7473540Z adding 'torch/distributions/multinomial.py' 2025-08-26T19:36:12.7476280Z adding 'torch/distributions/multivariate_normal.py' 2025-08-26T19:36:12.7477550Z adding 'torch/distributions/negative_binomial.py' 2025-08-26T19:36:12.7478850Z adding 'torch/distributions/normal.py' 2025-08-26T19:36:12.7480440Z adding 'torch/distributions/one_hot_categorical.py' 2025-08-26T19:36:12.7481500Z adding 'torch/distributions/pareto.py' 2025-08-26T19:36:12.7482650Z adding 'torch/distributions/poisson.py' 2025-08-26T19:36:12.7484670Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-08-26T19:36:12.7485860Z adding 'torch/distributions/relaxed_categorical.py' 2025-08-26T19:36:12.7487290Z adding 'torch/distributions/studentT.py' 2025-08-26T19:36:12.7489690Z adding 'torch/distributions/transformed_distribution.py' 2025-08-26T19:36:12.7497090Z adding 'torch/distributions/transforms.py' 2025-08-26T19:36:12.7498250Z adding 'torch/distributions/uniform.py' 2025-08-26T19:36:12.7500680Z adding 'torch/distributions/utils.py' 2025-08-26T19:36:12.7502780Z adding 'torch/distributions/von_mises.py' 2025-08-26T19:36:12.7503660Z adding 'torch/distributions/weibull.py' 2025-08-26T19:36:12.7506800Z adding 'torch/distributions/wishart.py' 2025-08-26T19:36:12.7512050Z adding 'torch/export/__init__.py' 2025-08-26T19:36:12.7516210Z adding 'torch/export/_draft_export.py' 2025-08-26T19:36:12.7517160Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-08-26T19:36:12.7519270Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-08-26T19:36:12.7520030Z adding 'torch/export/_safeguard.py' 2025-08-26T19:36:12.7524010Z adding 'torch/export/_swap.py' 2025-08-26T19:36:12.7543660Z adding 'torch/export/_trace.py' 2025-08-26T19:36:12.7544960Z adding 'torch/export/_tree_utils.py' 2025-08-26T19:36:12.7549110Z adding 'torch/export/_unlift.py' 2025-08-26T19:36:12.7549930Z adding 'torch/export/_wrapper_utils.py' 2025-08-26T19:36:12.7550650Z adding 'torch/export/custom_obj.py' 2025-08-26T19:36:12.7551570Z adding 'torch/export/custom_ops.py' 2025-08-26T19:36:12.7553520Z adding 'torch/export/decomp_utils.py' 2025-08-26T19:36:12.7565090Z adding 'torch/export/dynamic_shapes.py' 2025-08-26T19:36:12.7579500Z adding 'torch/export/exported_program.py' 2025-08-26T19:36:12.7584270Z adding 'torch/export/graph_signature.py' 2025-08-26T19:36:12.7600210Z adding 'torch/export/unflatten.py' 2025-08-26T19:36:12.7604690Z adding 'torch/export/experimental/__init__.py' 2025-08-26T19:36:12.7606780Z adding 'torch/export/experimental/_utils.py' 2025-08-26T19:36:12.7607910Z adding 'torch/export/passes/__init__.py' 2025-08-26T19:36:12.7608950Z adding 'torch/export/pt2_archive/__init__.py' 2025-08-26T19:36:12.7615550Z adding 'torch/export/pt2_archive/_package.py' 2025-08-26T19:36:12.7616760Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-08-26T19:36:12.7617660Z adding 'torch/export/pt2_archive/constants.py' 2025-08-26T19:36:12.7625070Z adding 'torch/fft/__init__.py' 2025-08-26T19:36:12.7626100Z adding 'torch/func/__init__.py' 2025-08-26T19:36:12.7629680Z adding 'torch/futures/__init__.py' 2025-08-26T19:36:12.7631440Z adding 'torch/fx/__init__.py' 2025-08-26T19:36:12.7632340Z adding 'torch/fx/_compatibility.py' 2025-08-26T19:36:12.7636940Z adding 'torch/fx/_graph_pickler.py' 2025-08-26T19:36:12.7639050Z adding 'torch/fx/_lazy_graph_module.py' 2025-08-26T19:36:12.7639980Z adding 'torch/fx/_pytree.py' 2025-08-26T19:36:12.7651400Z adding 'torch/fx/_symbolic_trace.py' 2025-08-26T19:36:12.7652630Z adding 'torch/fx/_utils.py' 2025-08-26T19:36:12.7653600Z adding 'torch/fx/annotate.py' 2025-08-26T19:36:12.7654410Z adding 'torch/fx/config.py' 2025-08-26T19:36:12.7672500Z adding 'torch/fx/graph.py' 2025-08-26T19:36:12.7682130Z adding 'torch/fx/graph_module.py' 2025-08-26T19:36:12.7683300Z adding 'torch/fx/immutable_collections.py' 2025-08-26T19:36:12.7687970Z adding 'torch/fx/interpreter.py' 2025-08-26T19:36:12.7696320Z adding 'torch/fx/node.py' 2025-08-26T19:36:12.7701330Z adding 'torch/fx/operator_schemas.py' 2025-08-26T19:36:12.7707940Z adding 'torch/fx/proxy.py' 2025-08-26T19:36:12.7711950Z adding 'torch/fx/subgraph_rewriter.py' 2025-08-26T19:36:12.7712930Z adding 'torch/fx/tensor_type.py' 2025-08-26T19:36:12.7715850Z adding 'torch/fx/traceback.py' 2025-08-26T19:36:12.7717920Z adding 'torch/fx/experimental/__init__.py' 2025-08-26T19:36:12.7718670Z adding 'torch/fx/experimental/_backward_state.py' 2025-08-26T19:36:12.7720480Z adding 'torch/fx/experimental/_config.py' 2025-08-26T19:36:12.7721230Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-08-26T19:36:12.7723220Z adding 'torch/fx/experimental/_dynamism.py' 2025-08-26T19:36:12.7732780Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-08-26T19:36:12.7736090Z adding 'torch/fx/experimental/const_fold.py' 2025-08-26T19:36:12.7736750Z adding 'torch/fx/experimental/debug.py' 2025-08-26T19:36:12.7743710Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-08-26T19:36:12.7745880Z adding 'torch/fx/experimental/merge_matmul.py' 2025-08-26T19:36:12.7748580Z adding 'torch/fx/experimental/meta_tracer.py' 2025-08-26T19:36:12.7750120Z adding 'torch/fx/experimental/normalize.py' 2025-08-26T19:36:12.7754470Z adding 'torch/fx/experimental/optimization.py' 2025-08-26T19:36:12.7757510Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-08-26T19:36:12.7779390Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-08-26T19:36:12.7784580Z adding 'torch/fx/experimental/recording.py' 2025-08-26T19:36:12.7785270Z adding 'torch/fx/experimental/refinement_types.py' 2025-08-26T19:36:12.7787250Z adding 'torch/fx/experimental/rewriter.py' 2025-08-26T19:36:12.7788620Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-08-26T19:36:12.7801290Z adding 'torch/fx/experimental/sym_node.py' 2025-08-26T19:36:12.7882070Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-08-26T19:36:12.7885260Z adding 'torch/fx/experimental/unify_refinements.py' 2025-08-26T19:36:12.7892490Z adding 'torch/fx/experimental/validator.py' 2025-08-26T19:36:12.7893550Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-08-26T19:36:12.7896840Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-08-26T19:36:12.7905620Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-08-26T19:36:12.7913820Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-08-26T19:36:12.7914580Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-08-26T19:36:12.7917970Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-08-26T19:36:12.7918690Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-08-26T19:36:12.7919620Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-08-26T19:36:12.7920730Z adding 'torch/fx/experimental/unification/__init__.py' 2025-08-26T19:36:12.7922000Z adding 'torch/fx/experimental/unification/core.py' 2025-08-26T19:36:12.7922830Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-08-26T19:36:12.7924160Z adding 'torch/fx/experimental/unification/match.py' 2025-08-26T19:36:12.7925370Z adding 'torch/fx/experimental/unification/more.py' 2025-08-26T19:36:12.7928340Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-08-26T19:36:12.7929320Z adding 'torch/fx/experimental/unification/utils.py' 2025-08-26T19:36:12.7930460Z adding 'torch/fx/experimental/unification/variable.py' 2025-08-26T19:36:12.7931570Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-08-26T19:36:12.7933010Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-08-26T19:36:12.7934200Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-08-26T19:36:12.7937710Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-08-26T19:36:12.7939000Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-08-26T19:36:12.7940250Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-08-26T19:36:12.7941350Z adding 'torch/fx/passes/__init__.py' 2025-08-26T19:36:12.7945230Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-08-26T19:36:12.7946090Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-08-26T19:36:12.7947600Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-08-26T19:36:12.7951470Z adding 'torch/fx/passes/graph_drawer.py' 2025-08-26T19:36:12.7952710Z adding 'torch/fx/passes/graph_manipulation.py' 2025-08-26T19:36:12.7954950Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-08-26T19:36:12.7961860Z adding 'torch/fx/passes/net_min_base.py' 2025-08-26T19:36:12.7963940Z adding 'torch/fx/passes/operator_support.py' 2025-08-26T19:36:12.7964980Z adding 'torch/fx/passes/param_fetch.py' 2025-08-26T19:36:12.7967260Z adding 'torch/fx/passes/pass_manager.py' 2025-08-26T19:36:12.7975090Z adding 'torch/fx/passes/reinplace.py' 2025-08-26T19:36:12.7980880Z adding 'torch/fx/passes/runtime_assert.py' 2025-08-26T19:36:12.7983260Z adding 'torch/fx/passes/shape_prop.py' 2025-08-26T19:36:12.7988990Z adding 'torch/fx/passes/split_module.py' 2025-08-26T19:36:12.7992120Z adding 'torch/fx/passes/split_utils.py' 2025-08-26T19:36:12.7999190Z adding 'torch/fx/passes/splitter_base.py' 2025-08-26T19:36:12.8002080Z adding 'torch/fx/passes/tools_common.py' 2025-08-26T19:36:12.8002990Z adding 'torch/fx/passes/backends/__init__.py' 2025-08-26T19:36:12.8008030Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-08-26T19:36:12.8008270Z adding 'torch/fx/passes/dialect/__init__.py' 2025-08-26T19:36:12.8008510Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-08-26T19:36:12.8008750Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-08-26T19:36:12.8008970Z adding 'torch/fx/passes/infra/__init__.py' 2025-08-26T19:36:12.8012430Z adding 'torch/fx/passes/infra/partitioner.py' 2025-08-26T19:36:12.8013300Z adding 'torch/fx/passes/infra/pass_base.py' 2025-08-26T19:36:12.8016250Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-08-26T19:36:12.8016850Z adding 'torch/fx/passes/tests/__init__.py' 2025-08-26T19:36:12.8017850Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-08-26T19:36:12.8018820Z adding 'torch/fx/passes/utils/__init__.py' 2025-08-26T19:36:12.8020080Z adding 'torch/fx/passes/utils/common.py' 2025-08-26T19:36:12.8022950Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-08-26T19:36:12.8026880Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-08-26T19:36:12.8028210Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-08-26T19:36:12.8030270Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-08-26T19:36:12.8031520Z adding 'torch/include/clog.h' 2025-08-26T19:36:12.8039000Z adding 'torch/include/cpuinfo.h' 2025-08-26T19:36:12.8039840Z adding 'torch/include/experiments-config.h' 2025-08-26T19:36:12.8040580Z adding 'torch/include/fp16.h' 2025-08-26T19:36:12.8043240Z adding 'torch/include/fxdiv.h' 2025-08-26T19:36:12.8043910Z adding 'torch/include/libshm.h' 2025-08-26T19:36:12.8048130Z adding 'torch/include/nnpack.h' 2025-08-26T19:36:12.8052300Z adding 'torch/include/omp.h' 2025-08-26T19:36:12.8057870Z adding 'torch/include/psimd.h' 2025-08-26T19:36:12.8066100Z adding 'torch/include/pthreadpool.h' 2025-08-26T19:36:12.8067460Z adding 'torch/include/qnnpack_func.h' 2025-08-26T19:36:12.8082800Z adding 'torch/include/sleef.h' 2025-08-26T19:36:12.8105680Z adding 'torch/include/xnnpack.h' 2025-08-26T19:36:12.8109170Z adding 'torch/include/ATen/ATen.h' 2025-08-26T19:36:12.8110560Z adding 'torch/include/ATen/AccumulateType.h' 2025-08-26T19:36:12.8111350Z adding 'torch/include/ATen/ArrayRef.h' 2025-08-26T19:36:12.8112110Z adding 'torch/include/ATen/Backend.h' 2025-08-26T19:36:12.8112840Z adding 'torch/include/ATen/Backtrace.h' 2025-08-26T19:36:12.8113790Z adding 'torch/include/ATen/BlasBackend.h' 2025-08-26T19:36:12.8116490Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-08-26T19:36:12.8117190Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-08-26T19:36:12.8118270Z adding 'torch/include/ATen/CPUFunctions.h' 2025-08-26T19:36:12.8121490Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-08-26T19:36:12.8122330Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-08-26T19:36:12.8123380Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-08-26T19:36:12.8127000Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-08-26T19:36:12.8127790Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-08-26T19:36:12.8128990Z adding 'torch/include/ATen/CollapseDims.h' 2025-08-26T19:36:12.8130130Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-08-26T19:36:12.8134090Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-08-26T19:36:12.8135080Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-08-26T19:36:12.8137740Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-08-26T19:36:12.8138580Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-08-26T19:36:12.8142000Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-08-26T19:36:12.8142940Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-08-26T19:36:12.8143910Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-08-26T19:36:12.8144660Z adding 'torch/include/ATen/Config.h' 2025-08-26T19:36:12.8149370Z adding 'torch/include/ATen/Context.h' 2025-08-26T19:36:12.8150360Z adding 'torch/include/ATen/DLConvertor.h' 2025-08-26T19:36:12.8151110Z adding 'torch/include/ATen/Device.h' 2025-08-26T19:36:12.8152480Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-08-26T19:36:12.8153390Z adding 'torch/include/ATen/DeviceGuard.h' 2025-08-26T19:36:12.8154110Z adding 'torch/include/ATen/DimVector.h' 2025-08-26T19:36:12.8154830Z adding 'torch/include/ATen/Dimname.h' 2025-08-26T19:36:12.8160120Z adding 'torch/include/ATen/Dispatch.h' 2025-08-26T19:36:12.8164770Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-08-26T19:36:12.8165700Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-08-26T19:36:12.8166810Z adding 'torch/include/ATen/EmptyTensor.h' 2025-08-26T19:36:12.8167710Z adding 'torch/include/ATen/ExpandBase.h' 2025-08-26T19:36:12.8170820Z adding 'torch/include/ATen/ExpandUtils.h' 2025-08-26T19:36:12.8171340Z adding 'torch/include/ATen/Formatting.h' 2025-08-26T19:36:12.8172370Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-08-26T19:36:12.8174860Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-08-26T19:36:12.8178770Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-08-26T19:36:12.8185090Z adding 'torch/include/ATen/Functions.h' 2025-08-26T19:36:12.8185770Z adding 'torch/include/ATen/Generator.h' 2025-08-26T19:36:12.8187090Z adding 'torch/include/ATen/InferSize.h' 2025-08-26T19:36:12.8187950Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-08-26T19:36:12.8188660Z adding 'torch/include/ATen/Layout.h' 2025-08-26T19:36:12.8189620Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-08-26T19:36:12.8191660Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-08-26T19:36:12.8192340Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-08-26T19:36:12.8194780Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-08-26T19:36:12.8195400Z adding 'torch/include/ATen/LinalgBackend.h' 2025-08-26T19:36:12.8196460Z adding 'torch/include/ATen/MPSFunctions.h' 2025-08-26T19:36:12.8198990Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2025-08-26T19:36:12.8199970Z adding 'torch/include/ATen/MapAllocator.h' 2025-08-26T19:36:12.8201290Z adding 'torch/include/ATen/MatrixRef.h' 2025-08-26T19:36:12.8202190Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-08-26T19:36:12.8203240Z adding 'torch/include/ATen/MetaFunctions.h' 2025-08-26T19:36:12.8205490Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-08-26T19:36:12.8207670Z adding 'torch/include/ATen/MethodOperators.h' 2025-08-26T19:36:12.8208150Z adding 'torch/include/ATen/NamedTensor.h' 2025-08-26T19:36:12.8210190Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-08-26T19:36:12.8216260Z adding 'torch/include/ATen/NativeFunctions.h' 2025-08-26T19:36:12.8222270Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-08-26T19:36:12.8225030Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-08-26T19:36:12.8226000Z adding 'torch/include/ATen/NumericUtils.h' 2025-08-26T19:36:12.8227000Z adding 'torch/include/ATen/OpMathType.h' 2025-08-26T19:36:12.8228980Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-08-26T19:36:12.8235150Z adding 'torch/include/ATen/Operators.h' 2025-08-26T19:36:12.8235970Z adding 'torch/include/ATen/PTThreadPool.h' 2025-08-26T19:36:12.8236690Z adding 'torch/include/ATen/PadNd.h' 2025-08-26T19:36:12.8237810Z adding 'torch/include/ATen/Parallel-inl.h' 2025-08-26T19:36:12.8239280Z adding 'torch/include/ATen/Parallel.h' 2025-08-26T19:36:12.8240100Z adding 'torch/include/ATen/ParallelFuture.h' 2025-08-26T19:36:12.8240880Z adding 'torch/include/ATen/ParallelNative.h' 2025-08-26T19:36:12.8241870Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-08-26T19:36:12.8242820Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-08-26T19:36:12.8243650Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-08-26T19:36:12.8415500Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-08-26T19:36:12.8512090Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-08-26T19:36:12.8517080Z adding 'torch/include/ATen/SDPBackend.h' 2025-08-26T19:36:12.8518900Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-08-26T19:36:12.8520010Z adding 'torch/include/ATen/Scalar.h' 2025-08-26T19:36:12.8521320Z adding 'torch/include/ATen/ScalarOps.h' 2025-08-26T19:36:12.8522300Z adding 'torch/include/ATen/ScalarType.h' 2025-08-26T19:36:12.8523220Z adding 'torch/include/ATen/SequenceNumber.h' 2025-08-26T19:36:12.8524020Z adding 'torch/include/ATen/SmallVector.h' 2025-08-26T19:36:12.8525200Z adding 'torch/include/ATen/SparseCsrMPSFunctions.h' 2025-08-26T19:36:12.8526210Z adding 'torch/include/ATen/SparseCsrMPSFunctions_inl.h' 2025-08-26T19:36:12.8528480Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-08-26T19:36:12.8531490Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-08-26T19:36:12.8532450Z adding 'torch/include/ATen/SparseMPSFunctions.h' 2025-08-26T19:36:12.8533550Z adding 'torch/include/ATen/SparseMPSFunctions_inl.h' 2025-08-26T19:36:12.8536970Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-08-26T19:36:12.8537570Z adding 'torch/include/ATen/Storage.h' 2025-08-26T19:36:12.8538590Z adding 'torch/include/ATen/StorageUtils.h' 2025-08-26T19:36:12.8539320Z adding 'torch/include/ATen/Tensor.h' 2025-08-26T19:36:12.8540080Z adding 'torch/include/ATen/TensorAccessor.h' 2025-08-26T19:36:12.8541490Z adding 'torch/include/ATen/TensorGeometry.h' 2025-08-26T19:36:12.8547160Z adding 'torch/include/ATen/TensorIndexing.h' 2025-08-26T19:36:12.8555860Z adding 'torch/include/ATen/TensorIterator.h' 2025-08-26T19:36:12.8556820Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-08-26T19:36:12.8558820Z adding 'torch/include/ATen/TensorMeta.h' 2025-08-26T19:36:12.8559670Z adding 'torch/include/ATen/TensorNames.h' 2025-08-26T19:36:12.8560760Z adding 'torch/include/ATen/TensorOperators.h' 2025-08-26T19:36:12.8561510Z adding 'torch/include/ATen/TensorOptions.h' 2025-08-26T19:36:12.8562970Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-08-26T19:36:12.8564420Z adding 'torch/include/ATen/TensorUtils.h' 2025-08-26T19:36:12.8565370Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-08-26T19:36:12.8566790Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-08-26T19:36:12.8568970Z adding 'torch/include/ATen/TracerMode.h' 2025-08-26T19:36:12.8569420Z adding 'torch/include/ATen/TypeDefault.h' 2025-08-26T19:36:12.8570630Z adding 'torch/include/ATen/Utils.h' 2025-08-26T19:36:12.8571460Z adding 'torch/include/ATen/Version.h' 2025-08-26T19:36:12.8687190Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-08-26T19:36:12.8696380Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-08-26T19:36:12.8697320Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-08-26T19:36:12.8704260Z adding 'torch/include/ATen/autocast_mode.h' 2025-08-26T19:36:12.8705200Z adding 'torch/include/ATen/ceil_div.h' 2025-08-26T19:36:12.8707480Z adding 'torch/include/ATen/code_template.h' 2025-08-26T19:36:12.8708540Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-08-26T19:36:12.8709480Z adding 'torch/include/ATen/div_rtn.h' 2025-08-26T19:36:12.8712490Z adding 'torch/include/ATen/dlpack.h' 2025-08-26T19:36:12.8713140Z adding 'torch/include/ATen/jit_macros.h' 2025-08-26T19:36:12.8714190Z adding 'torch/include/ATen/jiterator_macros.h' 2025-08-26T19:36:12.8719470Z adding 'torch/include/ATen/record_function.h' 2025-08-26T19:36:12.8721780Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-08-26T19:36:12.8722290Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-08-26T19:36:12.8723220Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-08-26T19:36:12.8724770Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-08-26T19:36:12.8725780Z adding 'torch/include/ATen/core/Array.h' 2025-08-26T19:36:12.8726530Z adding 'torch/include/ATen/core/Backtrace.h' 2025-08-26T19:36:12.8733060Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-08-26T19:36:12.8733910Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-08-26T19:36:12.8735380Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-08-26T19:36:12.8736350Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-08-26T19:36:12.8739750Z adding 'torch/include/ATen/core/Dict.h' 2025-08-26T19:36:12.8741540Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-08-26T19:36:12.8742260Z adding 'torch/include/ATen/core/DimVector.h' 2025-08-26T19:36:12.8743220Z adding 'torch/include/ATen/core/Dimname.h' 2025-08-26T19:36:12.8745700Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-08-26T19:36:12.8746400Z adding 'torch/include/ATen/core/Formatting.h' 2025-08-26T19:36:12.8748600Z adding 'torch/include/ATen/core/Generator.h' 2025-08-26T19:36:12.8749410Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-08-26T19:36:12.8754080Z adding 'torch/include/ATen/core/IListRef.h' 2025-08-26T19:36:12.8755500Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-08-26T19:36:12.8757490Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-08-26T19:36:12.8760670Z adding 'torch/include/ATen/core/List.h' 2025-08-26T19:36:12.8763010Z adding 'torch/include/ATen/core/List_inl.h' 2025-08-26T19:36:12.8765140Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-08-26T19:36:12.8766430Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-08-26T19:36:12.8768450Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-08-26T19:36:12.8770600Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-08-26T19:36:12.8771290Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-08-26T19:36:12.8772180Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-08-26T19:36:12.8773350Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-08-26T19:36:12.8774190Z adding 'torch/include/ATen/core/Range.h' 2025-08-26T19:36:12.8775120Z adding 'torch/include/ATen/core/Reduction.h' 2025-08-26T19:36:12.8775850Z adding 'torch/include/ATen/core/Scalar.h' 2025-08-26T19:36:12.8776590Z adding 'torch/include/ATen/core/ScalarType.h' 2025-08-26T19:36:12.8777680Z adding 'torch/include/ATen/core/Tensor.h' 2025-08-26T19:36:12.8780020Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-08-26T19:36:12.8788650Z adding 'torch/include/ATen/core/TensorBase.h' 2025-08-26T19:36:12.8822640Z adding 'torch/include/ATen/core/TensorBody.h' 2025-08-26T19:36:12.8825100Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-08-26T19:36:12.8826590Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-08-26T19:36:12.8827380Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-08-26T19:36:12.8828360Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-08-26T19:36:12.8829690Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-08-26T19:36:12.8830800Z adding 'torch/include/ATen/core/Variadic.h' 2025-08-26T19:36:12.8831990Z adding 'torch/include/ATen/core/Vitals.h' 2025-08-26T19:36:12.8833950Z adding 'torch/include/ATen/core/alias_info.h' 2025-08-26T19:36:12.8843140Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-08-26T19:36:12.8845190Z adding 'torch/include/ATen/core/blob.h' 2025-08-26T19:36:12.8846070Z adding 'torch/include/ATen/core/builtin_function.h' 2025-08-26T19:36:12.8849460Z adding 'torch/include/ATen/core/class_type.h' 2025-08-26T19:36:12.8850170Z adding 'torch/include/ATen/core/custom_class.h' 2025-08-26T19:36:12.8852960Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-08-26T19:36:12.8853640Z adding 'torch/include/ATen/core/enum_tag.h' 2025-08-26T19:36:12.8854940Z adding 'torch/include/ATen/core/enum_type.h' 2025-08-26T19:36:12.8856250Z adding 'torch/include/ATen/core/function.h' 2025-08-26T19:36:12.8862010Z adding 'torch/include/ATen/core/function_schema.h' 2025-08-26T19:36:12.8863070Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-08-26T19:36:12.8864040Z adding 'torch/include/ATen/core/functional.h' 2025-08-26T19:36:12.8864840Z adding 'torch/include/ATen/core/grad_mode.h' 2025-08-26T19:36:12.8867900Z adding 'torch/include/ATen/core/interned_strings.h' 2025-08-26T19:36:12.8868650Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-08-26T19:36:12.8880710Z adding 'torch/include/ATen/core/ivalue.h' 2025-08-26T19:36:12.8898560Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-08-26T19:36:12.8899760Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-08-26T19:36:12.8913610Z adding 'torch/include/ATen/core/jit_type.h' 2025-08-26T19:36:12.8918500Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-08-26T19:36:12.8919810Z adding 'torch/include/ATen/core/operator_name.h' 2025-08-26T19:36:12.8921800Z adding 'torch/include/ATen/core/qualified_name.h' 2025-08-26T19:36:12.8922380Z adding 'torch/include/ATen/core/rref_interface.h' 2025-08-26T19:36:12.8924490Z adding 'torch/include/ATen/core/stack.h' 2025-08-26T19:36:12.8926250Z adding 'torch/include/ATen/core/symbol.h' 2025-08-26T19:36:12.8927390Z adding 'torch/include/ATen/core/type_factory.h' 2025-08-26T19:36:12.8928320Z adding 'torch/include/ATen/core/type_ptr.h' 2025-08-26T19:36:12.8929060Z adding 'torch/include/ATen/core/typeid.h' 2025-08-26T19:36:12.8932050Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-08-26T19:36:12.8933080Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-08-26T19:36:12.8935620Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-08-26T19:36:12.8938470Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-08-26T19:36:12.8939270Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-08-26T19:36:12.8940690Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-08-26T19:36:12.8941680Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-08-26T19:36:12.8944710Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-08-26T19:36:12.8950050Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-08-26T19:36:12.8951270Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-08-26T19:36:12.8952820Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-08-26T19:36:12.8955750Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-08-26T19:36:12.8963140Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-08-26T19:36:12.8963960Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-08-26T19:36:12.8967440Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-08-26T19:36:12.8968250Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-08-26T19:36:12.8969150Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-08-26T19:36:12.8970630Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-08-26T19:36:12.8972550Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-08-26T19:36:12.8974310Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-08-26T19:36:12.8978910Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-08-26T19:36:12.8979830Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-08-26T19:36:12.8980720Z adding 'torch/include/ATen/cpu/Utils.h' 2025-08-26T19:36:12.8982760Z adding 'torch/include/ATen/cpu/vml.h' 2025-08-26T19:36:12.8983710Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-08-26T19:36:12.8986330Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-08-26T19:36:12.8989390Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-08-26T19:36:12.8990070Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-08-26T19:36:12.8991100Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-08-26T19:36:12.8998730Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-08-26T19:36:12.8999720Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-08-26T19:36:12.9000950Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-08-26T19:36:12.9003510Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-08-26T19:36:12.9005820Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-08-26T19:36:12.9007090Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-08-26T19:36:12.9009100Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-08-26T19:36:12.9012380Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-08-26T19:36:12.9014170Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-08-26T19:36:12.9017140Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-08-26T19:36:12.9021300Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-08-26T19:36:12.9024600Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-08-26T19:36:12.9027760Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-08-26T19:36:12.9028710Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-08-26T19:36:12.9032440Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-08-26T19:36:12.9033350Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-08-26T19:36:12.9036920Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-08-26T19:36:12.9040240Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-08-26T19:36:12.9042100Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-08-26T19:36:12.9043200Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-08-26T19:36:12.9043950Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-08-26T19:36:12.9046530Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-08-26T19:36:12.9050910Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-08-26T19:36:12.9053000Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-08-26T19:36:12.9057160Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-08-26T19:36:12.9061090Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-08-26T19:36:12.9063280Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-08-26T19:36:12.9065800Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-08-26T19:36:12.9070250Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-08-26T19:36:12.9071870Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-08-26T19:36:12.9080370Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-08-26T19:36:12.9082740Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-08-26T19:36:12.9089080Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-08-26T19:36:12.9090630Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-08-26T19:36:12.9098250Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-08-26T19:36:12.9098660Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-08-26T19:36:12.9101690Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-08-26T19:36:12.9104410Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-08-26T19:36:12.9107280Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-08-26T19:36:12.9109610Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-08-26T19:36:12.9111750Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-08-26T19:36:12.9113530Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-08-26T19:36:12.9115890Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-08-26T19:36:12.9118970Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-08-26T19:36:12.9122050Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-08-26T19:36:12.9125930Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-08-26T19:36:12.9140730Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-08-26T19:36:12.9143760Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-08-26T19:36:12.9153650Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-08-26T19:36:12.9158360Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-08-26T19:36:12.9163950Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-08-26T19:36:12.9166150Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-08-26T19:36:12.9168850Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-08-26T19:36:12.9173640Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-08-26T19:36:12.9177530Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-08-26T19:36:12.9184800Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-08-26T19:36:12.9187570Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-08-26T19:36:12.9194030Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-08-26T19:36:12.9195570Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-08-26T19:36:12.9196660Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-08-26T19:36:12.9197850Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-08-26T19:36:12.9201650Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-08-26T19:36:12.9205810Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-08-26T19:36:12.9208380Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-08-26T19:36:12.9208960Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-08-26T19:36:12.9210340Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-08-26T19:36:12.9211430Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-08-26T19:36:12.9212330Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-08-26T19:36:12.9214890Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-08-26T19:36:12.9216730Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-08-26T19:36:12.9217930Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-08-26T19:36:12.9219020Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-08-26T19:36:12.9220040Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-08-26T19:36:12.9222470Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-08-26T19:36:12.9224020Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-08-26T19:36:12.9224900Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-08-26T19:36:12.9225690Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-08-26T19:36:12.9226940Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-08-26T19:36:12.9228090Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-08-26T19:36:12.9228970Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-08-26T19:36:12.9231310Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-08-26T19:36:12.9232800Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-08-26T19:36:12.9234090Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-08-26T19:36:12.9234990Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-08-26T19:36:12.9235840Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-08-26T19:36:12.9236730Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-08-26T19:36:12.9237880Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-08-26T19:36:12.9238750Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-08-26T19:36:12.9239660Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-08-26T19:36:12.9240870Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-08-26T19:36:12.9245240Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-08-26T19:36:12.9246360Z adding 'torch/include/ATen/cuda/cub.h' 2025-08-26T19:36:12.9247360Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-08-26T19:36:12.9248230Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-08-26T19:36:12.9250230Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-08-26T19:36:12.9250790Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-08-26T19:36:12.9252810Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-08-26T19:36:12.9255000Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-08-26T19:36:12.9255700Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-08-26T19:36:12.9257190Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-08-26T19:36:12.9258180Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-08-26T19:36:12.9259030Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-08-26T19:36:12.9260520Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-08-26T19:36:12.9261530Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-08-26T19:36:12.9262750Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-08-26T19:36:12.9263790Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-08-26T19:36:12.9267550Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-08-26T19:36:12.9271060Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-08-26T19:36:12.9273210Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-08-26T19:36:12.9273900Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-08-26T19:36:12.9276020Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-08-26T19:36:12.9277520Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-08-26T19:36:12.9280930Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-08-26T19:36:12.9284500Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-08-26T19:36:12.9285210Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-08-26T19:36:12.9286000Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-08-26T19:36:12.9286830Z adding 'torch/include/ATen/cudnn/Types.h' 2025-08-26T19:36:12.9287710Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-08-26T19:36:12.9288580Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-08-26T19:36:12.9290650Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-08-26T19:36:12.9291970Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-08-26T19:36:12.9293210Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-08-26T19:36:12.9294260Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-08-26T19:36:12.9295310Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-08-26T19:36:12.9296230Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-08-26T19:36:12.9297180Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-08-26T19:36:12.9298340Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-08-26T19:36:12.9299660Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-08-26T19:36:12.9300820Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-08-26T19:36:12.9301830Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-08-26T19:36:12.9303160Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-08-26T19:36:12.9306710Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-08-26T19:36:12.9307750Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-08-26T19:36:12.9309900Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-08-26T19:36:12.9311070Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-08-26T19:36:12.9313120Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-08-26T19:36:12.9313700Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-08-26T19:36:12.9316790Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-08-26T19:36:12.9319170Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-08-26T19:36:12.9319680Z adding 'torch/include/ATen/functorch/Macros.h' 2025-08-26T19:36:12.9320920Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-08-26T19:36:12.9322390Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-08-26T19:36:12.9323310Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-08-26T19:36:12.9325870Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-08-26T19:36:12.9327040Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-08-26T19:36:12.9330350Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-08-26T19:36:12.9331540Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-08-26T19:36:12.9332610Z adding 'torch/include/ATen/metal/Context.h' 2025-08-26T19:36:12.9334860Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-08-26T19:36:12.9335570Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-08-26T19:36:12.9336370Z adding 'torch/include/ATen/miopen/Handle.h' 2025-08-26T19:36:12.9337170Z adding 'torch/include/ATen/miopen/Types.h' 2025-08-26T19:36:12.9337980Z adding 'torch/include/ATen/miopen/Utils.h' 2025-08-26T19:36:12.9338850Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-08-26T19:36:12.9340000Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-08-26T19:36:12.9341990Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-08-26T19:36:12.9346560Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-08-26T19:36:12.9347550Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-08-26T19:36:12.9348620Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-08-26T19:36:12.9350040Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-08-26T19:36:12.9351040Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-08-26T19:36:12.9353030Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-08-26T19:36:12.9353780Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-08-26T19:36:12.9357720Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-08-26T19:36:12.9358880Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-08-26T19:36:12.9361260Z adding 'torch/include/ATen/native/Activation.h' 2025-08-26T19:36:12.9362080Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-08-26T19:36:12.9362940Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-08-26T19:36:12.9365040Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-08-26T19:36:12.9366010Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-08-26T19:36:12.9368280Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-08-26T19:36:12.9369680Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-08-26T19:36:12.9370830Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-08-26T19:36:12.9371680Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-08-26T19:36:12.9373050Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-08-26T19:36:12.9373960Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-08-26T19:36:12.9376040Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-08-26T19:36:12.9379130Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-08-26T19:36:12.9379740Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-08-26T19:36:12.9380550Z adding 'torch/include/ATen/native/Copy.h' 2025-08-26T19:36:12.9381320Z adding 'torch/include/ATen/native/Cross.h' 2025-08-26T19:36:12.9383400Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-08-26T19:36:12.9386100Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-08-26T19:36:12.9386760Z adding 'torch/include/ATen/native/Distance.h' 2025-08-26T19:36:12.9390240Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-08-26T19:36:12.9395050Z adding 'torch/include/ATen/native/Distributions.h' 2025-08-26T19:36:12.9396390Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-08-26T19:36:12.9397220Z adding 'torch/include/ATen/native/Fill.h' 2025-08-26T19:36:12.9400630Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-08-26T19:36:12.9401540Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-08-26T19:36:12.9402390Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-08-26T19:36:12.9403220Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-08-26T19:36:12.9404100Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-08-26T19:36:12.9404950Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-08-26T19:36:12.9405820Z adding 'torch/include/ATen/native/Gelu.h' 2025-08-26T19:36:12.9408170Z adding 'torch/include/ATen/native/GridSampler.h' 2025-08-26T19:36:12.9409310Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-08-26T19:36:12.9410040Z adding 'torch/include/ATen/native/Histogram.h' 2025-08-26T19:36:12.9410970Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-08-26T19:36:12.9413100Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-08-26T19:36:12.9413900Z adding 'torch/include/ATen/native/Lerp.h' 2025-08-26T19:36:12.9414780Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-08-26T19:36:12.9421020Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-08-26T19:36:12.9421940Z adding 'torch/include/ATen/native/LossMulti.h' 2025-08-26T19:36:12.9451560Z adding 'torch/include/ATen/native/Math.h' 2025-08-26T19:36:12.9453430Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-08-26T19:36:12.9455760Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-08-26T19:36:12.9456800Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-08-26T19:36:12.9457740Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-08-26T19:36:12.9458920Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-08-26T19:36:12.9459830Z adding 'torch/include/ATen/native/Normalization.h' 2025-08-26T19:36:12.9460900Z adding 'torch/include/ATen/native/Padding.h' 2025-08-26T19:36:12.9461940Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-08-26T19:36:12.9462870Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-08-26T19:36:12.9466600Z adding 'torch/include/ATen/native/Pool.h' 2025-08-26T19:36:12.9467320Z adding 'torch/include/ATen/native/Pow.h' 2025-08-26T19:36:12.9468340Z adding 'torch/include/ATen/native/RNN.h' 2025-08-26T19:36:12.9469200Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-08-26T19:36:12.9470280Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-08-26T19:36:12.9471110Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-08-26T19:36:12.9472130Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-08-26T19:36:12.9475600Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-08-26T19:36:12.9476320Z adding 'torch/include/ATen/native/ReductionType.h' 2025-08-26T19:36:12.9477400Z adding 'torch/include/ATen/native/Repeat.h' 2025-08-26T19:36:12.9479830Z adding 'torch/include/ATen/native/Resize.h' 2025-08-26T19:36:12.9480810Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-08-26T19:36:12.9482100Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-08-26T19:36:12.9482960Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-08-26T19:36:12.9485820Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-08-26T19:36:12.9486700Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-08-26T19:36:12.9487510Z adding 'torch/include/ATen/native/Sorting.h' 2025-08-26T19:36:12.9488570Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-08-26T19:36:12.9490770Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-08-26T19:36:12.9491780Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-08-26T19:36:12.9493360Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-08-26T19:36:12.9494470Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-08-26T19:36:12.9495800Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-08-26T19:36:12.9496730Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-08-26T19:36:12.9497580Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-08-26T19:36:12.9498610Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-08-26T19:36:12.9500690Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-08-26T19:36:12.9501010Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-08-26T19:36:12.9502100Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-08-26T19:36:12.9502850Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-08-26T19:36:12.9504760Z adding 'torch/include/ATen/native/TensorShape.h' 2025-08-26T19:36:12.9505360Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-08-26T19:36:12.9506450Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-08-26T19:36:12.9507350Z adding 'torch/include/ATen/native/TransposeType.h' 2025-08-26T19:36:12.9508410Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-08-26T19:36:12.9509230Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-08-26T19:36:12.9510430Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-08-26T19:36:12.9511350Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-08-26T19:36:12.9512170Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-08-26T19:36:12.9513410Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-08-26T19:36:12.9517390Z adding 'torch/include/ATen/native/UpSample.h' 2025-08-26T19:36:12.9518130Z adding 'torch/include/ATen/native/batch_norm.h' 2025-08-26T19:36:12.9519000Z adding 'torch/include/ATen/native/group_norm.h' 2025-08-26T19:36:12.9520320Z adding 'torch/include/ATen/native/im2col.h' 2025-08-26T19:36:12.9522260Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-08-26T19:36:12.9523230Z adding 'torch/include/ATen/native/layer_norm.h' 2025-08-26T19:36:12.9524040Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-08-26T19:36:12.9525160Z adding 'torch/include/ATen/native/vol2col.h' 2025-08-26T19:36:12.9527820Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-08-26T19:36:12.9528780Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-08-26T19:36:12.9530080Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-08-26T19:36:12.9531410Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-08-26T19:36:12.9532190Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-08-26T19:36:12.9533080Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-08-26T19:36:12.9533860Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-08-26T19:36:12.9534750Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-08-26T19:36:12.9537660Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-08-26T19:36:12.9538550Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-08-26T19:36:12.9539700Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-08-26T19:36:12.9540590Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-08-26T19:36:12.9541840Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-08-26T19:36:12.9542750Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-08-26T19:36:12.9543770Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-08-26T19:36:12.9544910Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-08-26T19:36:12.9547710Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-08-26T19:36:12.9550520Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-08-26T19:36:12.9551190Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-08-26T19:36:12.9552010Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-08-26T19:36:12.9555010Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-08-26T19:36:12.9556750Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-08-26T19:36:12.9557790Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-08-26T19:36:12.9558520Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-08-26T19:36:12.9560460Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-08-26T19:36:12.9561040Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-08-26T19:36:12.9561920Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-08-26T19:36:12.9562700Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-08-26T19:36:12.9572210Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-08-26T19:36:12.9573080Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-08-26T19:36:12.9576560Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-08-26T19:36:12.9577260Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-08-26T19:36:12.9578250Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-08-26T19:36:12.9580270Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-08-26T19:36:12.9582010Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-08-26T19:36:12.9583300Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-08-26T19:36:12.9585230Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-08-26T19:36:12.9585970Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-08-26T19:36:12.9588780Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-08-26T19:36:12.9594420Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-08-26T19:36:12.9595230Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-08-26T19:36:12.9595960Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-08-26T19:36:12.9600450Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-08-26T19:36:12.9601270Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-08-26T19:36:12.9602120Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-08-26T19:36:12.9607100Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-08-26T19:36:12.9607750Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-08-26T19:36:12.9608620Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-08-26T19:36:12.9611390Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-08-26T19:36:12.9612060Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-08-26T19:36:12.9614410Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-08-26T19:36:12.9615020Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-08-26T19:36:12.9615780Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-08-26T19:36:12.9617780Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-08-26T19:36:12.9618300Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-08-26T19:36:12.9619370Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-08-26T19:36:12.9621540Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-08-26T19:36:12.9624040Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-08-26T19:36:12.9624610Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-08-26T19:36:12.9627100Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-08-26T19:36:12.9648190Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-08-26T19:36:12.9652940Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-08-26T19:36:12.9653790Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-08-26T19:36:12.9656580Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-08-26T19:36:12.9667470Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-08-26T19:36:12.9670810Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-08-26T19:36:12.9671720Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-08-26T19:36:12.9672880Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-08-26T19:36:12.9683260Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-08-26T19:36:12.9684060Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-08-26T19:36:12.9685100Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-08-26T19:36:12.9685950Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-08-26T19:36:12.9686790Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-08-26T19:36:12.9687620Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-08-26T19:36:12.9691490Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-08-26T19:36:12.9692130Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-08-26T19:36:12.9692950Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-08-26T19:36:12.9695670Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-08-26T19:36:12.9696240Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-08-26T19:36:12.9698160Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-08-26T19:36:12.9700870Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-08-26T19:36:12.9704490Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-08-26T19:36:12.9705120Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-08-26T19:36:12.9705920Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-08-26T19:36:12.9706670Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-08-26T19:36:12.9709290Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-08-26T19:36:12.9710310Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-08-26T19:36:12.9711210Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-08-26T19:36:12.9712080Z adding 'torch/include/ATen/native/cuda/fused_adagrad_impl.cuh' 2025-08-26T19:36:12.9713490Z adding 'torch/include/ATen/native/cuda/fused_adagrad_utils.cuh' 2025-08-26T19:36:12.9714970Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-08-26T19:36:12.9715780Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-08-26T19:36:12.9717950Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-08-26T19:36:12.9718540Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-08-26T19:36:12.9719360Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-08-26T19:36:12.9721570Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-08-26T19:36:12.9723300Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-08-26T19:36:12.9727650Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-08-26T19:36:12.9728390Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-08-26T19:36:12.9730690Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-08-26T19:36:12.9731600Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-08-26T19:36:12.9732470Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-08-26T19:36:12.9735070Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-08-26T19:36:12.9735840Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-08-26T19:36:12.9737340Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-08-26T19:36:12.9739150Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-08-26T19:36:12.9740180Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-08-26T19:36:12.9741180Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-08-26T19:36:12.9742460Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-08-26T19:36:12.9743660Z adding 'torch/include/ATen/native/metal/MetalCommandBuffer.h' 2025-08-26T19:36:12.9744530Z adding 'torch/include/ATen/native/metal/MetalContext.h' 2025-08-26T19:36:12.9745500Z adding 'torch/include/ATen/native/metal/MetalConvParams.h' 2025-08-26T19:36:12.9746470Z adding 'torch/include/ATen/native/metal/MetalDevice.h' 2025-08-26T19:36:12.9747520Z adding 'torch/include/ATen/native/metal/MetalNeuronType.h' 2025-08-26T19:36:12.9748800Z adding 'torch/include/ATen/native/metal/MetalPrepackOpContext.h' 2025-08-26T19:36:12.9754440Z adding 'torch/include/ATen/native/metal/MetalShaders.h' 2025-08-26T19:36:12.9755340Z adding 'torch/include/ATen/native/metal/MetalTensorImpl.h' 2025-08-26T19:36:12.9756300Z adding 'torch/include/ATen/native/metal/MetalTensorImplStorage.h' 2025-08-26T19:36:12.9757420Z adding 'torch/include/ATen/native/metal/MetalTensorUtils.h' 2025-08-26T19:36:12.9758600Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h' 2025-08-26T19:36:12.9759530Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h' 2025-08-26T19:36:12.9760460Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h' 2025-08-26T19:36:12.9761250Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h' 2025-08-26T19:36:12.9762070Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h' 2025-08-26T19:36:12.9763380Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h' 2025-08-26T19:36:12.9764190Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h' 2025-08-26T19:36:12.9765340Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h' 2025-08-26T19:36:12.9766280Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h' 2025-08-26T19:36:12.9767520Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h' 2025-08-26T19:36:12.9768390Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h' 2025-08-26T19:36:12.9769420Z adding 'torch/include/ATen/native/metal/ops/MetalConvolution.h' 2025-08-26T19:36:12.9770210Z adding 'torch/include/ATen/native/metal/ops/MetalCopy.h' 2025-08-26T19:36:12.9771560Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-08-26T19:36:12.9772560Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-08-26T19:36:12.9776590Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-08-26T19:36:12.9779960Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-08-26T19:36:12.9780960Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-08-26T19:36:12.9782340Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-08-26T19:36:12.9783730Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-08-26T19:36:12.9784870Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-08-26T19:36:12.9785900Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-08-26T19:36:12.9786910Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-08-26T19:36:12.9787990Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-08-26T19:36:12.9789950Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-08-26T19:36:12.9796520Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-08-26T19:36:12.9796770Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-08-26T19:36:12.9796870Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-08-26T19:36:12.9797950Z adding 'torch/include/ATen/native/mps/kernels/GridSampler.h' 2025-08-26T19:36:12.9798910Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-08-26T19:36:12.9799720Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-08-26T19:36:12.9800810Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-08-26T19:36:12.9801730Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-08-26T19:36:12.9802560Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-08-26T19:36:12.9803430Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-08-26T19:36:12.9804210Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-08-26T19:36:12.9807150Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-08-26T19:36:12.9807960Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-08-26T19:36:12.9809040Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-08-26T19:36:12.9810230Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-08-26T19:36:12.9811390Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-08-26T19:36:12.9812330Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-08-26T19:36:12.9815950Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-08-26T19:36:12.9817080Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-08-26T19:36:12.9818100Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-08-26T19:36:12.9819090Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-08-26T19:36:12.9819880Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-08-26T19:36:12.9820840Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-08-26T19:36:12.9821690Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-08-26T19:36:12.9822880Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-08-26T19:36:12.9823690Z adding 'torch/include/ATen/native/quantized/library.h' 2025-08-26T19:36:12.9826220Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-08-26T19:36:12.9826890Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-08-26T19:36:12.9827820Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-08-26T19:36:12.9830660Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-08-26T19:36:12.9833950Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-08-26T19:36:12.9836360Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-08-26T19:36:12.9838130Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-08-26T19:36:12.9838880Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-08-26T19:36:12.9841610Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-08-26T19:36:12.9844230Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-08-26T19:36:12.9846470Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-08-26T19:36:12.9847040Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-08-26T19:36:12.9848050Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-08-26T19:36:12.9848950Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-08-26T19:36:12.9849810Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-08-26T19:36:12.9850720Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-08-26T19:36:12.9853380Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-08-26T19:36:12.9854470Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-08-26T19:36:12.9855730Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-08-26T19:36:12.9859240Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-08-26T19:36:12.9860210Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-08-26T19:36:12.9861980Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-08-26T19:36:12.9863040Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-08-26T19:36:12.9865530Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-08-26T19:36:12.9867340Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-08-26T19:36:12.9885700Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-08-26T19:36:12.9896900Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-08-26T19:36:12.9897870Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-08-26T19:36:12.9902520Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-08-26T19:36:12.9904430Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-08-26T19:36:12.9906220Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-08-26T19:36:12.9907510Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-08-26T19:36:12.9909580Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-08-26T19:36:12.9914270Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-08-26T19:36:12.9917430Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-08-26T19:36:12.9918740Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-08-26T19:36:12.9921350Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-08-26T19:36:12.9933310Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-08-26T19:36:12.9935550Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-08-26T19:36:12.9939310Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-08-26T19:36:12.9940170Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-08-26T19:36:12.9946570Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-08-26T19:36:12.9952270Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-08-26T19:36:12.9953240Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-08-26T19:36:12.9955910Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-08-26T19:36:12.9963490Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-08-26T19:36:12.9966240Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-08-26T19:36:12.9967430Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-08-26T19:36:12.9968810Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-08-26T19:36:12.9971990Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-08-26T19:36:12.9973030Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-08-26T19:36:12.9974040Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-08-26T19:36:12.9975010Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-08-26T19:36:12.9976140Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-08-26T19:36:13.0033530Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-08-26T19:36:13.0034340Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-08-26T19:36:13.0035460Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0036350Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0037210Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0038050Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.0038900Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-08-26T19:36:13.0039880Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-08-26T19:36:13.0040890Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0041770Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-08-26T19:36:13.0042550Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-08-26T19:36:13.0043370Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2025-08-26T19:36:13.0044240Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-08-26T19:36:13.0045230Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-08-26T19:36:13.0046310Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-08-26T19:36:13.0047280Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-08-26T19:36:13.0048260Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0049050Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0049870Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0050720Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-08-26T19:36:13.0051680Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-08-26T19:36:13.0052650Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0053460Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-08-26T19:36:13.0054250Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-08-26T19:36:13.0055090Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-08-26T19:36:13.0056070Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-08-26T19:36:13.0056910Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-08-26T19:36:13.0057910Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0058690Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-08-26T19:36:13.0059620Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-08-26T19:36:13.0060630Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-08-26T19:36:13.0061600Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0062460Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-08-26T19:36:13.0063320Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-08-26T19:36:13.0064170Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-08-26T19:36:13.0065330Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-08-26T19:36:13.0066290Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-08-26T19:36:13.0067320Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0068140Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-08-26T19:36:13.0068990Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-08-26T19:36:13.0069870Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-08-26T19:36:13.0070710Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-08-26T19:36:13.0071590Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-08-26T19:36:13.0072590Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-08-26T19:36:13.0073580Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-08-26T19:36:13.0074630Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0075410Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-08-26T19:36:13.0076220Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-08-26T19:36:13.0077090Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-08-26T19:36:13.0078120Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-08-26T19:36:13.0079170Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-08-26T19:36:13.0080180Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0080980Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-08-26T19:36:13.0081820Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-08-26T19:36:13.0082670Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h' 2025-08-26T19:36:13.0083540Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-08-26T19:36:13.0084590Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-08-26T19:36:13.0085580Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-08-26T19:36:13.0086550Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0087360Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-08-26T19:36:13.0088220Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-08-26T19:36:13.0089070Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-08-26T19:36:13.0089820Z adding 'torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h' 2025-08-26T19:36:13.0090690Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-08-26T19:36:13.0091790Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-08-26T19:36:13.0092630Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-08-26T19:36:13.0093510Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-08-26T19:36:13.0094320Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-08-26T19:36:13.0095180Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-08-26T19:36:13.0096070Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-08-26T19:36:13.0096920Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-08-26T19:36:13.0097850Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0098630Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-08-26T19:36:13.0099530Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-08-26T19:36:13.0100620Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-08-26T19:36:13.0101680Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0102500Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-08-26T19:36:13.0103350Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-08-26T19:36:13.0104320Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-08-26T19:36:13.0105180Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-08-26T19:36:13.0106140Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0106910Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-08-26T19:36:13.0107800Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-08-26T19:36:13.0108650Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-08-26T19:36:13.0109600Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0110360Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-08-26T19:36:13.0111280Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-08-26T19:36:13.0112040Z adding 'torch/include/ATen/ops/_backward.h' 2025-08-26T19:36:13.0113010Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0113800Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-08-26T19:36:13.0114720Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-08-26T19:36:13.0115650Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-08-26T19:36:13.0116660Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-08-26T19:36:13.0117660Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0118470Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-08-26T19:36:13.0119460Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-08-26T19:36:13.0121590Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0122890Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-08-26T19:36:13.0124090Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-08-26T19:36:13.0125150Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-08-26T19:36:13.0126300Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0127240Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-08-26T19:36:13.0128360Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-08-26T19:36:13.0129460Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-08-26T19:36:13.0130500Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0131520Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-08-26T19:36:13.0132440Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-08-26T19:36:13.0133290Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2025-08-26T19:36:13.0134270Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-08-26T19:36:13.0135540Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-08-26T19:36:13.0136470Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-08-26T19:36:13.0137460Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0138200Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-08-26T19:36:13.0139210Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-08-26T19:36:13.0140070Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-08-26T19:36:13.0141040Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0141780Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-08-26T19:36:13.0142770Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-08-26T19:36:13.0143620Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-08-26T19:36:13.0144600Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0145350Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-08-26T19:36:13.0146330Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-08-26T19:36:13.0147180Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-08-26T19:36:13.0148130Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0148890Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-08-26T19:36:13.0149890Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-08-26T19:36:13.0150730Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-08-26T19:36:13.0151720Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0152440Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-08-26T19:36:13.0153400Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-08-26T19:36:13.0154220Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-08-26T19:36:13.0155190Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0155940Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-08-26T19:36:13.0156970Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-08-26T19:36:13.0157810Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-08-26T19:36:13.0158790Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0159500Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-08-26T19:36:13.0160520Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-08-26T19:36:13.0161350Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-08-26T19:36:13.0162290Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0163040Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-08-26T19:36:13.0164000Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-08-26T19:36:13.0164930Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-08-26T19:36:13.0165920Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0166730Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0167630Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0168470Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-08-26T19:36:13.0169450Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-08-26T19:36:13.0170350Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-08-26T19:36:13.0171420Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0172260Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-08-26T19:36:13.0173040Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-08-26T19:36:13.0173850Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2025-08-26T19:36:13.0174770Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-08-26T19:36:13.0175760Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-08-26T19:36:13.0176660Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-08-26T19:36:13.0177640Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0178550Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-08-26T19:36:13.0179330Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-08-26T19:36:13.0180140Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-08-26T19:36:13.0181090Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-08-26T19:36:13.0182090Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-08-26T19:36:13.0183080Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0183850Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-08-26T19:36:13.0184740Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-08-26T19:36:13.0185700Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-08-26T19:36:13.0186690Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0187500Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-08-26T19:36:13.0188340Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-08-26T19:36:13.0189390Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-08-26T19:36:13.0190260Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-08-26T19:36:13.0191240Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0192050Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-08-26T19:36:13.0193040Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-08-26T19:36:13.0193980Z adding 'torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h' 2025-08-26T19:36:13.0194850Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-08-26T19:36:13.0195810Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0196690Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-08-26T19:36:13.0197600Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-08-26T19:36:13.0198620Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-08-26T19:36:13.0199500Z adding 'torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h' 2025-08-26T19:36:13.0200470Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-08-26T19:36:13.0201400Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-08-26T19:36:13.0202210Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-08-26T19:36:13.0203090Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-08-26T19:36:13.0204120Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-08-26T19:36:13.0204940Z adding 'torch/include/ATen/ops/_conj.h' 2025-08-26T19:36:13.0205870Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0206700Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-08-26T19:36:13.0207760Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0208670Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0209390Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-08-26T19:36:13.0210310Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-08-26T19:36:13.0211200Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-08-26T19:36:13.0212100Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-08-26T19:36:13.0212980Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-08-26T19:36:13.0213940Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0214770Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-08-26T19:36:13.0215710Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-08-26T19:36:13.0216930Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-08-26T19:36:13.0217940Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-08-26T19:36:13.0218890Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-08-26T19:36:13.0219990Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-08-26T19:36:13.0220930Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-08-26T19:36:13.0222000Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0222870Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-08-26T19:36:13.0223740Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-08-26T19:36:13.0224590Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-08-26T19:36:13.0225450Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-08-26T19:36:13.0226390Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-08-26T19:36:13.0227350Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-08-26T19:36:13.0228280Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-08-26T19:36:13.0229320Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0230180Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-08-26T19:36:13.0231040Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-08-26T19:36:13.0231910Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-08-26T19:36:13.0232740Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-08-26T19:36:13.0233670Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-08-26T19:36:13.0234660Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-08-26T19:36:13.0235510Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-08-26T19:36:13.0236400Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-08-26T19:36:13.0237330Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-08-26T19:36:13.0238240Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-08-26T19:36:13.0239050Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-08-26T19:36:13.0239950Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-08-26T19:36:13.0240940Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2025-08-26T19:36:13.0241800Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-08-26T19:36:13.0242690Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-08-26T19:36:13.0244290Z adding 'torch/include/ATen/ops/_convolution.h' 2025-08-26T19:36:13.0245470Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0246370Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0247440Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-08-26T19:36:13.0248500Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0249360Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-08-26T19:36:13.0250380Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-08-26T19:36:13.0251360Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-08-26T19:36:13.0252340Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0253220Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-08-26T19:36:13.0254170Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-08-26T19:36:13.0255070Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-08-26T19:36:13.0256210Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-08-26T19:36:13.0257190Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-08-26T19:36:13.0258110Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-08-26T19:36:13.0259120Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0259890Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2025-08-26T19:36:13.0260780Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-08-26T19:36:13.0261730Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-08-26T19:36:13.0262700Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0263480Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2025-08-26T19:36:13.0264380Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-08-26T19:36:13.0265340Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-08-26T19:36:13.0266160Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-08-26T19:36:13.0267040Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-08-26T19:36:13.0267930Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-08-26T19:36:13.0268820Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-08-26T19:36:13.0269710Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-08-26T19:36:13.0270650Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-08-26T19:36:13.0271550Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-08-26T19:36:13.0272570Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-08-26T19:36:13.0273450Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-08-26T19:36:13.0274400Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-08-26T19:36:13.0275320Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-08-26T19:36:13.0276290Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-08-26T19:36:13.0277320Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-08-26T19:36:13.0278370Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-08-26T19:36:13.0279440Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0280300Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0281230Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0282130Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-08-26T19:36:13.0283300Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-08-26T19:36:13.0284290Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0285120Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-08-26T19:36:13.0285960Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-08-26T19:36:13.0286900Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-08-26T19:36:13.0287800Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-08-26T19:36:13.0289030Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-08-26T19:36:13.0290210Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-08-26T19:36:13.0291330Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0292280Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-08-26T19:36:13.0293240Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-08-26T19:36:13.0294400Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-08-26T19:36:13.0295490Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-08-26T19:36:13.0296440Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-08-26T19:36:13.0297510Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-08-26T19:36:13.0298550Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-08-26T19:36:13.0299700Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0300580Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-08-26T19:36:13.0301490Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-08-26T19:36:13.0302600Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-08-26T19:36:13.0303660Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-08-26T19:36:13.0304680Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0305500Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-08-26T19:36:13.0306330Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-08-26T19:36:13.0307410Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-08-26T19:36:13.0309300Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-08-26T19:36:13.0310620Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-08-26T19:36:13.0311810Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0312820Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0313760Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-08-26T19:36:13.0314970Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-08-26T19:36:13.0316070Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0317020Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-08-26T19:36:13.0318220Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-08-26T19:36:13.0319310Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0320110Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-08-26T19:36:13.0321040Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-08-26T19:36:13.0322070Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-08-26T19:36:13.0322970Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-08-26T19:36:13.0324150Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-08-26T19:36:13.0325120Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-08-26T19:36:13.0326100Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0326870Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-08-26T19:36:13.0327760Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-08-26T19:36:13.0328690Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-08-26T19:36:13.0329680Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0330450Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-08-26T19:36:13.0331330Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-08-26T19:36:13.0332240Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-08-26T19:36:13.0333200Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0333970Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-08-26T19:36:13.0334850Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-08-26T19:36:13.0335790Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-08-26T19:36:13.0336770Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0337530Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-08-26T19:36:13.0338410Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-08-26T19:36:13.0339310Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-08-26T19:36:13.0358900Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-08-26T19:36:13.0359620Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-08-26T19:36:13.0360510Z adding 'torch/include/ATen/ops/_cummax_helper_mps_dispatch.h' 2025-08-26T19:36:13.0361770Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-08-26T19:36:13.0362780Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-08-26T19:36:13.0363600Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-08-26T19:36:13.0364490Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-08-26T19:36:13.0365380Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-08-26T19:36:13.0366200Z adding 'torch/include/ATen/ops/_cummin_helper_mps_dispatch.h' 2025-08-26T19:36:13.0367020Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-08-26T19:36:13.0367990Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-08-26T19:36:13.0368990Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-08-26T19:36:13.0370020Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0370790Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-08-26T19:36:13.0371670Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-08-26T19:36:13.0372530Z adding 'torch/include/ATen/ops/_dimI.h' 2025-08-26T19:36:13.0373420Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-08-26T19:36:13.0374270Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-08-26T19:36:13.0375100Z adding 'torch/include/ATen/ops/_dimV.h' 2025-08-26T19:36:13.0376060Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-08-26T19:36:13.0377090Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-08-26T19:36:13.0377940Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-08-26T19:36:13.0378920Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0379750Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-08-26T19:36:13.0380640Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-08-26T19:36:13.0381540Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-08-26T19:36:13.0382520Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0383400Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-08-26T19:36:13.0384220Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-08-26T19:36:13.0385060Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-08-26T19:36:13.0386010Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-08-26T19:36:13.0386970Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-08-26T19:36:13.0387910Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-08-26T19:36:13.0388720Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-08-26T19:36:13.0389630Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-08-26T19:36:13.0390600Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-08-26T19:36:13.0391570Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-08-26T19:36:13.0392450Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-08-26T19:36:13.0393400Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-08-26T19:36:13.0394650Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-08-26T19:36:13.0395720Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0396640Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-08-26T19:36:13.0397710Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-08-26T19:36:13.0399010Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-08-26T19:36:13.0400050Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-08-26T19:36:13.0400940Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-08-26T19:36:13.0401960Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-08-26T19:36:13.0403320Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-08-26T19:36:13.0404490Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0405400Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-08-26T19:36:13.0406290Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-08-26T19:36:13.0407250Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-08-26T19:36:13.0408160Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2025-08-26T19:36:13.0409060Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-08-26T19:36:13.0410070Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-08-26T19:36:13.0411180Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-08-26T19:36:13.0412270Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-08-26T19:36:13.0413240Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0414150Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0415080Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-08-26T19:36:13.0416070Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-08-26T19:36:13.0417070Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0417950Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-08-26T19:36:13.0418850Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-08-26T19:36:13.0420150Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-08-26T19:36:13.0421260Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0422150Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0423190Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0424150Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-08-26T19:36:13.0425200Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-08-26T19:36:13.0426250Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-08-26T19:36:13.0427380Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0428220Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-08-26T19:36:13.0429120Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-08-26T19:36:13.0430040Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-08-26T19:36:13.0431210Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-08-26T19:36:13.0432120Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-08-26T19:36:13.0433200Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-08-26T19:36:13.0434240Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-08-26T19:36:13.0435330Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0436160Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0437010Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0437890Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-08-26T19:36:13.0439010Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-08-26T19:36:13.0440010Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-08-26T19:36:13.0441030Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0441830Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-08-26T19:36:13.0442870Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-08-26T19:36:13.0444200Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-08-26T19:36:13.0445270Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0446120Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-08-26T19:36:13.0447100Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-08-26T19:36:13.0448150Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-08-26T19:36:13.0449780Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-08-26T19:36:13.0450660Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0451650Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-08-26T19:36:13.0452570Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-08-26T19:36:13.0453660Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-08-26T19:36:13.0454470Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-08-26T19:36:13.0455540Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0456360Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-08-26T19:36:13.0457300Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-08-26T19:36:13.0458330Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-08-26T19:36:13.0459430Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-08-26T19:36:13.0460340Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0461180Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0462040Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-08-26T19:36:13.0463080Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-08-26T19:36:13.0464100Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0464910Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-08-26T19:36:13.0465770Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-08-26T19:36:13.0466720Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-08-26T19:36:13.0467730Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-08-26T19:36:13.0468700Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-08-26T19:36:13.0469630Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-08-26T19:36:13.0470630Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0471480Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0472330Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-08-26T19:36:13.0473310Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-08-26T19:36:13.0474360Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0475160Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-08-26T19:36:13.0476000Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-08-26T19:36:13.0476850Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-08-26T19:36:13.0477920Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-08-26T19:36:13.0478960Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-08-26T19:36:13.0480030Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0480830Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-08-26T19:36:13.0481770Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-08-26T19:36:13.0482620Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-08-26T19:36:13.0483660Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-08-26T19:36:13.0484610Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-08-26T19:36:13.0485640Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-08-26T19:36:13.0486540Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-08-26T19:36:13.0487400Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2025-08-26T19:36:13.0488250Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-08-26T19:36:13.0489290Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-08-26T19:36:13.0490400Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-08-26T19:36:13.0491360Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-08-26T19:36:13.0492210Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-08-26T19:36:13.0493140Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2025-08-26T19:36:13.0494060Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-08-26T19:36:13.0495010Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-08-26T19:36:13.0495940Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-08-26T19:36:13.0496930Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-08-26T19:36:13.0497780Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-08-26T19:36:13.0498600Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2025-08-26T19:36:13.0499430Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-08-26T19:36:13.0500450Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-08-26T19:36:13.0501450Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-08-26T19:36:13.0502280Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-08-26T19:36:13.0503130Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-08-26T19:36:13.0508710Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-08-26T19:36:13.0508970Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-08-26T19:36:13.0509080Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-08-26T19:36:13.0509840Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0509970Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-08-26T19:36:13.0510090Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-08-26T19:36:13.0510190Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-08-26T19:36:13.0511100Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-08-26T19:36:13.0512050Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-08-26T19:36:13.0513720Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-08-26T19:36:13.0514840Z adding 'torch/include/ATen/ops/_foobar.h' 2025-08-26T19:36:13.0515990Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0516910Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-08-26T19:36:13.0517810Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-08-26T19:36:13.0518830Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-08-26T19:36:13.0519790Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-08-26T19:36:13.0520820Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0521680Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-08-26T19:36:13.0522540Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-08-26T19:36:13.0523560Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-08-26T19:36:13.0524470Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-08-26T19:36:13.0525500Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0526310Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-08-26T19:36:13.0527160Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-08-26T19:36:13.0528150Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-08-26T19:36:13.0529320Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-08-26T19:36:13.0530430Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0531310Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-08-26T19:36:13.0532310Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-08-26T19:36:13.0533920Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-08-26T19:36:13.0535000Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-08-26T19:36:13.0536070Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0536970Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-08-26T19:36:13.0537970Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-08-26T19:36:13.0539340Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-08-26T19:36:13.0540530Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-08-26T19:36:13.0541610Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0542500Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-08-26T19:36:13.0543460Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-08-26T19:36:13.0544810Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-08-26T19:36:13.0545700Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-08-26T19:36:13.0546690Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0547480Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-08-26T19:36:13.0548320Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-08-26T19:36:13.0549270Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-08-26T19:36:13.0550160Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-08-26T19:36:13.0551120Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0551910Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-08-26T19:36:13.0552750Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-08-26T19:36:13.0553700Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-08-26T19:36:13.0554570Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-08-26T19:36:13.0555520Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0556310Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-08-26T19:36:13.0557130Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-08-26T19:36:13.0558050Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-08-26T19:36:13.0559150Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-08-26T19:36:13.0560190Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0561070Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-08-26T19:36:13.0561970Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-08-26T19:36:13.0563210Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-08-26T19:36:13.0564290Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-08-26T19:36:13.0565320Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0566200Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-08-26T19:36:13.0567150Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-08-26T19:36:13.0568400Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-08-26T19:36:13.0569300Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-08-26T19:36:13.0570280Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0571080Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-08-26T19:36:13.0571950Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-08-26T19:36:13.0572940Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-08-26T19:36:13.0573840Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-08-26T19:36:13.0574800Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0575560Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-08-26T19:36:13.0576400Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-08-26T19:36:13.0577340Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-08-26T19:36:13.0578260Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-08-26T19:36:13.0579200Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0579980Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-08-26T19:36:13.0580790Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-08-26T19:36:13.0582070Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-08-26T19:36:13.0583240Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-08-26T19:36:13.0584280Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0585110Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-08-26T19:36:13.0586080Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-08-26T19:36:13.0587440Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-08-26T19:36:13.0588510Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-08-26T19:36:13.0589660Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0590500Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-08-26T19:36:13.0591330Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-08-26T19:36:13.0592230Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-08-26T19:36:13.0593100Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-08-26T19:36:13.0594040Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0594820Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-08-26T19:36:13.0595630Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-08-26T19:36:13.0596570Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-08-26T19:36:13.0597450Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-08-26T19:36:13.0598360Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0599140Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-08-26T19:36:13.0599960Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-08-26T19:36:13.0600880Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-08-26T19:36:13.0601760Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-08-26T19:36:13.0602720Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0603500Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-08-26T19:36:13.0604350Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-08-26T19:36:13.0605280Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-08-26T19:36:13.0606140Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-08-26T19:36:13.0607090Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0607870Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-08-26T19:36:13.0608670Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-08-26T19:36:13.0609600Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-08-26T19:36:13.0610460Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-08-26T19:36:13.0611430Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0612180Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-08-26T19:36:13.0613010Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-08-26T19:36:13.0613940Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-08-26T19:36:13.0615010Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-08-26T19:36:13.0616060Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0616890Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-08-26T19:36:13.0617840Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-08-26T19:36:13.0619080Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-08-26T19:36:13.0619980Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-08-26T19:36:13.0620940Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0621720Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-08-26T19:36:13.0622590Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-08-26T19:36:13.0623540Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-08-26T19:36:13.0624400Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-08-26T19:36:13.0625280Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-08-26T19:36:13.0626230Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0627000Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-08-26T19:36:13.0627810Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-08-26T19:36:13.0628980Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-08-26T19:36:13.0629600Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-08-26T19:36:13.0630560Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0631380Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-08-26T19:36:13.0632220Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-08-26T19:36:13.0633160Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-08-26T19:36:13.0634080Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-08-26T19:36:13.0635070Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0635910Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-08-26T19:36:13.0636790Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-08-26T19:36:13.0637710Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-08-26T19:36:13.0638840Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0639460Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-08-26T19:36:13.0640330Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-08-26T19:36:13.0641240Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-08-26T19:36:13.0642100Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-08-26T19:36:13.0643030Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0643810Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-08-26T19:36:13.0644680Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-08-26T19:36:13.0645630Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-08-26T19:36:13.0646760Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-08-26T19:36:13.0647870Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0648750Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-08-26T19:36:13.0649750Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-08-26T19:36:13.0651070Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-08-26T19:36:13.0652100Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-08-26T19:36:13.0653210Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0653980Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-08-26T19:36:13.0654920Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-08-26T19:36:13.0656140Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-08-26T19:36:13.0657290Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-08-26T19:36:13.0658290Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0659140Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-08-26T19:36:13.0660070Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-08-26T19:36:13.0661430Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-08-26T19:36:13.0662320Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-08-26T19:36:13.0663290Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0664030Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-08-26T19:36:13.0664860Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-08-26T19:36:13.0665810Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-08-26T19:36:13.0666790Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-08-26T19:36:13.0667830Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0668770Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-08-26T19:36:13.0669560Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-08-26T19:36:13.0670520Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-08-26T19:36:13.0671540Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-08-26T19:36:13.0672580Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0673440Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-08-26T19:36:13.0674350Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-08-26T19:36:13.0675590Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-08-26T19:36:13.0676520Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-08-26T19:36:13.0677480Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0678300Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-08-26T19:36:13.0679160Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-08-26T19:36:13.0680210Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-08-26T19:36:13.0681090Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-08-26T19:36:13.0682160Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0682940Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-08-26T19:36:13.0683750Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-08-26T19:36:13.0684690Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-08-26T19:36:13.0685560Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-08-26T19:36:13.0686510Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0687370Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-08-26T19:36:13.0688240Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-08-26T19:36:13.0689200Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-08-26T19:36:13.0690090Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-08-26T19:36:13.0691070Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0691850Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-08-26T19:36:13.0692670Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-08-26T19:36:13.0693630Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-08-26T19:36:13.0694510Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-08-26T19:36:13.0695530Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0696310Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-08-26T19:36:13.0697210Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-08-26T19:36:13.0698150Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-08-26T19:36:13.0699040Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-08-26T19:36:13.0699960Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0700740Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-08-26T19:36:13.0701580Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-08-26T19:36:13.0702520Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-08-26T19:36:13.0703360Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-08-26T19:36:13.0704300Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0705070Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-08-26T19:36:13.0705870Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-08-26T19:36:13.0706790Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-08-26T19:36:13.0707680Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-08-26T19:36:13.0708690Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0709530Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-08-26T19:36:13.0710300Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-08-26T19:36:13.0711220Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-08-26T19:36:13.0712270Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-08-26T19:36:13.0713320Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0714140Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-08-26T19:36:13.0715070Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-08-26T19:36:13.0716370Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-08-26T19:36:13.0717290Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-08-26T19:36:13.0718310Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0719130Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-08-26T19:36:13.0719990Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-08-26T19:36:13.0720920Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-08-26T19:36:13.0721770Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-08-26T19:36:13.0722690Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0723460Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-08-26T19:36:13.0724260Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-08-26T19:36:13.0725180Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-08-26T19:36:13.0726020Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-08-26T19:36:13.0726980Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0727760Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-08-26T19:36:13.0728560Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-08-26T19:36:13.0729490Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-08-26T19:36:13.0730370Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-08-26T19:36:13.0731320Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0732100Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-08-26T19:36:13.0732930Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-08-26T19:36:13.0733880Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-08-26T19:36:13.0734740Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-08-26T19:36:13.0735660Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-08-26T19:36:13.0736520Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-08-26T19:36:13.0737450Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-08-26T19:36:13.0738260Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-08-26T19:36:13.0739240Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0740000Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-08-26T19:36:13.0740970Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-08-26T19:36:13.0741800Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-08-26T19:36:13.0742780Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0743600Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-08-26T19:36:13.0744560Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0745320Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-08-26T19:36:13.0746230Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-08-26T19:36:13.0747060Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-08-26T19:36:13.0747950Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-08-26T19:36:13.0749170Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-08-26T19:36:13.0750220Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0751060Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-08-26T19:36:13.0751910Z adding 'torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h' 2025-08-26T19:36:13.0752870Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-08-26T19:36:13.0754260Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-08-26T19:36:13.0755560Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-08-26T19:36:13.0756680Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0757540Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-08-26T19:36:13.0758370Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-08-26T19:36:13.0759230Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2025-08-26T19:36:13.0760250Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-08-26T19:36:13.0761830Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-08-26T19:36:13.0762990Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-08-26T19:36:13.0764090Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0764940Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-08-26T19:36:13.0765760Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-08-26T19:36:13.0766590Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2025-08-26T19:36:13.0767600Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-08-26T19:36:13.0769200Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-08-26T19:36:13.0770040Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-08-26T19:36:13.0771060Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0771860Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-08-26T19:36:13.0772700Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-08-26T19:36:13.0773670Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-08-26T19:36:13.0774830Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-08-26T19:36:13.0775920Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0776760Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-08-26T19:36:13.0777610Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-08-26T19:36:13.0778560Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-08-26T19:36:13.0779750Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-08-26T19:36:13.0780600Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-08-26T19:36:13.0781520Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-08-26T19:36:13.0782430Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0783280Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-08-26T19:36:13.0784230Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-08-26T19:36:13.0785160Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0785970Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-08-26T19:36:13.0786770Z adding 'torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h' 2025-08-26T19:36:13.0787610Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-08-26T19:36:13.0788520Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-08-26T19:36:13.0789410Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-08-26T19:36:13.0790300Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-08-26T19:36:13.0791150Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-08-26T19:36:13.0792000Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-08-26T19:36:13.0792860Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-08-26T19:36:13.0793780Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-08-26T19:36:13.0794980Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-08-26T19:36:13.0796470Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0797400Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-08-26T19:36:13.0798220Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-08-26T19:36:13.0799070Z adding 'torch/include/ATen/ops/_fused_sgd_mps_dispatch.h' 2025-08-26T19:36:13.0800040Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-08-26T19:36:13.0801640Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-08-26T19:36:13.0802330Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-08-26T19:36:13.0803340Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0804160Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-08-26T19:36:13.0805110Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0806020Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0806760Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-08-26T19:36:13.0807700Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-08-26T19:36:13.0808520Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-08-26T19:36:13.0809410Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-08-26T19:36:13.0810310Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-08-26T19:36:13.0811260Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0812020Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-08-26T19:36:13.0812930Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-08-26T19:36:13.0813880Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-08-26T19:36:13.0814800Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-08-26T19:36:13.0815780Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0816550Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-08-26T19:36:13.0817500Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-08-26T19:36:13.0818480Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0819240Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-08-26T19:36:13.0820210Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-08-26T19:36:13.0821040Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-08-26T19:36:13.0821920Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-08-26T19:36:13.0822760Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-08-26T19:36:13.0823680Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-08-26T19:36:13.0824570Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-08-26T19:36:13.0825530Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0826270Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-08-26T19:36:13.0827160Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-08-26T19:36:13.0827960Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-08-26T19:36:13.0828910Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0829660Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-08-26T19:36:13.0830540Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-08-26T19:36:13.0831500Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-08-26T19:36:13.0832450Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0833250Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-08-26T19:36:13.0834070Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2025-08-26T19:36:13.0834930Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-08-26T19:36:13.0835910Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-08-26T19:36:13.0836850Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-08-26T19:36:13.0837860Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0838660Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-08-26T19:36:13.0839470Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2025-08-26T19:36:13.0840310Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-08-26T19:36:13.0841310Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-08-26T19:36:13.0842240Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-08-26T19:36:13.0843250Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0844050Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-08-26T19:36:13.0844860Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2025-08-26T19:36:13.0845700Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-08-26T19:36:13.0846670Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-08-26T19:36:13.0847590Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-08-26T19:36:13.0848590Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0849430Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-08-26T19:36:13.0850230Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-08-26T19:36:13.0851010Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-08-26T19:36:13.0851810Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2025-08-26T19:36:13.0852680Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-08-26T19:36:13.0853740Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-08-26T19:36:13.0854560Z adding 'torch/include/ATen/ops/_indices.h' 2025-08-26T19:36:13.0855440Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-08-26T19:36:13.0856430Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0857310Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0858040Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-08-26T19:36:13.0858950Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-08-26T19:36:13.0859760Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-08-26T19:36:13.0860650Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-08-26T19:36:13.0861550Z adding 'torch/include/ATen/ops/_indices_sparsemps_dispatch.h' 2025-08-26T19:36:13.0862370Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-08-26T19:36:13.0863270Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-08-26T19:36:13.0864090Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-08-26T19:36:13.0864910Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-08-26T19:36:13.0865840Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-08-26T19:36:13.0866690Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-08-26T19:36:13.0867630Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0868360Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-08-26T19:36:13.0869250Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-08-26T19:36:13.0870090Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-08-26T19:36:13.0871010Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0871740Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-08-26T19:36:13.0872580Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-08-26T19:36:13.0873410Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-08-26T19:36:13.0874340Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0875090Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-08-26T19:36:13.0875960Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-08-26T19:36:13.0876950Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-08-26T19:36:13.0877870Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-08-26T19:36:13.0878700Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-08-26T19:36:13.0879520Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-08-26T19:36:13.0880420Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-08-26T19:36:13.0881190Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-08-26T19:36:13.0882110Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0882830Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-08-26T19:36:13.0883700Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-08-26T19:36:13.0884550Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-08-26T19:36:13.0885500Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0886230Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-08-26T19:36:13.0887110Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-08-26T19:36:13.0887980Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-08-26T19:36:13.0888970Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0889740Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-08-26T19:36:13.0890580Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-08-26T19:36:13.0891400Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-08-26T19:36:13.0892280Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-08-26T19:36:13.0893100Z adding 'torch/include/ATen/ops/_linalg_det_mps_dispatch.h' 2025-08-26T19:36:13.0893950Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-08-26T19:36:13.0895000Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-08-26T19:36:13.0895900Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-08-26T19:36:13.0896970Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0897730Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-08-26T19:36:13.0898590Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-08-26T19:36:13.0899410Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-08-26T19:36:13.0900330Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-08-26T19:36:13.0901120Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-08-26T19:36:13.0902110Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-08-26T19:36:13.0902990Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-08-26T19:36:13.0903890Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-08-26T19:36:13.0904690Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-08-26T19:36:13.0905480Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-08-26T19:36:13.0906340Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-08-26T19:36:13.0907270Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-08-26T19:36:13.0908260Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0909070Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-08-26T19:36:13.0909870Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-08-26T19:36:13.0910680Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-08-26T19:36:13.0911540Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-08-26T19:36:13.0912350Z adding 'torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h' 2025-08-26T19:36:13.0913160Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-08-26T19:36:13.0914130Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-08-26T19:36:13.0915090Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-08-26T19:36:13.0916110Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0916890Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-08-26T19:36:13.0917750Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-08-26T19:36:13.0918560Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-08-26T19:36:13.0919430Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-08-26T19:36:13.0920310Z adding 'torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h' 2025-08-26T19:36:13.0921110Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-08-26T19:36:13.0922110Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-08-26T19:36:13.0923050Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-08-26T19:36:13.0924070Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0924860Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-08-26T19:36:13.0925720Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-08-26T19:36:13.0926530Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-08-26T19:36:13.0927400Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-08-26T19:36:13.0928220Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-08-26T19:36:13.0929220Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-08-26T19:36:13.0930070Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-08-26T19:36:13.0930980Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-08-26T19:36:13.0931790Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-08-26T19:36:13.0932590Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2025-08-26T19:36:13.0933400Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-08-26T19:36:13.0934280Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-08-26T19:36:13.0935180Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-08-26T19:36:13.0936080Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-08-26T19:36:13.0937100Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0937900Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-08-26T19:36:13.0938750Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-08-26T19:36:13.0939610Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-08-26T19:36:13.0940510Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-08-26T19:36:13.0941370Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2025-08-26T19:36:13.0942230Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-08-26T19:36:13.0943230Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-08-26T19:36:13.0944210Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0944980Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-08-26T19:36:13.0945790Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-08-26T19:36:13.0946660Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-08-26T19:36:13.0947550Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-08-26T19:36:13.0948350Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2025-08-26T19:36:13.0949210Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-08-26T19:36:13.0950200Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-08-26T19:36:13.0951160Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-08-26T19:36:13.0952120Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-08-26T19:36:13.0953020Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-08-26T19:36:13.0953830Z adding 'torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h' 2025-08-26T19:36:13.0954700Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-08-26T19:36:13.0955740Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-08-26T19:36:13.0956830Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-08-26T19:36:13.0957900Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0958840Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2025-08-26T19:36:13.0959750Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-08-26T19:36:13.0960810Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-08-26T19:36:13.0961690Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-08-26T19:36:13.0962640Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.0963370Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-08-26T19:36:13.0964300Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-08-26T19:36:13.0965230Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-08-26T19:36:13.0966170Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-08-26T19:36:13.0966990Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-08-26T19:36:13.0967960Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-08-26T19:36:13.0968820Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-08-26T19:36:13.0969820Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0970670Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-08-26T19:36:13.0971640Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0972520Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.0973240Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-08-26T19:36:13.0974200Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-08-26T19:36:13.0975050Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-08-26T19:36:13.0975910Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-08-26T19:36:13.0976870Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-08-26T19:36:13.0977850Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0978650Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-08-26T19:36:13.0979470Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-08-26T19:36:13.0980310Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-08-26T19:36:13.0981300Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-08-26T19:36:13.0982240Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-08-26T19:36:13.0983290Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0984060Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-08-26T19:36:13.0984870Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-08-26T19:36:13.0985700Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-08-26T19:36:13.0986680Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-08-26T19:36:13.0987490Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-08-26T19:36:13.0988440Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0989230Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-08-26T19:36:13.0990060Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-08-26T19:36:13.0990960Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-08-26T19:36:13.0991880Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-08-26T19:36:13.0992870Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-08-26T19:36:13.0993890Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0994670Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-08-26T19:36:13.0995470Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-08-26T19:36:13.0996300Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-08-26T19:36:13.0997280Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-08-26T19:36:13.0998220Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.0998990Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-08-26T19:36:13.1000160Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-08-26T19:36:13.1001040Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-08-26T19:36:13.1002030Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-08-26T19:36:13.1002930Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-08-26T19:36:13.1003840Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-08-26T19:36:13.1004660Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-08-26T19:36:13.1005580Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-08-26T19:36:13.1006430Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-08-26T19:36:13.1007390Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1008140Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-08-26T19:36:13.1009080Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-08-26T19:36:13.1009980Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-08-26T19:36:13.1010920Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1011880Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-08-26T19:36:13.1012750Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-08-26T19:36:13.1013760Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-08-26T19:36:13.1014960Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-08-26T19:36:13.1016050Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1016960Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2025-08-26T19:36:13.1022800Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-08-26T19:36:13.1023130Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-08-26T19:36:13.1023300Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-08-26T19:36:13.1023510Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1023670Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2025-08-26T19:36:13.1023800Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-08-26T19:36:13.1023920Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-08-26T19:36:13.1024770Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-08-26T19:36:13.1025780Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1026690Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-08-26T19:36:13.1028550Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-08-26T19:36:13.1029130Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2025-08-26T19:36:13.1030180Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-08-26T19:36:13.1031180Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-08-26T19:36:13.1032220Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1032990Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-08-26T19:36:13.1034060Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-08-26T19:36:13.1035290Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-08-26T19:36:13.1036370Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-08-26T19:36:13.1037420Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1038260Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-08-26T19:36:13.1039100Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-08-26T19:36:13.1040010Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-08-26T19:36:13.1041100Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-08-26T19:36:13.1041920Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-08-26T19:36:13.1042850Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1043640Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-08-26T19:36:13.1044580Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1045450Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1046170Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-08-26T19:36:13.1047090Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-08-26T19:36:13.1047910Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-08-26T19:36:13.1048790Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-08-26T19:36:13.1049700Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-08-26T19:36:13.1050580Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-08-26T19:36:13.1051410Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-08-26T19:36:13.1052260Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-08-26T19:36:13.1053110Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-08-26T19:36:13.1053970Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-08-26T19:36:13.1054930Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-08-26T19:36:13.1055910Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1056690Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-08-26T19:36:13.1057620Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-08-26T19:36:13.1058600Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1059350Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-08-26T19:36:13.1060190Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-08-26T19:36:13.1061000Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-08-26T19:36:13.1061950Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-08-26T19:36:13.1062950Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-08-26T19:36:13.1063770Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-08-26T19:36:13.1064760Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-08-26T19:36:13.1065550Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-08-26T19:36:13.1066350Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-08-26T19:36:13.1067220Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-08-26T19:36:13.1068030Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-08-26T19:36:13.1068820Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-08-26T19:36:13.1069740Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-08-26T19:36:13.1070620Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-08-26T19:36:13.1071460Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-08-26T19:36:13.1072420Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-08-26T19:36:13.1073250Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-08-26T19:36:13.1074050Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-08-26T19:36:13.1074870Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-08-26T19:36:13.1075690Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-08-26T19:36:13.1076440Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-08-26T19:36:13.1077270Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-08-26T19:36:13.1078090Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-08-26T19:36:13.1078870Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-08-26T19:36:13.1079720Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-08-26T19:36:13.1080510Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-08-26T19:36:13.1081380Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-08-26T19:36:13.1082360Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1083250Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1083960Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-08-26T19:36:13.1084890Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-08-26T19:36:13.1085610Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-08-26T19:36:13.1086470Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-08-26T19:36:13.1087370Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-08-26T19:36:13.1088220Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-08-26T19:36:13.1089120Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-08-26T19:36:13.1090000Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-08-26T19:36:13.1090810Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-08-26T19:36:13.1091700Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-08-26T19:36:13.1092590Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-08-26T19:36:13.1093570Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1094370Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-08-26T19:36:13.1095180Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-08-26T19:36:13.1096040Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-08-26T19:36:13.1096950Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-08-26T19:36:13.1097760Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-08-26T19:36:13.1098590Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-08-26T19:36:13.1099470Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-08-26T19:36:13.1100290Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-08-26T19:36:13.1101220Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-08-26T19:36:13.1102230Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-08-26T19:36:13.1103220Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1104010Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-08-26T19:36:13.1104990Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-08-26T19:36:13.1105840Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-08-26T19:36:13.1106790Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1107550Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-08-26T19:36:13.1108460Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-08-26T19:36:13.1109340Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-08-26T19:36:13.1110190Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-08-26T19:36:13.1111070Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-08-26T19:36:13.1111910Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-08-26T19:36:13.1112880Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1113650Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-08-26T19:36:13.1114560Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-08-26T19:36:13.1115390Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-08-26T19:36:13.1116340Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1117080Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-08-26T19:36:13.1117990Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-08-26T19:36:13.1118850Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-08-26T19:36:13.1119790Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-08-26T19:36:13.1120820Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1121750Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1122470Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-08-26T19:36:13.1123420Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-08-26T19:36:13.1124270Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-08-26T19:36:13.1125120Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-08-26T19:36:13.1125900Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-08-26T19:36:13.1126800Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-08-26T19:36:13.1127670Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-08-26T19:36:13.1128650Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-08-26T19:36:13.1129690Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1130640Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1131390Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-08-26T19:36:13.1132410Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-08-26T19:36:13.1133230Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-08-26T19:36:13.1134140Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-08-26T19:36:13.1135060Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-08-26T19:36:13.1136070Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1136860Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-08-26T19:36:13.1137800Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-08-26T19:36:13.1138590Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-08-26T19:36:13.1139530Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1140270Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-08-26T19:36:13.1141150Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-08-26T19:36:13.1142310Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-08-26T19:36:13.1143360Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1144160Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-08-26T19:36:13.1145130Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-08-26T19:36:13.1145900Z adding 'torch/include/ATen/ops/_nnz.h' 2025-08-26T19:36:13.1146750Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-08-26T19:36:13.1147630Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-08-26T19:36:13.1148540Z adding 'torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h' 2025-08-26T19:36:13.1149370Z adding 'torch/include/ATen/ops/_nnz_sparsemps_dispatch.h' 2025-08-26T19:36:13.1150260Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-08-26T19:36:13.1151220Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-08-26T19:36:13.1152200Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1152980Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-08-26T19:36:13.1153900Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-08-26T19:36:13.1154870Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1155670Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-08-26T19:36:13.1156620Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-08-26T19:36:13.1157500Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-08-26T19:36:13.1158460Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1159230Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-08-26T19:36:13.1160110Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-08-26T19:36:13.1161030Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-08-26T19:36:13.1161980Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1162760Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-08-26T19:36:13.1163630Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-08-26T19:36:13.1164530Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-08-26T19:36:13.1165490Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1166270Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-08-26T19:36:13.1167170Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-08-26T19:36:13.1168130Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-08-26T19:36:13.1169030Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-08-26T19:36:13.1169870Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-08-26T19:36:13.1170720Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-08-26T19:36:13.1171610Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-08-26T19:36:13.1172440Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-08-26T19:36:13.1173410Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1174200Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1174990Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1175830Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-08-26T19:36:13.1176770Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-08-26T19:36:13.1177630Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-08-26T19:36:13.1178590Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1179370Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-08-26T19:36:13.1180150Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-08-26T19:36:13.1180950Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-08-26T19:36:13.1181900Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-08-26T19:36:13.1182750Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-08-26T19:36:13.1183710Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1184490Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-08-26T19:36:13.1185390Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-08-26T19:36:13.1186230Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-08-26T19:36:13.1187100Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-08-26T19:36:13.1188010Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1188800Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1189610Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2025-08-26T19:36:13.1190460Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-08-26T19:36:13.1191360Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-08-26T19:36:13.1192210Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-08-26T19:36:13.1193010Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-08-26T19:36:13.1193800Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2025-08-26T19:36:13.1194620Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-08-26T19:36:13.1195520Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-08-26T19:36:13.1196340Z adding 'torch/include/ATen/ops/_print.h' 2025-08-26T19:36:13.1197360Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1198100Z adding 'torch/include/ATen/ops/_print_native.h' 2025-08-26T19:36:13.1198970Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-08-26T19:36:13.1199830Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-08-26T19:36:13.1200780Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1201570Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-08-26T19:36:13.1202410Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-08-26T19:36:13.1203300Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-08-26T19:36:13.1204290Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1205350Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-08-26T19:36:13.1206260Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-08-26T19:36:13.1207160Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-08-26T19:36:13.1208220Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-08-26T19:36:13.1209240Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1210140Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1210860Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-08-26T19:36:13.1211790Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-08-26T19:36:13.1212670Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-08-26T19:36:13.1213480Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-08-26T19:36:13.1214300Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-08-26T19:36:13.1215110Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2025-08-26T19:36:13.1215880Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-08-26T19:36:13.1216790Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-08-26T19:36:13.1217690Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-08-26T19:36:13.1218640Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1219390Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-08-26T19:36:13.1220270Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-08-26T19:36:13.1221110Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-08-26T19:36:13.1222060Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1222800Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-08-26T19:36:13.1223660Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-08-26T19:36:13.1224740Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-08-26T19:36:13.1225750Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1226560Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-08-26T19:36:13.1227370Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-08-26T19:36:13.1228370Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-08-26T19:36:13.1229240Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-08-26T19:36:13.1230190Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1230920Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-08-26T19:36:13.1231820Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-08-26T19:36:13.1232650Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-08-26T19:36:13.1233590Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1234350Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-08-26T19:36:13.1235230Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-08-26T19:36:13.1236120Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-08-26T19:36:13.1237070Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1237880Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-08-26T19:36:13.1238680Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-08-26T19:36:13.1239500Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-08-26T19:36:13.1240450Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-08-26T19:36:13.1241300Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-08-26T19:36:13.1242250Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1242990Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-08-26T19:36:13.1243860Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-08-26T19:36:13.1244800Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-08-26T19:36:13.1245780Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1246630Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-08-26T19:36:13.1247530Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h' 2025-08-26T19:36:13.1248370Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-08-26T19:36:13.1249320Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-08-26T19:36:13.1250160Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-08-26T19:36:13.1251120Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-08-26T19:36:13.1252060Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-08-26T19:36:13.1253200Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-08-26T19:36:13.1254160Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1255050Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-08-26T19:36:13.1256060Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-08-26T19:36:13.1256960Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-08-26T19:36:13.1257830Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-08-26T19:36:13.1258810Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-08-26T19:36:13.1259730Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-08-26T19:36:13.1260680Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-08-26T19:36:13.1261600Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1262460Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-08-26T19:36:13.1263450Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-08-26T19:36:13.1264320Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-08-26T19:36:13.1265180Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-08-26T19:36:13.1266130Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-08-26T19:36:13.1267030Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-08-26T19:36:13.1268100Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-08-26T19:36:13.1269080Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1269950Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-08-26T19:36:13.1270960Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-08-26T19:36:13.1271840Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-08-26T19:36:13.1272730Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-08-26T19:36:13.1273660Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-08-26T19:36:13.1274560Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1275440Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-08-26T19:36:13.1276400Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-08-26T19:36:13.1277280Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-08-26T19:36:13.1278110Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-08-26T19:36:13.1279100Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-08-26T19:36:13.1279950Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-08-26T19:36:13.1280890Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-08-26T19:36:13.1281850Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-08-26T19:36:13.1282960Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-08-26T19:36:13.1284050Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1284880Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-08-26T19:36:13.1285920Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-08-26T19:36:13.1286870Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1287650Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-08-26T19:36:13.1288620Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-08-26T19:36:13.1289440Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-08-26T19:36:13.1290350Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-08-26T19:36:13.1291170Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-08-26T19:36:13.1292110Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-08-26T19:36:13.1293070Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-08-26T19:36:13.1294010Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-08-26T19:36:13.1294880Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-08-26T19:36:13.1295780Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-08-26T19:36:13.1296810Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-08-26T19:36:13.1297850Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-08-26T19:36:13.1298880Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1299730Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1300550Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1301420Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-08-26T19:36:13.1302430Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-08-26T19:36:13.1303280Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-08-26T19:36:13.1304200Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1304950Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-08-26T19:36:13.1305820Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-08-26T19:36:13.1307510Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-08-26T19:36:13.1308580Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1309500Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1310390Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1311310Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-08-26T19:36:13.1312440Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-08-26T19:36:13.1313650Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-08-26T19:36:13.1314620Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-08-26T19:36:13.1315520Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-08-26T19:36:13.1316380Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-08-26T19:36:13.1317410Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-08-26T19:36:13.1318250Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-08-26T19:36:13.1319220Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1319990Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-08-26T19:36:13.1320910Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-08-26T19:36:13.1321750Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-08-26T19:36:13.1322710Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1323470Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-08-26T19:36:13.1324380Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-08-26T19:36:13.1325240Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-08-26T19:36:13.1326290Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1326970Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-08-26T19:36:13.1327830Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-08-26T19:36:13.1328690Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-08-26T19:36:13.1329610Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1330340Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-08-26T19:36:13.1331290Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-08-26T19:36:13.1332180Z adding 'torch/include/ATen/ops/_softmax.h' 2025-08-26T19:36:13.1333160Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-08-26T19:36:13.1334180Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1334950Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-08-26T19:36:13.1335790Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-08-26T19:36:13.1336620Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-08-26T19:36:13.1337470Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-08-26T19:36:13.1338270Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2025-08-26T19:36:13.1339140Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-08-26T19:36:13.1340100Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-08-26T19:36:13.1341060Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1341800Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-08-26T19:36:13.1342630Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-08-26T19:36:13.1343450Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-08-26T19:36:13.1344270Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-08-26T19:36:13.1345060Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2025-08-26T19:36:13.1345910Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-08-26T19:36:13.1346840Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-08-26T19:36:13.1347760Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-08-26T19:36:13.1348730Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1349500Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-08-26T19:36:13.1350460Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-08-26T19:36:13.1351370Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-08-26T19:36:13.1352220Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-08-26T19:36:13.1353190Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1354110Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1354830Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-08-26T19:36:13.1355750Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-08-26T19:36:13.1356570Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-08-26T19:36:13.1357490Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-08-26T19:36:13.1358410Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-08-26T19:36:13.1359460Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1360300Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-08-26T19:36:13.1361320Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-08-26T19:36:13.1362300Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-08-26T19:36:13.1363300Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1364070Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-08-26T19:36:13.1364990Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-08-26T19:36:13.1366120Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-08-26T19:36:13.1367160Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1367940Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-08-26T19:36:13.1368880Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-08-26T19:36:13.1369830Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-08-26T19:36:13.1370830Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1371620Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-08-26T19:36:13.1372560Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-08-26T19:36:13.1373640Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-08-26T19:36:13.1374690Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1375460Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-08-26T19:36:13.1376390Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-08-26T19:36:13.1377370Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-08-26T19:36:13.1378790Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-08-26T19:36:13.1379860Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1380740Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-08-26T19:36:13.1381640Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-08-26T19:36:13.1382660Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-08-26T19:36:13.1383650Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h' 2025-08-26T19:36:13.1384540Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1385370Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-08-26T19:36:13.1386190Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-08-26T19:36:13.1387170Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-08-26T19:36:13.1388130Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h' 2025-08-26T19:36:13.1388980Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-08-26T19:36:13.1389960Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1390720Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-08-26T19:36:13.1391650Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-08-26T19:36:13.1392520Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-08-26T19:36:13.1393500Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1394270Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-08-26T19:36:13.1395230Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-08-26T19:36:13.1396140Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-08-26T19:36:13.1397100Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1397890Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-08-26T19:36:13.1398830Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-08-26T19:36:13.1399780Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-08-26T19:36:13.1400760Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1401540Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-08-26T19:36:13.1402440Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-08-26T19:36:13.1403350Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-08-26T19:36:13.1404310Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-08-26T19:36:13.1405290Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1406040Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-08-26T19:36:13.1407100Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-08-26T19:36:13.1407950Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1408810Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1409580Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-08-26T19:36:13.1410610Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-08-26T19:36:13.1411500Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-08-26T19:36:13.1412460Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1413220Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-08-26T19:36:13.1414160Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-08-26T19:36:13.1415330Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-08-26T19:36:13.1416320Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1417070Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-08-26T19:36:13.1417980Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-08-26T19:36:13.1418850Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-08-26T19:36:13.1419760Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-08-26T19:36:13.1420620Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-08-26T19:36:13.1421560Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-08-26T19:36:13.1422360Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-08-26T19:36:13.1423240Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-08-26T19:36:13.1424140Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-08-26T19:36:13.1425040Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-08-26T19:36:13.1425890Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-08-26T19:36:13.1426840Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-08-26T19:36:13.1427660Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-08-26T19:36:13.1428570Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-08-26T19:36:13.1429410Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-08-26T19:36:13.1430310Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-08-26T19:36:13.1431110Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-08-26T19:36:13.1432020Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-08-26T19:36:13.1432830Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-08-26T19:36:13.1433700Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-08-26T19:36:13.1434580Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-08-26T19:36:13.1435490Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-08-26T19:36:13.1436310Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-08-26T19:36:13.1437230Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-08-26T19:36:13.1438110Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-08-26T19:36:13.1438980Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-08-26T19:36:13.1439790Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-08-26T19:36:13.1440770Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-08-26T19:36:13.1441620Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-08-26T19:36:13.1442530Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-08-26T19:36:13.1443330Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-08-26T19:36:13.1444240Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-08-26T19:36:13.1445130Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-08-26T19:36:13.1446060Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-08-26T19:36:13.1447050Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1447800Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-08-26T19:36:13.1448770Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-08-26T19:36:13.1449670Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1450540Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1451330Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-08-26T19:36:13.1452380Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-08-26T19:36:13.1453270Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-08-26T19:36:13.1454250Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1454990Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-08-26T19:36:13.1455930Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-08-26T19:36:13.1456820Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-08-26T19:36:13.1457730Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-08-26T19:36:13.1458680Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1459450Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-08-26T19:36:13.1460410Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-08-26T19:36:13.1461350Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1462200Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1463010Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-08-26T19:36:13.1464050Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-08-26T19:36:13.1464970Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-08-26T19:36:13.1465930Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1466740Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-08-26T19:36:13.1467560Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-08-26T19:36:13.1468540Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-08-26T19:36:13.1469370Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-08-26T19:36:13.1470200Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-08-26T19:36:13.1471080Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-08-26T19:36:13.1471930Z adding 'torch/include/ATen/ops/_stack.h' 2025-08-26T19:36:13.1472880Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1473680Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-08-26T19:36:13.1474510Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-08-26T19:36:13.1475430Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-08-26T19:36:13.1476340Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-08-26T19:36:13.1477280Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1478080Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-08-26T19:36:13.1478900Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-08-26T19:36:13.1479740Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-08-26T19:36:13.1480710Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1481480Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-08-26T19:36:13.1482280Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-08-26T19:36:13.1483100Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-08-26T19:36:13.1484010Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-08-26T19:36:13.1484840Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-08-26T19:36:13.1485780Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-08-26T19:36:13.1486680Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-08-26T19:36:13.1487660Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1488400Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-08-26T19:36:13.1489330Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-08-26T19:36:13.1490240Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-08-26T19:36:13.1491210Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1492070Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1492830Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-08-26T19:36:13.1493790Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-08-26T19:36:13.1494680Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-08-26T19:36:13.1495590Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1496380Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-08-26T19:36:13.1497340Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1498250Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1498950Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-08-26T19:36:13.1499900Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-08-26T19:36:13.1500670Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-08-26T19:36:13.1501550Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-08-26T19:36:13.1502310Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-08-26T19:36:13.1503230Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1503980Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-08-26T19:36:13.1504850Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-08-26T19:36:13.1505730Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-08-26T19:36:13.1506680Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1507470Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-08-26T19:36:13.1508270Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-08-26T19:36:13.1509200Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-08-26T19:36:13.1510090Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-08-26T19:36:13.1511060Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1511870Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-08-26T19:36:13.1512630Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-08-26T19:36:13.1513560Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-08-26T19:36:13.1514430Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-08-26T19:36:13.1515400Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1516160Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-08-26T19:36:13.1521130Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-08-26T19:36:13.1521340Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-08-26T19:36:13.1521440Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-08-26T19:36:13.1521640Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1521770Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-08-26T19:36:13.1521890Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-08-26T19:36:13.1522010Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-08-26T19:36:13.1522880Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-08-26T19:36:13.1523840Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1524590Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-08-26T19:36:13.1525460Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-08-26T19:36:13.1526300Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-08-26T19:36:13.1527240Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1527980Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-08-26T19:36:13.1528860Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-08-26T19:36:13.1529670Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-08-26T19:36:13.1530630Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1531370Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-08-26T19:36:13.1532250Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-08-26T19:36:13.1533120Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-08-26T19:36:13.1534070Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1534840Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-08-26T19:36:13.1535780Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-08-26T19:36:13.1536700Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-08-26T19:36:13.1537650Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1538420Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-08-26T19:36:13.1539340Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-08-26T19:36:13.1540220Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-08-26T19:36:13.1541220Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1541980Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-08-26T19:36:13.1542950Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-08-26T19:36:13.1543870Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-08-26T19:36:13.1544850Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-08-26T19:36:13.1545850Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1546680Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1547490Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-08-26T19:36:13.1548510Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-08-26T19:36:13.1549450Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1550260Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-08-26T19:36:13.1551100Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-08-26T19:36:13.1552090Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-08-26T19:36:13.1553060Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-08-26T19:36:13.1553980Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-08-26T19:36:13.1554940Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1555840Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-08-26T19:36:13.1556920Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1557720Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-08-26T19:36:13.1558630Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-08-26T19:36:13.1559700Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-08-26T19:36:13.1560590Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-08-26T19:36:13.1561570Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-08-26T19:36:13.1562580Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1563360Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-08-26T19:36:13.1564190Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-08-26T19:36:13.1565230Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-08-26T19:36:13.1566600Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-08-26T19:36:13.1567250Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1568050Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-08-26T19:36:13.1569030Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-08-26T19:36:13.1569880Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-08-26T19:36:13.1570830Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1571560Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-08-26T19:36:13.1572480Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-08-26T19:36:13.1573330Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-08-26T19:36:13.1574300Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1575060Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-08-26T19:36:13.1576020Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-08-26T19:36:13.1576980Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-08-26T19:36:13.1577860Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-08-26T19:36:13.1578850Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1579620Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-08-26T19:36:13.1580460Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-08-26T19:36:13.1581290Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-08-26T19:36:13.1582220Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-08-26T19:36:13.1583100Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-08-26T19:36:13.1584030Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1584810Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-08-26T19:36:13.1585610Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-08-26T19:36:13.1586450Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-08-26T19:36:13.1587360Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-08-26T19:36:13.1588340Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1589150Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-08-26T19:36:13.1589980Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-08-26T19:36:13.1590920Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1591710Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-08-26T19:36:13.1592510Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-08-26T19:36:13.1593330Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-08-26T19:36:13.1594280Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-08-26T19:36:13.1595110Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-08-26T19:36:13.1596100Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1596860Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-08-26T19:36:13.1597670Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-08-26T19:36:13.1598490Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-08-26T19:36:13.1599410Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-08-26T19:36:13.1600280Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-08-26T19:36:13.1601120Z adding 'torch/include/ATen/ops/_to_sparse_mps_dispatch.h' 2025-08-26T19:36:13.1602000Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-08-26T19:36:13.1603070Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-08-26T19:36:13.1603950Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-08-26T19:36:13.1604820Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-08-26T19:36:13.1605630Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-08-26T19:36:13.1606510Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-08-26T19:36:13.1607350Z adding 'torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h' 2025-08-26T19:36:13.1608240Z adding 'torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h' 2025-08-26T19:36:13.1609170Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-08-26T19:36:13.1610150Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1610960Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-08-26T19:36:13.1611780Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-08-26T19:36:13.1612610Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-08-26T19:36:13.1613590Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-08-26T19:36:13.1614690Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-08-26T19:36:13.1615760Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1616610Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-08-26T19:36:13.1617490Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-08-26T19:36:13.1618710Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-08-26T19:36:13.1619890Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-08-26T19:36:13.1620800Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-08-26T19:36:13.1621820Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1622740Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1623500Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-08-26T19:36:13.1624510Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-08-26T19:36:13.1625560Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-08-26T19:36:13.1626560Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1627390Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-08-26T19:36:13.1628230Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-08-26T19:36:13.1629260Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-08-26T19:36:13.1630200Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-08-26T19:36:13.1631150Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1631950Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-08-26T19:36:13.1632780Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-08-26T19:36:13.1633710Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-08-26T19:36:13.1634580Z adding 'torch/include/ATen/ops/_unique.h' 2025-08-26T19:36:13.1635500Z adding 'torch/include/ATen/ops/_unique2.h' 2025-08-26T19:36:13.1636500Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1637310Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-08-26T19:36:13.1638110Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-08-26T19:36:13.1638890Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2025-08-26T19:36:13.1639740Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-08-26T19:36:13.1640790Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-08-26T19:36:13.1642260Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1643180Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-08-26T19:36:13.1644100Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-08-26T19:36:13.1645070Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-08-26T19:36:13.1646120Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-08-26T19:36:13.1647040Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-08-26T19:36:13.1648040Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1648830Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-08-26T19:36:13.1649760Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-08-26T19:36:13.1650660Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-08-26T19:36:13.1651640Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1652460Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-08-26T19:36:13.1653320Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-08-26T19:36:13.1654210Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-08-26T19:36:13.1655190Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1655960Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-08-26T19:36:13.1656910Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-08-26T19:36:13.1657790Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-08-26T19:36:13.1658770Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1659530Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-08-26T19:36:13.1660450Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-08-26T19:36:13.1661390Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-08-26T19:36:13.1662390Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1663110Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-08-26T19:36:13.1664040Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-08-26T19:36:13.1665000Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-08-26T19:36:13.1666030Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1666790Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-08-26T19:36:13.1667720Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-08-26T19:36:13.1669010Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-08-26T19:36:13.1670290Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-08-26T19:36:13.1671370Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1672230Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1673190Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1674050Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-08-26T19:36:13.1674980Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-08-26T19:36:13.1675880Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-08-26T19:36:13.1676900Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-08-26T19:36:13.1677910Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1678790Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1679640Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-08-26T19:36:13.1680530Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-08-26T19:36:13.1681360Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-08-26T19:36:13.1682270Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-08-26T19:36:13.1683120Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h' 2025-08-26T19:36:13.1684000Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-08-26T19:36:13.1685040Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-08-26T19:36:13.1686300Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-08-26T19:36:13.1687570Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-08-26T19:36:13.1688660Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1689480Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1690410Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1691290Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-08-26T19:36:13.1692210Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-08-26T19:36:13.1693070Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-08-26T19:36:13.1694090Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-08-26T19:36:13.1695080Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1695920Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1696760Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-08-26T19:36:13.1697620Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-08-26T19:36:13.1698470Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-08-26T19:36:13.1699340Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-08-26T19:36:13.1700190Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h' 2025-08-26T19:36:13.1701090Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-08-26T19:36:13.1702150Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-08-26T19:36:13.1703350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-08-26T19:36:13.1704570Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-08-26T19:36:13.1705670Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1706500Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1707400Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1708250Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-08-26T19:36:13.1709140Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-08-26T19:36:13.1709980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2025-08-26T19:36:13.1710870Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-08-26T19:36:13.1711860Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-08-26T19:36:13.1712850Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1713700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1714560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-08-26T19:36:13.1715420Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-08-26T19:36:13.1716270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-08-26T19:36:13.1717160Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-08-26T19:36:13.1718000Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2025-08-26T19:36:13.1718880Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-08-26T19:36:13.1719890Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-08-26T19:36:13.1721110Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-08-26T19:36:13.1722350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-08-26T19:36:13.1723410Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1724250Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1725160Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1726010Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-08-26T19:36:13.1726950Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-08-26T19:36:13.1727810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.1728700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-08-26T19:36:13.1729720Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-08-26T19:36:13.1730720Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1731560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1732420Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-08-26T19:36:13.1733290Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-08-26T19:36:13.1734150Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-08-26T19:36:13.1735020Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-08-26T19:36:13.1735870Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2025-08-26T19:36:13.1736790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-08-26T19:36:13.1737810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-08-26T19:36:13.1739100Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-08-26T19:36:13.1740730Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-08-26T19:36:13.1741480Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1742320Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1743240Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1744090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-08-26T19:36:13.1745010Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-08-26T19:36:13.1745910Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h' 2025-08-26T19:36:13.1746790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-08-26T19:36:13.1747790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-08-26T19:36:13.1748780Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1749630Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1750490Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-08-26T19:36:13.1751370Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-08-26T19:36:13.1752220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-08-26T19:36:13.1753130Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-08-26T19:36:13.1753980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h' 2025-08-26T19:36:13.1754900Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-08-26T19:36:13.1755930Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-08-26T19:36:13.1756840Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-08-26T19:36:13.1757750Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-08-26T19:36:13.1758590Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-08-26T19:36:13.1759600Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-08-26T19:36:13.1760480Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-08-26T19:36:13.1761470Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1762220Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-08-26T19:36:13.1763130Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-08-26T19:36:13.1763990Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-08-26T19:36:13.1764890Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-08-26T19:36:13.1765740Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-08-26T19:36:13.1766610Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-08-26T19:36:13.1767610Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-08-26T19:36:13.1768520Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-08-26T19:36:13.1769570Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1770370Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-08-26T19:36:13.1771330Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-08-26T19:36:13.1772280Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-08-26T19:36:13.1773250Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1774080Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-08-26T19:36:13.1775020Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-08-26T19:36:13.1775890Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-08-26T19:36:13.1776890Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1777660Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-08-26T19:36:13.1778610Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-08-26T19:36:13.1779480Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-08-26T19:36:13.1780450Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1781210Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-08-26T19:36:13.1782150Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-08-26T19:36:13.1783020Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-08-26T19:36:13.1783970Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1784700Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-08-26T19:36:13.1785640Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-08-26T19:36:13.1786460Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-08-26T19:36:13.1787420Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1788190Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-08-26T19:36:13.1789120Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-08-26T19:36:13.1790020Z adding 'torch/include/ATen/ops/_values.h' 2025-08-26T19:36:13.1790970Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-08-26T19:36:13.1791980Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1792940Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1793740Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-08-26T19:36:13.1794720Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-08-26T19:36:13.1795610Z adding 'torch/include/ATen/ops/_values_native.h' 2025-08-26T19:36:13.1796500Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-08-26T19:36:13.1797400Z adding 'torch/include/ATen/ops/_values_sparsemps_dispatch.h' 2025-08-26T19:36:13.1798170Z adding 'torch/include/ATen/ops/_version.h' 2025-08-26T19:36:13.1799150Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1799850Z adding 'torch/include/ATen/ops/_version_native.h' 2025-08-26T19:36:13.1800730Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-08-26T19:36:13.1801600Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-08-26T19:36:13.1802510Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-08-26T19:36:13.1803340Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-08-26T19:36:13.1804240Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-08-26T19:36:13.1805080Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-08-26T19:36:13.1805980Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-08-26T19:36:13.1806840Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2025-08-26T19:36:13.1807650Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-08-26T19:36:13.1808550Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-08-26T19:36:13.1809490Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-08-26T19:36:13.1810310Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-08-26T19:36:13.1811260Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-08-26T19:36:13.1812120Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-08-26T19:36:13.1813010Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-08-26T19:36:13.1813830Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h' 2025-08-26T19:36:13.1814640Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2025-08-26T19:36:13.1815490Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-08-26T19:36:13.1816370Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-08-26T19:36:13.1817200Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-08-26T19:36:13.1818180Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1819010Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-08-26T19:36:13.1820000Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1820760Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-08-26T19:36:13.1821670Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-08-26T19:36:13.1822560Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-08-26T19:36:13.1823600Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-08-26T19:36:13.1824570Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1825380Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1826200Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1827060Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2025-08-26T19:36:13.1827900Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-08-26T19:36:13.1828890Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-08-26T19:36:13.1829850Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1831010Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-08-26T19:36:13.1831870Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-08-26T19:36:13.1832640Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2025-08-26T19:36:13.1833470Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-08-26T19:36:13.1834440Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-08-26T19:36:13.1835250Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-08-26T19:36:13.1836170Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-08-26T19:36:13.1837020Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-08-26T19:36:13.1838000Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1838750Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-08-26T19:36:13.1839660Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-08-26T19:36:13.1840580Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-08-26T19:36:13.1841570Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1842330Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-08-26T19:36:13.1843260Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-08-26T19:36:13.1844070Z adding 'torch/include/ATen/ops/abs.h' 2025-08-26T19:36:13.1845030Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1845800Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-08-26T19:36:13.1846600Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-08-26T19:36:13.1847390Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2025-08-26T19:36:13.1848250Z adding 'torch/include/ATen/ops/abs_native.h' 2025-08-26T19:36:13.1849220Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-08-26T19:36:13.1850090Z adding 'torch/include/ATen/ops/absolute.h' 2025-08-26T19:36:13.1851060Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1851800Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-08-26T19:36:13.1852740Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-08-26T19:36:13.1853620Z adding 'torch/include/ATen/ops/acos.h' 2025-08-26T19:36:13.1854600Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1855330Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-08-26T19:36:13.1856150Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-08-26T19:36:13.1856980Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-08-26T19:36:13.1857800Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-08-26T19:36:13.1858600Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2025-08-26T19:36:13.1859420Z adding 'torch/include/ATen/ops/acos_native.h' 2025-08-26T19:36:13.1860360Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-08-26T19:36:13.1861220Z adding 'torch/include/ATen/ops/acosh.h' 2025-08-26T19:36:13.1862220Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1862940Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-08-26T19:36:13.1863770Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-08-26T19:36:13.1864560Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-08-26T19:36:13.1865400Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-08-26T19:36:13.1866230Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2025-08-26T19:36:13.1867030Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-08-26T19:36:13.1867970Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-08-26T19:36:13.1868880Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-08-26T19:36:13.1869860Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1870720Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1871460Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-08-26T19:36:13.1872400Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-08-26T19:36:13.1873460Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-08-26T19:36:13.1874460Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1875320Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-08-26T19:36:13.1876170Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-08-26T19:36:13.1876960Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2025-08-26T19:36:13.1877800Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-08-26T19:36:13.1878730Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-08-26T19:36:13.1879770Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-08-26T19:36:13.1880690Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-08-26T19:36:13.1881590Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1882420Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1883220Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-08-26T19:36:13.1884130Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-08-26T19:36:13.1885050Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1885830Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-08-26T19:36:13.1886650Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-08-26T19:36:13.1887460Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-08-26T19:36:13.1888420Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-08-26T19:36:13.1889320Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-08-26T19:36:13.1890250Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1891020Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-08-26T19:36:13.1891910Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-08-26T19:36:13.1892820Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-08-26T19:36:13.1893750Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-08-26T19:36:13.1894780Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1895550Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1896380Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1897200Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-08-26T19:36:13.1898070Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-08-26T19:36:13.1898890Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.1899760Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-08-26T19:36:13.1900720Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-08-26T19:36:13.1901700Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1902470Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-08-26T19:36:13.1903290Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-08-26T19:36:13.1904100Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-08-26T19:36:13.1904960Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-08-26T19:36:13.1905750Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2025-08-26T19:36:13.1906580Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-08-26T19:36:13.1907560Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-08-26T19:36:13.1908480Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-08-26T19:36:13.1909400Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-08-26T19:36:13.1910410Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1911150Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.1912000Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.1912790Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-08-26T19:36:13.1913680Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-08-26T19:36:13.1914590Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-08-26T19:36:13.1915580Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-08-26T19:36:13.1916640Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1917430Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-08-26T19:36:13.1918320Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-08-26T19:36:13.1919210Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-08-26T19:36:13.1920120Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-08-26T19:36:13.1920940Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-08-26T19:36:13.1921910Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-08-26T19:36:13.1922820Z adding 'torch/include/ATen/ops/add.h' 2025-08-26T19:36:13.1923810Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1924720Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1925520Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-08-26T19:36:13.1926320Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-08-26T19:36:13.1927160Z adding 'torch/include/ATen/ops/add_meta.h' 2025-08-26T19:36:13.1928000Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-08-26T19:36:13.1928810Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2025-08-26T19:36:13.1929790Z adding 'torch/include/ATen/ops/add_native.h' 2025-08-26T19:36:13.1930930Z adding 'torch/include/ATen/ops/add_ops.h' 2025-08-26T19:36:13.1931920Z adding 'torch/include/ATen/ops/addbmm.h' 2025-08-26T19:36:13.1932860Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-08-26T19:36:13.1933710Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-08-26T19:36:13.1934580Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-08-26T19:36:13.1935410Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2025-08-26T19:36:13.1936320Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-08-26T19:36:13.1937360Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-08-26T19:36:13.1938280Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-08-26T19:36:13.1939310Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1940090Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-08-26T19:36:13.1940900Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-08-26T19:36:13.1941720Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-08-26T19:36:13.1942590Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-08-26T19:36:13.1943390Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2025-08-26T19:36:13.1944260Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-08-26T19:36:13.1945310Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-08-26T19:36:13.1946240Z adding 'torch/include/ATen/ops/addcmul.h' 2025-08-26T19:36:13.1947200Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1947960Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-08-26T19:36:13.1948780Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-08-26T19:36:13.1949600Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-08-26T19:36:13.1950430Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-08-26T19:36:13.1951210Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2025-08-26T19:36:13.1952050Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-08-26T19:36:13.1953080Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-08-26T19:36:13.1954160Z adding 'torch/include/ATen/ops/addmm.h' 2025-08-26T19:36:13.1955290Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1956080Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-08-26T19:36:13.1957080Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-08-26T19:36:13.1957940Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-08-26T19:36:13.1958790Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-08-26T19:36:13.1959600Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2025-08-26T19:36:13.1960590Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-08-26T19:36:13.1961720Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-08-26T19:36:13.1962660Z adding 'torch/include/ATen/ops/addmv.h' 2025-08-26T19:36:13.1963650Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1964420Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-08-26T19:36:13.1965250Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-08-26T19:36:13.1966090Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-08-26T19:36:13.1966910Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-08-26T19:36:13.1967720Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2025-08-26T19:36:13.1968580Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-08-26T19:36:13.1969600Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-08-26T19:36:13.1970550Z adding 'torch/include/ATen/ops/addr.h' 2025-08-26T19:36:13.1971490Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1972280Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-08-26T19:36:13.1973130Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-08-26T19:36:13.1973930Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2025-08-26T19:36:13.1974790Z adding 'torch/include/ATen/ops/addr_native.h' 2025-08-26T19:36:13.1975800Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-08-26T19:36:13.1976650Z adding 'torch/include/ATen/ops/adjoint.h' 2025-08-26T19:36:13.1977600Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1978340Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-08-26T19:36:13.1979220Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-08-26T19:36:13.1980300Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-08-26T19:36:13.1981270Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-08-26T19:36:13.1982260Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1983020Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-08-26T19:36:13.1983920Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-08-26T19:36:13.1984890Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1985650Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-08-26T19:36:13.1986600Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-08-26T19:36:13.1987430Z adding 'torch/include/ATen/ops/alias.h' 2025-08-26T19:36:13.1988360Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1989150Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-08-26T19:36:13.1990130Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.1991010Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.1991700Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-08-26T19:36:13.1992620Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-08-26T19:36:13.1993420Z adding 'torch/include/ATen/ops/alias_native.h' 2025-08-26T19:36:13.1994320Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-08-26T19:36:13.1995170Z adding 'torch/include/ATen/ops/align_as.h' 2025-08-26T19:36:13.1996180Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.1996980Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-08-26T19:36:13.1997910Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-08-26T19:36:13.1998770Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-08-26T19:36:13.1999750Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2000480Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-08-26T19:36:13.2001360Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-08-26T19:36:13.2002200Z adding 'torch/include/ATen/ops/align_to.h' 2025-08-26T19:36:13.2003210Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2004000Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-08-26T19:36:13.2005020Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-08-26T19:36:13.2006060Z adding 'torch/include/ATen/ops/all.h' 2025-08-26T19:36:13.2007050Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2007960Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2008780Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2009620Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-08-26T19:36:13.2010500Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-08-26T19:36:13.2011360Z adding 'torch/include/ATen/ops/all_meta.h' 2025-08-26T19:36:13.2012230Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-08-26T19:36:13.2013080Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2025-08-26T19:36:13.2014000Z adding 'torch/include/ATen/ops/all_native.h' 2025-08-26T19:36:13.2015190Z adding 'torch/include/ATen/ops/all_ops.h' 2025-08-26T19:36:13.2016080Z adding 'torch/include/ATen/ops/allclose.h' 2025-08-26T19:36:13.2017050Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2017780Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-08-26T19:36:13.2018690Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-08-26T19:36:13.2024320Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-08-26T19:36:13.2024530Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2024630Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-08-26T19:36:13.2024720Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-08-26T19:36:13.2024790Z adding 'torch/include/ATen/ops/amax.h' 2025-08-26T19:36:13.2024980Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2025200Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-08-26T19:36:13.2026470Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-08-26T19:36:13.2027490Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-08-26T19:36:13.2028870Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-08-26T19:36:13.2029760Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2025-08-26T19:36:13.2030650Z adding 'torch/include/ATen/ops/amax_native.h' 2025-08-26T19:36:13.2031690Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-08-26T19:36:13.2032730Z adding 'torch/include/ATen/ops/amin.h' 2025-08-26T19:36:13.2033790Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2034600Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-08-26T19:36:13.2035470Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-08-26T19:36:13.2036740Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-08-26T19:36:13.2037620Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-08-26T19:36:13.2038430Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2025-08-26T19:36:13.2039280Z adding 'torch/include/ATen/ops/amin_native.h' 2025-08-26T19:36:13.2040350Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-08-26T19:36:13.2041320Z adding 'torch/include/ATen/ops/aminmax.h' 2025-08-26T19:36:13.2042370Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2043180Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-08-26T19:36:13.2044090Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-08-26T19:36:13.2044950Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-08-26T19:36:13.2045810Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-08-26T19:36:13.2046660Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2025-08-26T19:36:13.2047570Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-08-26T19:36:13.2048590Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-08-26T19:36:13.2049480Z adding 'torch/include/ATen/ops/and.h' 2025-08-26T19:36:13.2050450Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2051300Z adding 'torch/include/ATen/ops/and_native.h' 2025-08-26T19:36:13.2052340Z adding 'torch/include/ATen/ops/and_ops.h' 2025-08-26T19:36:13.2053240Z adding 'torch/include/ATen/ops/angle.h' 2025-08-26T19:36:13.2054130Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-08-26T19:36:13.2055020Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-08-26T19:36:13.2055850Z adding 'torch/include/ATen/ops/angle_mps_dispatch.h' 2025-08-26T19:36:13.2056660Z adding 'torch/include/ATen/ops/angle_native.h' 2025-08-26T19:36:13.2057600Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-08-26T19:36:13.2058740Z adding 'torch/include/ATen/ops/any.h' 2025-08-26T19:36:13.2059780Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2060660Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2061530Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2062460Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-08-26T19:36:13.2063350Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-08-26T19:36:13.2064210Z adding 'torch/include/ATen/ops/any_meta.h' 2025-08-26T19:36:13.2065110Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-08-26T19:36:13.2066080Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2025-08-26T19:36:13.2067010Z adding 'torch/include/ATen/ops/any_native.h' 2025-08-26T19:36:13.2068220Z adding 'torch/include/ATen/ops/any_ops.h' 2025-08-26T19:36:13.2069350Z adding 'torch/include/ATen/ops/arange.h' 2025-08-26T19:36:13.2070490Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2071300Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-08-26T19:36:13.2072140Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-08-26T19:36:13.2072940Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-08-26T19:36:13.2073880Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2025-08-26T19:36:13.2074760Z adding 'torch/include/ATen/ops/arange_native.h' 2025-08-26T19:36:13.2075950Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-08-26T19:36:13.2076870Z adding 'torch/include/ATen/ops/arccos.h' 2025-08-26T19:36:13.2077960Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2078750Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-08-26T19:36:13.2079730Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-08-26T19:36:13.2080620Z adding 'torch/include/ATen/ops/arccosh.h' 2025-08-26T19:36:13.2081670Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2082450Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-08-26T19:36:13.2083390Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-08-26T19:36:13.2084260Z adding 'torch/include/ATen/ops/arcsin.h' 2025-08-26T19:36:13.2085310Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2086080Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-08-26T19:36:13.2087000Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-08-26T19:36:13.2087880Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-08-26T19:36:13.2088900Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2089690Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-08-26T19:36:13.2090630Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-08-26T19:36:13.2091530Z adding 'torch/include/ATen/ops/arctan.h' 2025-08-26T19:36:13.2092500Z adding 'torch/include/ATen/ops/arctan2.h' 2025-08-26T19:36:13.2093490Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2094260Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-08-26T19:36:13.2095220Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-08-26T19:36:13.2096260Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2097020Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-08-26T19:36:13.2097960Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-08-26T19:36:13.2098810Z adding 'torch/include/ATen/ops/arctanh.h' 2025-08-26T19:36:13.2099830Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2100620Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-08-26T19:36:13.2101600Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-08-26T19:36:13.2102510Z adding 'torch/include/ATen/ops/argmax.h' 2025-08-26T19:36:13.2103650Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2104480Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-08-26T19:36:13.2105330Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-08-26T19:36:13.2106110Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-08-26T19:36:13.2107070Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-08-26T19:36:13.2107930Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2025-08-26T19:36:13.2108760Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-08-26T19:36:13.2109720Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-08-26T19:36:13.2110700Z adding 'torch/include/ATen/ops/argmin.h' 2025-08-26T19:36:13.2111710Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2112460Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-08-26T19:36:13.2113270Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-08-26T19:36:13.2114230Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-08-26T19:36:13.2115110Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-08-26T19:36:13.2115920Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2025-08-26T19:36:13.2116740Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-08-26T19:36:13.2117780Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-08-26T19:36:13.2118780Z adding 'torch/include/ATen/ops/argsort.h' 2025-08-26T19:36:13.2119760Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2120510Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-08-26T19:36:13.2121620Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-08-26T19:36:13.2122480Z adding 'torch/include/ATen/ops/argwhere.h' 2025-08-26T19:36:13.2123460Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2124190Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-08-26T19:36:13.2125180Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-08-26T19:36:13.2126280Z adding 'torch/include/ATen/ops/as_strided.h' 2025-08-26T19:36:13.2127330Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2128340Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-08-26T19:36:13.2129460Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2130400Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2131150Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-08-26T19:36:13.2132120Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-08-26T19:36:13.2133100Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-08-26T19:36:13.2133990Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-08-26T19:36:13.2134790Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-08-26T19:36:13.2135590Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2025-08-26T19:36:13.2136530Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-08-26T19:36:13.2137520Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-08-26T19:36:13.2138740Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-08-26T19:36:13.2139800Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2140820Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2141600Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-08-26T19:36:13.2142630Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-08-26T19:36:13.2143520Z adding 'torch/include/ATen/ops/asin.h' 2025-08-26T19:36:13.2144660Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2145440Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-08-26T19:36:13.2146240Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-08-26T19:36:13.2147070Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-08-26T19:36:13.2147990Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-08-26T19:36:13.2149020Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2025-08-26T19:36:13.2149670Z adding 'torch/include/ATen/ops/asin_native.h' 2025-08-26T19:36:13.2150620Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-08-26T19:36:13.2151580Z adding 'torch/include/ATen/ops/asinh.h' 2025-08-26T19:36:13.2152640Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2153410Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-08-26T19:36:13.2154260Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-08-26T19:36:13.2155190Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-08-26T19:36:13.2156050Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-08-26T19:36:13.2156910Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2025-08-26T19:36:13.2157760Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-08-26T19:36:13.2158800Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-08-26T19:36:13.2159670Z adding 'torch/include/ATen/ops/atan.h' 2025-08-26T19:36:13.2160600Z adding 'torch/include/ATen/ops/atan2.h' 2025-08-26T19:36:13.2161600Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2162440Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-08-26T19:36:13.2163280Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-08-26T19:36:13.2164110Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-08-26T19:36:13.2164950Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-08-26T19:36:13.2165880Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2025-08-26T19:36:13.2166750Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-08-26T19:36:13.2167720Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-08-26T19:36:13.2168680Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2169540Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-08-26T19:36:13.2170420Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-08-26T19:36:13.2171270Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-08-26T19:36:13.2172190Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-08-26T19:36:13.2173090Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2025-08-26T19:36:13.2173950Z adding 'torch/include/ATen/ops/atan_native.h' 2025-08-26T19:36:13.2174900Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-08-26T19:36:13.2175780Z adding 'torch/include/ATen/ops/atanh.h' 2025-08-26T19:36:13.2176860Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2177630Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-08-26T19:36:13.2178500Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-08-26T19:36:13.2179300Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-08-26T19:36:13.2180210Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-08-26T19:36:13.2181040Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2025-08-26T19:36:13.2181880Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-08-26T19:36:13.2182850Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-08-26T19:36:13.2183790Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-08-26T19:36:13.2184770Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2185510Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-08-26T19:36:13.2186440Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-08-26T19:36:13.2187390Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-08-26T19:36:13.2188370Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2189120Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-08-26T19:36:13.2190100Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-08-26T19:36:13.2191070Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-08-26T19:36:13.2192020Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2192790Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-08-26T19:36:13.2193720Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-08-26T19:36:13.2194750Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-08-26T19:36:13.2195760Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2196610Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2197380Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-08-26T19:36:13.2198430Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-08-26T19:36:13.2199420Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-08-26T19:36:13.2200430Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-08-26T19:36:13.2201470Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2202370Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.2203250Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2204100Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-08-26T19:36:13.2205030Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-08-26T19:36:13.2205950Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.2206890Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-08-26T19:36:13.2207900Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-08-26T19:36:13.2208930Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2209840Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-08-26T19:36:13.2210750Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-08-26T19:36:13.2211940Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-08-26T19:36:13.2212860Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-08-26T19:36:13.2213800Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2025-08-26T19:36:13.2214780Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-08-26T19:36:13.2215770Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-08-26T19:36:13.2216790Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-08-26T19:36:13.2217910Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-08-26T19:36:13.2219030Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2219850Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.2220790Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2221760Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-08-26T19:36:13.2222650Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-08-26T19:36:13.2223460Z adding 'torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h' 2025-08-26T19:36:13.2224490Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-08-26T19:36:13.2225670Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-08-26T19:36:13.2226730Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2227480Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-08-26T19:36:13.2228320Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-08-26T19:36:13.2229260Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-08-26T19:36:13.2230160Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-08-26T19:36:13.2230980Z adding 'torch/include/ATen/ops/avg_pool3d_mps_dispatch.h' 2025-08-26T19:36:13.2231910Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-08-26T19:36:13.2233010Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-08-26T19:36:13.2234010Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-08-26T19:36:13.2235050Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2235850Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-08-26T19:36:13.2236900Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-08-26T19:36:13.2237730Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-08-26T19:36:13.2238620Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-08-26T19:36:13.2239450Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2025-08-26T19:36:13.2240470Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-08-26T19:36:13.2241630Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-08-26T19:36:13.2242720Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-08-26T19:36:13.2243780Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2244670Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-08-26T19:36:13.2245750Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-08-26T19:36:13.2246630Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-08-26T19:36:13.2247570Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-08-26T19:36:13.2248590Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-08-26T19:36:13.2249450Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2250800Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-08-26T19:36:13.2251920Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2252880Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-08-26T19:36:13.2253730Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-08-26T19:36:13.2254740Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-08-26T19:36:13.2255590Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2025-08-26T19:36:13.2256600Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-08-26T19:36:13.2257610Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-08-26T19:36:13.2258610Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-08-26T19:36:13.2259660Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2260590Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-08-26T19:36:13.2261460Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-08-26T19:36:13.2262510Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-08-26T19:36:13.2263460Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2264370Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-08-26T19:36:13.2265360Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-08-26T19:36:13.2266150Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-08-26T19:36:13.2267140Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-08-26T19:36:13.2268210Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-08-26T19:36:13.2269220Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2270060Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-08-26T19:36:13.2270890Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-08-26T19:36:13.2272010Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-08-26T19:36:13.2273030Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-08-26T19:36:13.2274040Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2274870Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-08-26T19:36:13.2275790Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-08-26T19:36:13.2276870Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-08-26T19:36:13.2277650Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-08-26T19:36:13.2278620Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-08-26T19:36:13.2279600Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-08-26T19:36:13.2280600Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2281420Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-08-26T19:36:13.2282260Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-08-26T19:36:13.2283350Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-08-26T19:36:13.2284330Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-08-26T19:36:13.2285350Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2286180Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-08-26T19:36:13.2287130Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-08-26T19:36:13.2288010Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-08-26T19:36:13.2289000Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-08-26T19:36:13.2289990Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-08-26T19:36:13.2291080Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2292030Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2292840Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-08-26T19:36:13.2293740Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-08-26T19:36:13.2294730Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-08-26T19:36:13.2295580Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2025-08-26T19:36:13.2296470Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-08-26T19:36:13.2297700Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-08-26T19:36:13.2298690Z adding 'torch/include/ATen/ops/bilinear.h' 2025-08-26T19:36:13.2299670Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2300420Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-08-26T19:36:13.2301330Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-08-26T19:36:13.2302350Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-08-26T19:36:13.2303340Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-08-26T19:36:13.2304280Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-08-26T19:36:13.2305160Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2306120Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2025-08-26T19:36:13.2306980Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-08-26T19:36:13.2307990Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-08-26T19:36:13.2308910Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-08-26T19:36:13.2309810Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-08-26T19:36:13.2310650Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2025-08-26T19:36:13.2311530Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-08-26T19:36:13.2312500Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-08-26T19:36:13.2313570Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-08-26T19:36:13.2314640Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2315440Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-08-26T19:36:13.2316440Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-08-26T19:36:13.2317500Z adding 'torch/include/ATen/ops/bincount.h' 2025-08-26T19:36:13.2318540Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2319350Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-08-26T19:36:13.2320200Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-08-26T19:36:13.2325560Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2025-08-26T19:36:13.2325870Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-08-26T19:36:13.2326140Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-08-26T19:36:13.2326350Z adding 'torch/include/ATen/ops/binomial.h' 2025-08-26T19:36:13.2326650Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2326980Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-08-26T19:36:13.2327260Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-08-26T19:36:13.2327510Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-08-26T19:36:13.2328420Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-08-26T19:36:13.2329440Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-08-26T19:36:13.2330420Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2331340Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2332200Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-08-26T19:36:13.2333080Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-08-26T19:36:13.2333920Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-08-26T19:36:13.2334810Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-08-26T19:36:13.2335740Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2025-08-26T19:36:13.2336640Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-08-26T19:36:13.2337830Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-08-26T19:36:13.2338890Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-08-26T19:36:13.2339970Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2340910Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2341670Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-08-26T19:36:13.2342490Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-08-26T19:36:13.2343390Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-08-26T19:36:13.2344250Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-08-26T19:36:13.2345070Z adding 'torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h' 2025-08-26T19:36:13.2345980Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-08-26T19:36:13.2347350Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-08-26T19:36:13.2348310Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-08-26T19:36:13.2349350Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2350140Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-08-26T19:36:13.2351080Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-08-26T19:36:13.2351920Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-08-26T19:36:13.2352770Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-08-26T19:36:13.2353590Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2025-08-26T19:36:13.2354520Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-08-26T19:36:13.2355490Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-08-26T19:36:13.2356490Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-08-26T19:36:13.2357470Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2358450Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2359180Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-08-26T19:36:13.2360010Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-08-26T19:36:13.2360830Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-08-26T19:36:13.2361770Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-08-26T19:36:13.2362580Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2025-08-26T19:36:13.2363460Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-08-26T19:36:13.2364640Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-08-26T19:36:13.2365760Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-08-26T19:36:13.2366800Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2367710Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2368460Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-08-26T19:36:13.2369370Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-08-26T19:36:13.2370200Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-08-26T19:36:13.2371060Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-08-26T19:36:13.2371870Z adding 'torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h' 2025-08-26T19:36:13.2372820Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-08-26T19:36:13.2374030Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-08-26T19:36:13.2375010Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-08-26T19:36:13.2375990Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2376970Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2377730Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-08-26T19:36:13.2378550Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-08-26T19:36:13.2379380Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-08-26T19:36:13.2380310Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-08-26T19:36:13.2381130Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2025-08-26T19:36:13.2382000Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-08-26T19:36:13.2383180Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-08-26T19:36:13.2384340Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-08-26T19:36:13.2385390Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2386180Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-08-26T19:36:13.2387240Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-08-26T19:36:13.2388200Z adding 'torch/include/ATen/ops/block_diag.h' 2025-08-26T19:36:13.2389230Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2389950Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-08-26T19:36:13.2390910Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-08-26T19:36:13.2391920Z adding 'torch/include/ATen/ops/bmm.h' 2025-08-26T19:36:13.2392930Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2393690Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-08-26T19:36:13.2394570Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-08-26T19:36:13.2395480Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-08-26T19:36:13.2396370Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-08-26T19:36:13.2397700Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2025-08-26T19:36:13.2398130Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-08-26T19:36:13.2399270Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-08-26T19:36:13.2400200Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-08-26T19:36:13.2401150Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2401900Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-08-26T19:36:13.2402880Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-08-26T19:36:13.2403790Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-08-26T19:36:13.2404790Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2405500Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-08-26T19:36:13.2406500Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-08-26T19:36:13.2407550Z adding 'torch/include/ATen/ops/bucketize.h' 2025-08-26T19:36:13.2408570Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2409460Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-08-26T19:36:13.2410430Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-08-26T19:36:13.2411300Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2025-08-26T19:36:13.2412180Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-08-26T19:36:13.2413220Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-08-26T19:36:13.2414150Z adding 'torch/include/ATen/ops/can_cast.h' 2025-08-26T19:36:13.2415130Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2415860Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-08-26T19:36:13.2416740Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-08-26T19:36:13.2417690Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-08-26T19:36:13.2418680Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2419410Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-08-26T19:36:13.2420290Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-08-26T19:36:13.2421280Z adding 'torch/include/ATen/ops/cat.h' 2025-08-26T19:36:13.2422310Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2423130Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2423950Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-08-26T19:36:13.2424850Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-08-26T19:36:13.2426070Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-08-26T19:36:13.2426930Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-08-26T19:36:13.2427720Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2025-08-26T19:36:13.2428760Z adding 'torch/include/ATen/ops/cat_native.h' 2025-08-26T19:36:13.2429830Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-08-26T19:36:13.2430740Z adding 'torch/include/ATen/ops/cauchy.h' 2025-08-26T19:36:13.2431730Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2432640Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-08-26T19:36:13.2433480Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-08-26T19:36:13.2434330Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-08-26T19:36:13.2435140Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-08-26T19:36:13.2436220Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-08-26T19:36:13.2437080Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-08-26T19:36:13.2438030Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2438830Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-08-26T19:36:13.2439860Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2440790Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2441500Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-08-26T19:36:13.2442430Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-08-26T19:36:13.2443360Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-08-26T19:36:13.2444260Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-08-26T19:36:13.2445110Z adding 'torch/include/ATen/ops/cdist.h' 2025-08-26T19:36:13.2446050Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2446890Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-08-26T19:36:13.2447800Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-08-26T19:36:13.2448710Z adding 'torch/include/ATen/ops/ceil.h' 2025-08-26T19:36:13.2449690Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2450530Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-08-26T19:36:13.2451400Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-08-26T19:36:13.2452200Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-08-26T19:36:13.2453070Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-08-26T19:36:13.2453940Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2025-08-26T19:36:13.2454800Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-08-26T19:36:13.2455780Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-08-26T19:36:13.2456680Z adding 'torch/include/ATen/ops/celu.h' 2025-08-26T19:36:13.2457750Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2458550Z adding 'torch/include/ATen/ops/celu_native.h' 2025-08-26T19:36:13.2459580Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-08-26T19:36:13.2460520Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-08-26T19:36:13.2461640Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2462450Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-08-26T19:36:13.2463420Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-08-26T19:36:13.2464300Z adding 'torch/include/ATen/ops/chalf.h' 2025-08-26T19:36:13.2465800Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2466710Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-08-26T19:36:13.2467660Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-08-26T19:36:13.2468730Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-08-26T19:36:13.2469870Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2470710Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-08-26T19:36:13.2471530Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-08-26T19:36:13.2472340Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-08-26T19:36:13.2473350Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-08-26T19:36:13.2474230Z adding 'torch/include/ATen/ops/cholesky.h' 2025-08-26T19:36:13.2475120Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-08-26T19:36:13.2475930Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-08-26T19:36:13.2476870Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-08-26T19:36:13.2477790Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-08-26T19:36:13.2478660Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-08-26T19:36:13.2479420Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-08-26T19:36:13.2480440Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-08-26T19:36:13.2481340Z adding 'torch/include/ATen/ops/cholesky_mps_dispatch.h' 2025-08-26T19:36:13.2482150Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-08-26T19:36:13.2483070Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-08-26T19:36:13.2484060Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-08-26T19:36:13.2485050Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2485820Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-08-26T19:36:13.2486740Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-08-26T19:36:13.2487730Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-08-26T19:36:13.2488710Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2489510Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-08-26T19:36:13.2490460Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-08-26T19:36:13.2491340Z adding 'torch/include/ATen/ops/chunk.h' 2025-08-26T19:36:13.2492340Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2493070Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-08-26T19:36:13.2493960Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-08-26T19:36:13.2495080Z adding 'torch/include/ATen/ops/clamp.h' 2025-08-26T19:36:13.2496120Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2496950Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-08-26T19:36:13.2497820Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-08-26T19:36:13.2498880Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-08-26T19:36:13.2499910Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2500710Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-08-26T19:36:13.2501570Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-08-26T19:36:13.2502490Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-08-26T19:36:13.2503370Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-08-26T19:36:13.2504200Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2025-08-26T19:36:13.2505050Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-08-26T19:36:13.2506240Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-08-26T19:36:13.2507110Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-08-26T19:36:13.2508060Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-08-26T19:36:13.2509000Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-08-26T19:36:13.2510100Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2510910Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-08-26T19:36:13.2511760Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-08-26T19:36:13.2512580Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-08-26T19:36:13.2513520Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-08-26T19:36:13.2514390Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2025-08-26T19:36:13.2515220Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-08-26T19:36:13.2516340Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-08-26T19:36:13.2517340Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2025-08-26T19:36:13.2518260Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-08-26T19:36:13.2519430Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-08-26T19:36:13.2520450Z adding 'torch/include/ATen/ops/clip.h' 2025-08-26T19:36:13.2521550Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2522380Z adding 'torch/include/ATen/ops/clip_native.h' 2025-08-26T19:36:13.2523550Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-08-26T19:36:13.2524450Z adding 'torch/include/ATen/ops/clone.h' 2025-08-26T19:36:13.2525500Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2526320Z adding 'torch/include/ATen/ops/clone_native.h' 2025-08-26T19:36:13.2527240Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-08-26T19:36:13.2528070Z adding 'torch/include/ATen/ops/coalesce.h' 2025-08-26T19:36:13.2529120Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2529870Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-08-26T19:36:13.2530750Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-08-26T19:36:13.2531870Z adding 'torch/include/ATen/ops/col2im.h' 2025-08-26T19:36:13.2532910Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-08-26T19:36:13.2533810Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-08-26T19:36:13.2534690Z adding 'torch/include/ATen/ops/col2im_mps_dispatch.h' 2025-08-26T19:36:13.2535550Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-08-26T19:36:13.2536620Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-08-26T19:36:13.2537440Z adding 'torch/include/ATen/ops/col_indices.h' 2025-08-26T19:36:13.2538390Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2539210Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-08-26T19:36:13.2540240Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2541160Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2541870Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-08-26T19:36:13.2542850Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-08-26T19:36:13.2543700Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-08-26T19:36:13.2544600Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-08-26T19:36:13.2545460Z adding 'torch/include/ATen/ops/column_stack.h' 2025-08-26T19:36:13.2546430Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2547290Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-08-26T19:36:13.2548220Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-08-26T19:36:13.2549090Z adding 'torch/include/ATen/ops/combinations.h' 2025-08-26T19:36:13.2550050Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2550860Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-08-26T19:36:13.2551770Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-08-26T19:36:13.2552630Z adding 'torch/include/ATen/ops/complex.h' 2025-08-26T19:36:13.2553580Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2554430Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-08-26T19:36:13.2555260Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-08-26T19:36:13.2556070Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2025-08-26T19:36:13.2556870Z adding 'torch/include/ATen/ops/complex_native.h' 2025-08-26T19:36:13.2557870Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-08-26T19:36:13.2558840Z adding 'torch/include/ATen/ops/concat.h' 2025-08-26T19:36:13.2559830Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2560580Z adding 'torch/include/ATen/ops/concat_native.h' 2025-08-26T19:36:13.2561680Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-08-26T19:36:13.2562650Z adding 'torch/include/ATen/ops/concatenate.h' 2025-08-26T19:36:13.2563650Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2564410Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-08-26T19:36:13.2565490Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-08-26T19:36:13.2566370Z adding 'torch/include/ATen/ops/conj.h' 2025-08-26T19:36:13.2567350Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2568090Z adding 'torch/include/ATen/ops/conj_native.h' 2025-08-26T19:36:13.2569070Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-08-26T19:36:13.2569990Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-08-26T19:36:13.2570940Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2571780Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2572660Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-08-26T19:36:13.2573510Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-08-26T19:36:13.2574320Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2025-08-26T19:36:13.2575160Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-08-26T19:36:13.2576180Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-08-26T19:36:13.2577270Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-08-26T19:36:13.2578300Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2579100Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2025-08-26T19:36:13.2580000Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-08-26T19:36:13.2580990Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-08-26T19:36:13.2581770Z adding 'torch/include/ATen/ops/contiguous.h' 2025-08-26T19:36:13.2582720Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2583540Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-08-26T19:36:13.2584450Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-08-26T19:36:13.2585540Z adding 'torch/include/ATen/ops/conv1d.h' 2025-08-26T19:36:13.2586560Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2587430Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-08-26T19:36:13.2588450Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-08-26T19:36:13.2589520Z adding 'torch/include/ATen/ops/conv2d.h' 2025-08-26T19:36:13.2590560Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2591470Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-08-26T19:36:13.2592470Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-08-26T19:36:13.2593550Z adding 'torch/include/ATen/ops/conv3d.h' 2025-08-26T19:36:13.2594570Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2595430Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-08-26T19:36:13.2596410Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-08-26T19:36:13.2597620Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-08-26T19:36:13.2598680Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2599600Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-08-26T19:36:13.2600490Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-08-26T19:36:13.2601490Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-08-26T19:36:13.2602380Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-08-26T19:36:13.2603330Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-08-26T19:36:13.2604340Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2605100Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-08-26T19:36:13.2606030Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-08-26T19:36:13.2607060Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2607830Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-08-26T19:36:13.2608780Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-08-26T19:36:13.2614530Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-08-26T19:36:13.2614850Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2614990Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-08-26T19:36:13.2615090Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-08-26T19:36:13.2615170Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-08-26T19:36:13.2615350Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2615450Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-08-26T19:36:13.2616290Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-08-26T19:36:13.2617300Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-08-26T19:36:13.2618360Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2619130Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-08-26T19:36:13.2620050Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-08-26T19:36:13.2621250Z adding 'torch/include/ATen/ops/convolution.h' 2025-08-26T19:36:13.2623220Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-08-26T19:36:13.2623990Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2624840Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2625750Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-08-26T19:36:13.2626930Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-08-26T19:36:13.2628360Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-08-26T19:36:13.2629560Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2630400Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-08-26T19:36:13.2631590Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-08-26T19:36:13.2632590Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2633380Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-08-26T19:36:13.2634400Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-08-26T19:36:13.2635780Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-08-26T19:36:13.2636900Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2637690Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-08-26T19:36:13.2638690Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-08-26T19:36:13.2639650Z adding 'torch/include/ATen/ops/copy.h' 2025-08-26T19:36:13.2640620Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2641520Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2642280Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-08-26T19:36:13.2643230Z adding 'torch/include/ATen/ops/copy_native.h' 2025-08-26T19:36:13.2644250Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-08-26T19:36:13.2645250Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-08-26T19:36:13.2646210Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2647110Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-08-26T19:36:13.2647960Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-08-26T19:36:13.2648950Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-08-26T19:36:13.2649850Z adding 'torch/include/ATen/ops/copysign.h' 2025-08-26T19:36:13.2650910Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2651820Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2652570Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-08-26T19:36:13.2653400Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-08-26T19:36:13.2654300Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-08-26T19:36:13.2655190Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-08-26T19:36:13.2655970Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2025-08-26T19:36:13.2656890Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-08-26T19:36:13.2658030Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-08-26T19:36:13.2658910Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-08-26T19:36:13.2659850Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2660580Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-08-26T19:36:13.2661550Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-08-26T19:36:13.2662440Z adding 'torch/include/ATen/ops/cos.h' 2025-08-26T19:36:13.2663400Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2664120Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-08-26T19:36:13.2665030Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-08-26T19:36:13.2665860Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-08-26T19:36:13.2666680Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-08-26T19:36:13.2667490Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2025-08-26T19:36:13.2668410Z adding 'torch/include/ATen/ops/cos_native.h' 2025-08-26T19:36:13.2669370Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-08-26T19:36:13.2670260Z adding 'torch/include/ATen/ops/cosh.h' 2025-08-26T19:36:13.2671220Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2672000Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-08-26T19:36:13.2672830Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-08-26T19:36:13.2673640Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-08-26T19:36:13.2674460Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-08-26T19:36:13.2675340Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2025-08-26T19:36:13.2676500Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-08-26T19:36:13.2677160Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-08-26T19:36:13.2678040Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-08-26T19:36:13.2679140Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2679900Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-08-26T19:36:13.2681230Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-08-26T19:36:13.2682050Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-08-26T19:36:13.2683090Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2683840Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-08-26T19:36:13.2684740Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-08-26T19:36:13.2685670Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-08-26T19:36:13.2686760Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2687590Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-08-26T19:36:13.2688390Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-08-26T19:36:13.2689180Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2025-08-26T19:36:13.2690110Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-08-26T19:36:13.2691130Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-08-26T19:36:13.2691990Z adding 'torch/include/ATen/ops/cov.h' 2025-08-26T19:36:13.2692950Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2693790Z adding 'torch/include/ATen/ops/cov_native.h' 2025-08-26T19:36:13.2694710Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-08-26T19:36:13.2695590Z adding 'torch/include/ATen/ops/cross.h' 2025-08-26T19:36:13.2696560Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2697540Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-08-26T19:36:13.2698590Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2699330Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-08-26T19:36:13.2700270Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-08-26T19:36:13.2701160Z adding 'torch/include/ATen/ops/cross_native.h' 2025-08-26T19:36:13.2702110Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-08-26T19:36:13.2702940Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-08-26T19:36:13.2703900Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2704770Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-08-26T19:36:13.2705750Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2706680Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2707390Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-08-26T19:36:13.2708400Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-08-26T19:36:13.2709250Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-08-26T19:36:13.2710110Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-08-26T19:36:13.2711010Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-08-26T19:36:13.2712120Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2712900Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-08-26T19:36:13.2713900Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-08-26T19:36:13.2714890Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-08-26T19:36:13.2715910Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-08-26T19:36:13.2716940Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2717740Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2718560Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-08-26T19:36:13.2719590Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-08-26T19:36:13.2720560Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2721360Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-08-26T19:36:13.2722180Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-08-26T19:36:13.2723210Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-08-26T19:36:13.2724200Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-08-26T19:36:13.2725250Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-08-26T19:36:13.2726290Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2727200Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2728080Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-08-26T19:36:13.2729160Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-08-26T19:36:13.2730120Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-08-26T19:36:13.2731050Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-08-26T19:36:13.2732130Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-08-26T19:36:13.2733340Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-08-26T19:36:13.2734610Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-08-26T19:36:13.2735780Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2736670Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-08-26T19:36:13.2737520Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-08-26T19:36:13.2738560Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-08-26T19:36:13.2739600Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-08-26T19:36:13.2740460Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-08-26T19:36:13.2741450Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-08-26T19:36:13.2742660Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-08-26T19:36:13.2743790Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2744660Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-08-26T19:36:13.2745490Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-08-26T19:36:13.2746500Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-08-26T19:36:13.2747890Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-08-26T19:36:13.2748950Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2749810Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-08-26T19:36:13.2750670Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-08-26T19:36:13.2751770Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-08-26T19:36:13.2752650Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-08-26T19:36:13.2753710Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-08-26T19:36:13.2754590Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2755480Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2756310Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-08-26T19:36:13.2757270Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-08-26T19:36:13.2758220Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2759080Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-08-26T19:36:13.2759910Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-08-26T19:36:13.2760830Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-08-26T19:36:13.2761660Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-08-26T19:36:13.2762690Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2763450Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-08-26T19:36:13.2764330Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-08-26T19:36:13.2765250Z adding 'torch/include/ATen/ops/cummax.h' 2025-08-26T19:36:13.2766320Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2767220Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2767980Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-08-26T19:36:13.2769030Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-08-26T19:36:13.2769990Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-08-26T19:36:13.2770980Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2771730Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-08-26T19:36:13.2772620Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-08-26T19:36:13.2773610Z adding 'torch/include/ATen/ops/cummin.h' 2025-08-26T19:36:13.2774610Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2775490Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2776260Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-08-26T19:36:13.2777380Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-08-26T19:36:13.2778350Z adding 'torch/include/ATen/ops/cumprod.h' 2025-08-26T19:36:13.2779230Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-08-26T19:36:13.2780220Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2781020Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-08-26T19:36:13.2781930Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-08-26T19:36:13.2782910Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2783770Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2784650Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-08-26T19:36:13.2785500Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-08-26T19:36:13.2786310Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-08-26T19:36:13.2787170Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-08-26T19:36:13.2788070Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2025-08-26T19:36:13.2788960Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-08-26T19:36:13.2790080Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-08-26T19:36:13.2791050Z adding 'torch/include/ATen/ops/cumsum.h' 2025-08-26T19:36:13.2792150Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2793000Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2793800Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-08-26T19:36:13.2794660Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-08-26T19:36:13.2795550Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-08-26T19:36:13.2796410Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-08-26T19:36:13.2797220Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2025-08-26T19:36:13.2798080Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-08-26T19:36:13.2800430Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-08-26T19:36:13.2801060Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-08-26T19:36:13.2802040Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2802810Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-08-26T19:36:13.2803830Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-08-26T19:36:13.2804630Z adding 'torch/include/ATen/ops/data.h' 2025-08-26T19:36:13.2805600Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2806330Z adding 'torch/include/ATen/ops/data_native.h' 2025-08-26T19:36:13.2807270Z adding 'torch/include/ATen/ops/data_ops.h' 2025-08-26T19:36:13.2808150Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-08-26T19:36:13.2809130Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2809880Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-08-26T19:36:13.2810940Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-08-26T19:36:13.2811780Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-08-26T19:36:13.2812760Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2813550Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-08-26T19:36:13.2814560Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-08-26T19:36:13.2815590Z adding 'torch/include/ATen/ops/dequantize.h' 2025-08-26T19:36:13.2816650Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2817440Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-08-26T19:36:13.2818330Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-08-26T19:36:13.2819190Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-08-26T19:36:13.2820190Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-08-26T19:36:13.2821030Z adding 'torch/include/ATen/ops/det.h' 2025-08-26T19:36:13.2822050Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2822800Z adding 'torch/include/ATen/ops/det_native.h' 2025-08-26T19:36:13.2823740Z adding 'torch/include/ATen/ops/det_ops.h' 2025-08-26T19:36:13.2824620Z adding 'torch/include/ATen/ops/detach.h' 2025-08-26T19:36:13.2825600Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2826390Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-08-26T19:36:13.2827360Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2828240Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2829040Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-08-26T19:36:13.2829970Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-08-26T19:36:13.2830810Z adding 'torch/include/ATen/ops/detach_native.h' 2025-08-26T19:36:13.2831710Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-08-26T19:36:13.2832710Z adding 'torch/include/ATen/ops/diag.h' 2025-08-26T19:36:13.2833680Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2834490Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-08-26T19:36:13.2835460Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2836460Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2837170Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-08-26T19:36:13.2838120Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-08-26T19:36:13.2838970Z adding 'torch/include/ATen/ops/diag_native.h' 2025-08-26T19:36:13.2839950Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-08-26T19:36:13.2840800Z adding 'torch/include/ATen/ops/diagflat.h' 2025-08-26T19:36:13.2841760Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2842480Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-08-26T19:36:13.2843450Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-08-26T19:36:13.2844350Z adding 'torch/include/ATen/ops/diagonal.h' 2025-08-26T19:36:13.2845470Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-08-26T19:36:13.2846530Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2847380Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-08-26T19:36:13.2848370Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-08-26T19:36:13.2849320Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2850160Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2851070Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-08-26T19:36:13.2852040Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2852940Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2853650Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-08-26T19:36:13.2854680Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-08-26T19:36:13.2855530Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-08-26T19:36:13.2856480Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-08-26T19:36:13.2857400Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-08-26T19:36:13.2858460Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2859400Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2860110Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-08-26T19:36:13.2861230Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-08-26T19:36:13.2862170Z adding 'torch/include/ATen/ops/diff.h' 2025-08-26T19:36:13.2863140Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2863920Z adding 'torch/include/ATen/ops/diff_native.h' 2025-08-26T19:36:13.2864860Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-08-26T19:36:13.2865820Z adding 'torch/include/ATen/ops/digamma.h' 2025-08-26T19:36:13.2866840Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2867570Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-08-26T19:36:13.2868390Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-08-26T19:36:13.2869290Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-08-26T19:36:13.2870140Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-08-26T19:36:13.2870940Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2025-08-26T19:36:13.2871760Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-08-26T19:36:13.2872780Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-08-26T19:36:13.2873710Z adding 'torch/include/ATen/ops/dist.h' 2025-08-26T19:36:13.2874670Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2875430Z adding 'torch/include/ATen/ops/dist_native.h' 2025-08-26T19:36:13.2876470Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-08-26T19:36:13.2877490Z adding 'torch/include/ATen/ops/div.h' 2025-08-26T19:36:13.2878540Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2879480Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2880570Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-08-26T19:36:13.2881290Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-08-26T19:36:13.2882110Z adding 'torch/include/ATen/ops/div_meta.h' 2025-08-26T19:36:13.2882970Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-08-26T19:36:13.2883900Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2025-08-26T19:36:13.2884830Z adding 'torch/include/ATen/ops/div_native.h' 2025-08-26T19:36:13.2886220Z adding 'torch/include/ATen/ops/div_ops.h' 2025-08-26T19:36:13.2887190Z adding 'torch/include/ATen/ops/divide.h' 2025-08-26T19:36:13.2888280Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2889100Z adding 'torch/include/ATen/ops/divide_native.h' 2025-08-26T19:36:13.2890330Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-08-26T19:36:13.2891230Z adding 'torch/include/ATen/ops/dot.h' 2025-08-26T19:36:13.2892270Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2893080Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-08-26T19:36:13.2893890Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-08-26T19:36:13.2894710Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2025-08-26T19:36:13.2898960Z adding 'torch/include/ATen/ops/dot_native.h' 2025-08-26T19:36:13.2899690Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-08-26T19:36:13.2900580Z adding 'torch/include/ATen/ops/dropout.h' 2025-08-26T19:36:13.2901490Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2902320Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-08-26T19:36:13.2903240Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-08-26T19:36:13.2904100Z adding 'torch/include/ATen/ops/dsplit.h' 2025-08-26T19:36:13.2905060Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2905890Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-08-26T19:36:13.2906890Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-08-26T19:36:13.2907770Z adding 'torch/include/ATen/ops/dstack.h' 2025-08-26T19:36:13.2908720Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2909540Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-08-26T19:36:13.2910500Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-08-26T19:36:13.2911370Z adding 'torch/include/ATen/ops/einsum.h' 2025-08-26T19:36:13.2912320Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2913170Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-08-26T19:36:13.2914090Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-08-26T19:36:13.2915010Z adding 'torch/include/ATen/ops/elu.h' 2025-08-26T19:36:13.2915980Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-08-26T19:36:13.2917070Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2917880Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-08-26T19:36:13.2918700Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2919520Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-08-26T19:36:13.2920470Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-08-26T19:36:13.2921300Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2025-08-26T19:36:13.2922170Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-08-26T19:36:13.2923140Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-08-26T19:36:13.2924220Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2925000Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-08-26T19:36:13.2925850Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-08-26T19:36:13.2926680Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-08-26T19:36:13.2927610Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-08-26T19:36:13.2928450Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2025-08-26T19:36:13.2929270Z adding 'torch/include/ATen/ops/elu_native.h' 2025-08-26T19:36:13.2930250Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-08-26T19:36:13.2931470Z adding 'torch/include/ATen/ops/embedding.h' 2025-08-26T19:36:13.2932440Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-08-26T19:36:13.2933420Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2934180Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-08-26T19:36:13.2935180Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-08-26T19:36:13.2936120Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-08-26T19:36:13.2937150Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2937940Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-08-26T19:36:13.2939040Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-08-26T19:36:13.2940090Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2941150Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-08-26T19:36:13.2942180Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2943100Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-08-26T19:36:13.2943940Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-08-26T19:36:13.2944760Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2025-08-26T19:36:13.2945630Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-08-26T19:36:13.2946720Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-08-26T19:36:13.2947640Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-08-26T19:36:13.2948690Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-08-26T19:36:13.2949690Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-08-26T19:36:13.2950770Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2951580Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-08-26T19:36:13.2952400Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-08-26T19:36:13.2953190Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-08-26T19:36:13.2954100Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-08-26T19:36:13.2955110Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-08-26T19:36:13.2956010Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-08-26T19:36:13.2956970Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2957840Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-08-26T19:36:13.2958740Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-08-26T19:36:13.2960120Z adding 'torch/include/ATen/ops/empty.h' 2025-08-26T19:36:13.2961130Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2962120Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.2962990Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-08-26T19:36:13.2963850Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-08-26T19:36:13.2964820Z adding 'torch/include/ATen/ops/empty_like.h' 2025-08-26T19:36:13.2965930Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2966750Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-08-26T19:36:13.2967760Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-08-26T19:36:13.2968650Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-08-26T19:36:13.2969600Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2025-08-26T19:36:13.2970580Z adding 'torch/include/ATen/ops/empty_native.h' 2025-08-26T19:36:13.2971730Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-08-26T19:36:13.2972950Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-08-26T19:36:13.2974120Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2974900Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-08-26T19:36:13.2975900Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-08-26T19:36:13.2976920Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-08-26T19:36:13.2978010Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2978830Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-08-26T19:36:13.2979840Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-08-26T19:36:13.2981030Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-08-26T19:36:13.2982120Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.2982970Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-08-26T19:36:13.2983820Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-08-26T19:36:13.2984670Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-08-26T19:36:13.2985580Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2025-08-26T19:36:13.2986480Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-08-26T19:36:13.2987470Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-08-26T19:36:13.2988390Z adding 'torch/include/ATen/ops/eq.h' 2025-08-26T19:36:13.2989460Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.2990290Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-08-26T19:36:13.2991140Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-08-26T19:36:13.2991980Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-08-26T19:36:13.2992930Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-08-26T19:36:13.2993770Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2025-08-26T19:36:13.2994660Z adding 'torch/include/ATen/ops/eq_native.h' 2025-08-26T19:36:13.2995760Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-08-26T19:36:13.2996710Z adding 'torch/include/ATen/ops/equal.h' 2025-08-26T19:36:13.2997630Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-08-26T19:36:13.2998410Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-08-26T19:36:13.2999190Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2025-08-26T19:36:13.3000080Z adding 'torch/include/ATen/ops/equal_native.h' 2025-08-26T19:36:13.3000970Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-08-26T19:36:13.3001860Z adding 'torch/include/ATen/ops/erf.h' 2025-08-26T19:36:13.3002840Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3003680Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-08-26T19:36:13.3004530Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-08-26T19:36:13.3005320Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-08-26T19:36:13.3006140Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-08-26T19:36:13.3007020Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2025-08-26T19:36:13.3007890Z adding 'torch/include/ATen/ops/erf_native.h' 2025-08-26T19:36:13.3008850Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-08-26T19:36:13.3009750Z adding 'torch/include/ATen/ops/erfc.h' 2025-08-26T19:36:13.3010780Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3011520Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-08-26T19:36:13.3012310Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-08-26T19:36:13.3013120Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-08-26T19:36:13.3014020Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-08-26T19:36:13.3014830Z adding 'torch/include/ATen/ops/erfc_mps_dispatch.h' 2025-08-26T19:36:13.3015650Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-08-26T19:36:13.3016590Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-08-26T19:36:13.3017530Z adding 'torch/include/ATen/ops/erfinv.h' 2025-08-26T19:36:13.3018530Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3019310Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-08-26T19:36:13.3020110Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-08-26T19:36:13.3020990Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-08-26T19:36:13.3021830Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-08-26T19:36:13.3022630Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2025-08-26T19:36:13.3023480Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-08-26T19:36:13.3024530Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-08-26T19:36:13.3025410Z adding 'torch/include/ATen/ops/exp.h' 2025-08-26T19:36:13.3026270Z adding 'torch/include/ATen/ops/exp2.h' 2025-08-26T19:36:13.3027280Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3028120Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-08-26T19:36:13.3028930Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-08-26T19:36:13.3029760Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-08-26T19:36:13.3030620Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-08-26T19:36:13.3031500Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2025-08-26T19:36:13.3032360Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-08-26T19:36:13.3033350Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-08-26T19:36:13.3034320Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3035160Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-08-26T19:36:13.3035970Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-08-26T19:36:13.3036800Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-08-26T19:36:13.3037620Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-08-26T19:36:13.3038500Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2025-08-26T19:36:13.3039340Z adding 'torch/include/ATen/ops/exp_native.h' 2025-08-26T19:36:13.3040290Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-08-26T19:36:13.3041180Z adding 'torch/include/ATen/ops/expand.h' 2025-08-26T19:36:13.3042050Z adding 'torch/include/ATen/ops/expand_as.h' 2025-08-26T19:36:13.3043030Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3043760Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-08-26T19:36:13.3044640Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-08-26T19:36:13.3045670Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3046650Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-08-26T19:36:13.3047660Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3048600Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3049380Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-08-26T19:36:13.3050330Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-08-26T19:36:13.3051140Z adding 'torch/include/ATen/ops/expand_native.h' 2025-08-26T19:36:13.3052040Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-08-26T19:36:13.3052990Z adding 'torch/include/ATen/ops/expm1.h' 2025-08-26T19:36:13.3053980Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3054730Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-08-26T19:36:13.3055540Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-08-26T19:36:13.3056430Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-08-26T19:36:13.3057300Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-08-26T19:36:13.3058090Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2025-08-26T19:36:13.3058940Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-08-26T19:36:13.3059980Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-08-26T19:36:13.3060930Z adding 'torch/include/ATen/ops/exponential.h' 2025-08-26T19:36:13.3061930Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3062760Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-08-26T19:36:13.3063630Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-08-26T19:36:13.3064440Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-08-26T19:36:13.3065250Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2025-08-26T19:36:13.3066090Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-08-26T19:36:13.3067140Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-08-26T19:36:13.3068510Z adding 'torch/include/ATen/ops/eye.h' 2025-08-26T19:36:13.3069660Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3070480Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-08-26T19:36:13.3071460Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-08-26T19:36:13.3072300Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-08-26T19:36:13.3073160Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2025-08-26T19:36:13.3074070Z adding 'torch/include/ATen/ops/eye_native.h' 2025-08-26T19:36:13.3075190Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-08-26T19:36:13.3076200Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-08-26T19:36:13.3077230Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-08-26T19:36:13.3078150Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-08-26T19:36:13.3079220Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3079990Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-08-26T19:36:13.3080910Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-08-26T19:36:13.3081880Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3082770Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-08-26T19:36:13.3083620Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-08-26T19:36:13.3084460Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-08-26T19:36:13.3085480Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-08-26T19:36:13.3086510Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3087310Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-08-26T19:36:13.3088270Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-08-26T19:36:13.3089610Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-08-26T19:36:13.3091800Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-08-26T19:36:13.3092570Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-08-26T19:36:13.3093530Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3094300Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-08-26T19:36:13.3095250Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-08-26T19:36:13.3096300Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3097100Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-08-26T19:36:13.3097920Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-08-26T19:36:13.3098760Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-08-26T19:36:13.3099840Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-08-26T19:36:13.3100860Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3101620Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-08-26T19:36:13.3102870Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-08-26T19:36:13.3103590Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-08-26T19:36:13.3104560Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3105410Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-08-26T19:36:13.3106390Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3107230Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-08-26T19:36:13.3108210Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-08-26T19:36:13.3109040Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-08-26T19:36:13.3109970Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-08-26T19:36:13.3110910Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-08-26T19:36:13.3112250Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3113130Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-08-26T19:36:13.3114080Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3114920Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-08-26T19:36:13.3115890Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-08-26T19:36:13.3116690Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-08-26T19:36:13.3117640Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-08-26T19:36:13.3118550Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-08-26T19:36:13.3119540Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3120300Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-08-26T19:36:13.3121190Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-08-26T19:36:13.3122070Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-08-26T19:36:13.3123050Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3123820Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-08-26T19:36:13.3124680Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-08-26T19:36:13.3125610Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-08-26T19:36:13.3126590Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3127330Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-08-26T19:36:13.3128250Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-08-26T19:36:13.3129160Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-08-26T19:36:13.3130130Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3130850Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-08-26T19:36:13.3131770Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-08-26T19:36:13.3132670Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-08-26T19:36:13.3138570Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3138800Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-08-26T19:36:13.3138900Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-08-26T19:36:13.3138970Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-08-26T19:36:13.3139070Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-08-26T19:36:13.3139240Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3139330Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-08-26T19:36:13.3140260Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-08-26T19:36:13.3141290Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3142090Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-08-26T19:36:13.3143020Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-08-26T19:36:13.3144030Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-08-26T19:36:13.3145040Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3145800Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-08-26T19:36:13.3146790Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-08-26T19:36:13.3147920Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-08-26T19:36:13.3148970Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3149730Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-08-26T19:36:13.3150680Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-08-26T19:36:13.3151600Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-08-26T19:36:13.3152580Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3153310Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-08-26T19:36:13.3154190Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-08-26T19:36:13.3155320Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-08-26T19:36:13.3156420Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-08-26T19:36:13.3157500Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3158260Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-08-26T19:36:13.3159270Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-08-26T19:36:13.3160300Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3161050Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-08-26T19:36:13.3162000Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-08-26T19:36:13.3163150Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-08-26T19:36:13.3164190Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3164950Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-08-26T19:36:13.3165900Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-08-26T19:36:13.3167040Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-08-26T19:36:13.3168180Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-08-26T19:36:13.3169190Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3169950Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-08-26T19:36:13.3170970Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-08-26T19:36:13.3172160Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3172750Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-08-26T19:36:13.3173710Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-08-26T19:36:13.3174830Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-08-26T19:36:13.3175880Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3176640Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-08-26T19:36:13.3177580Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-08-26T19:36:13.3178500Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-08-26T19:36:13.3179460Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3180200Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-08-26T19:36:13.3181060Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-08-26T19:36:13.3182200Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-08-26T19:36:13.3183330Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-08-26T19:36:13.3184360Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3185150Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-08-26T19:36:13.3186170Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-08-26T19:36:13.3187190Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3187960Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-08-26T19:36:13.3188910Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-08-26T19:36:13.3190050Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-08-26T19:36:13.3191100Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3191900Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-08-26T19:36:13.3192840Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-08-26T19:36:13.3193980Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-08-26T19:36:13.3195080Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-08-26T19:36:13.3196120Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3196870Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-08-26T19:36:13.3197880Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-08-26T19:36:13.3198910Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3199670Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-08-26T19:36:13.3200610Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-08-26T19:36:13.3201750Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-08-26T19:36:13.3202800Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3203550Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-08-26T19:36:13.3204490Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-08-26T19:36:13.3205620Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-08-26T19:36:13.3206700Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-08-26T19:36:13.3207720Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3208470Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-08-26T19:36:13.3209490Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-08-26T19:36:13.3210510Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3211270Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-08-26T19:36:13.3212190Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-08-26T19:36:13.3213220Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-08-26T19:36:13.3214270Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3215010Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-08-26T19:36:13.3215970Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-08-26T19:36:13.3217090Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-08-26T19:36:13.3218140Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3218900Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-08-26T19:36:13.3219840Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-08-26T19:36:13.3220860Z adding 'torch/include/ATen/ops/fill.h' 2025-08-26T19:36:13.3221840Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3222620Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-08-26T19:36:13.3223450Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-08-26T19:36:13.3224300Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-08-26T19:36:13.3225270Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3226000Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-08-26T19:36:13.3226880Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-08-26T19:36:13.3227770Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-08-26T19:36:13.3228600Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2025-08-26T19:36:13.3229450Z adding 'torch/include/ATen/ops/fill_native.h' 2025-08-26T19:36:13.3230560Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-08-26T19:36:13.3231490Z adding 'torch/include/ATen/ops/fix.h' 2025-08-26T19:36:13.3232460Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3233210Z adding 'torch/include/ATen/ops/fix_native.h' 2025-08-26T19:36:13.3234140Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-08-26T19:36:13.3235130Z adding 'torch/include/ATen/ops/flatten.h' 2025-08-26T19:36:13.3236140Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3236920Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-08-26T19:36:13.3237890Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3238770Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-08-26T19:36:13.3239610Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-08-26T19:36:13.3240480Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-08-26T19:36:13.3241590Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-08-26T19:36:13.3242600Z adding 'torch/include/ATen/ops/flip.h' 2025-08-26T19:36:13.3243690Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3244500Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-08-26T19:36:13.3245380Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-08-26T19:36:13.3246270Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2025-08-26T19:36:13.3247130Z adding 'torch/include/ATen/ops/flip_native.h' 2025-08-26T19:36:13.3248070Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-08-26T19:36:13.3248930Z adding 'torch/include/ATen/ops/fliplr.h' 2025-08-26T19:36:13.3249930Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3250690Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-08-26T19:36:13.3251550Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-08-26T19:36:13.3252390Z adding 'torch/include/ATen/ops/flipud.h' 2025-08-26T19:36:13.3253460Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3254250Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-08-26T19:36:13.3255110Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-08-26T19:36:13.3256120Z adding 'torch/include/ATen/ops/float_power.h' 2025-08-26T19:36:13.3257190Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3257990Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-08-26T19:36:13.3259200Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-08-26T19:36:13.3260050Z adding 'torch/include/ATen/ops/floor.h' 2025-08-26T19:36:13.3261090Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3261850Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-08-26T19:36:13.3262690Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-08-26T19:36:13.3263580Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-08-26T19:36:13.3264610Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3265490Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-08-26T19:36:13.3266630Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-08-26T19:36:13.3267120Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-08-26T19:36:13.3268000Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2025-08-26T19:36:13.3268880Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-08-26T19:36:13.3269980Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-08-26T19:36:13.3270800Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-08-26T19:36:13.3271720Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-08-26T19:36:13.3272540Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2025-08-26T19:36:13.3273430Z adding 'torch/include/ATen/ops/floor_native.h' 2025-08-26T19:36:13.3274320Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-08-26T19:36:13.3275280Z adding 'torch/include/ATen/ops/fmax.h' 2025-08-26T19:36:13.3276260Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3277010Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-08-26T19:36:13.3277810Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-08-26T19:36:13.3278690Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-08-26T19:36:13.3279530Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-08-26T19:36:13.3280320Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2025-08-26T19:36:13.3281130Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-08-26T19:36:13.3282100Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-08-26T19:36:13.3282980Z adding 'torch/include/ATen/ops/fmin.h' 2025-08-26T19:36:13.3283960Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3284680Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-08-26T19:36:13.3285550Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-08-26T19:36:13.3286380Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-08-26T19:36:13.3287210Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-08-26T19:36:13.3288000Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2025-08-26T19:36:13.3288900Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-08-26T19:36:13.3289810Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-08-26T19:36:13.3290750Z adding 'torch/include/ATen/ops/fmod.h' 2025-08-26T19:36:13.3291700Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3292640Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3293390Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-08-26T19:36:13.3294210Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-08-26T19:36:13.3295020Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-08-26T19:36:13.3295920Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-08-26T19:36:13.3296740Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2025-08-26T19:36:13.3297570Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-08-26T19:36:13.3298660Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-08-26T19:36:13.3299620Z adding 'torch/include/ATen/ops/frac.h' 2025-08-26T19:36:13.3300610Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3301340Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-08-26T19:36:13.3302170Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-08-26T19:36:13.3303020Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-08-26T19:36:13.3303870Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-08-26T19:36:13.3304640Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2025-08-26T19:36:13.3305490Z adding 'torch/include/ATen/ops/frac_native.h' 2025-08-26T19:36:13.3306510Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-08-26T19:36:13.3307500Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-08-26T19:36:13.3308470Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-08-26T19:36:13.3309510Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3310340Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3311190Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3312030Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-08-26T19:36:13.3312890Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-08-26T19:36:13.3313810Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-08-26T19:36:13.3314800Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-08-26T19:36:13.3315840Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3316590Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-08-26T19:36:13.3317510Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-08-26T19:36:13.3318360Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-08-26T19:36:13.3319240Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-08-26T19:36:13.3320080Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-08-26T19:36:13.3321150Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-08-26T19:36:13.3322100Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-08-26T19:36:13.3323080Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-08-26T19:36:13.3324360Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3325640Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3326560Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-08-26T19:36:13.3327710Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-08-26T19:36:13.3328760Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3329640Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-08-26T19:36:13.3330490Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-08-26T19:36:13.3332440Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-08-26T19:36:13.3333040Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-08-26T19:36:13.3334020Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-08-26T19:36:13.3335010Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-08-26T19:36:13.3335890Z adding 'torch/include/ATen/ops/frexp.h' 2025-08-26T19:36:13.3336820Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3337690Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-08-26T19:36:13.3338540Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-08-26T19:36:13.3339350Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-08-26T19:36:13.3340320Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-08-26T19:36:13.3341280Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-08-26T19:36:13.3342280Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3343070Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-08-26T19:36:13.3344310Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-08-26T19:36:13.3345330Z adding 'torch/include/ATen/ops/from_blob.h' 2025-08-26T19:36:13.3346380Z adding 'torch/include/ATen/ops/from_file.h' 2025-08-26T19:36:13.3347360Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3348200Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-08-26T19:36:13.3349110Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-08-26T19:36:13.3350160Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-08-26T19:36:13.3351430Z adding 'torch/include/ATen/ops/full.h' 2025-08-26T19:36:13.3352540Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3353540Z adding 'torch/include/ATen/ops/full_like.h' 2025-08-26T19:36:13.3354570Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3355360Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-08-26T19:36:13.3356370Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-08-26T19:36:13.3357310Z adding 'torch/include/ATen/ops/full_native.h' 2025-08-26T19:36:13.3358410Z adding 'torch/include/ATen/ops/full_ops.h' 2025-08-26T19:36:13.3359420Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-08-26T19:36:13.3360470Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3361290Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-08-26T19:36:13.3362290Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-08-26T19:36:13.3363170Z adding 'torch/include/ATen/ops/gather.h' 2025-08-26T19:36:13.3364080Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-08-26T19:36:13.3365130Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3365900Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-08-26T19:36:13.3366810Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-08-26T19:36:13.3367770Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3368680Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3369540Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-08-26T19:36:13.3370330Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-08-26T19:36:13.3371160Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-08-26T19:36:13.3372050Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-08-26T19:36:13.3372870Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2025-08-26T19:36:13.3373700Z adding 'torch/include/ATen/ops/gather_native.h' 2025-08-26T19:36:13.3374730Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-08-26T19:36:13.3375690Z adding 'torch/include/ATen/ops/gcd.h' 2025-08-26T19:36:13.3376690Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3377440Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-08-26T19:36:13.3378250Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-08-26T19:36:13.3379150Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-08-26T19:36:13.3379990Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-08-26T19:36:13.3380790Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-08-26T19:36:13.3381750Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-08-26T19:36:13.3382740Z adding 'torch/include/ATen/ops/ge.h' 2025-08-26T19:36:13.3383740Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3384510Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-08-26T19:36:13.3385350Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-08-26T19:36:13.3386250Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-08-26T19:36:13.3387120Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-08-26T19:36:13.3387980Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2025-08-26T19:36:13.3388870Z adding 'torch/include/ATen/ops/ge_native.h' 2025-08-26T19:36:13.3390030Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-08-26T19:36:13.3390970Z adding 'torch/include/ATen/ops/gelu.h' 2025-08-26T19:36:13.3391880Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-08-26T19:36:13.3392910Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3393750Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3394600Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3395410Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-08-26T19:36:13.3396270Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-08-26T19:36:13.3397130Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2025-08-26T19:36:13.3398030Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-08-26T19:36:13.3398970Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-08-26T19:36:13.3399950Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3400760Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-08-26T19:36:13.3401600Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-08-26T19:36:13.3402420Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-08-26T19:36:13.3403250Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-08-26T19:36:13.3404110Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2025-08-26T19:36:13.3405000Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-08-26T19:36:13.3405970Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-08-26T19:36:13.3406960Z adding 'torch/include/ATen/ops/geometric.h' 2025-08-26T19:36:13.3408000Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3408820Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-08-26T19:36:13.3409790Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-08-26T19:36:13.3410640Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-08-26T19:36:13.3411590Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-08-26T19:36:13.3412650Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-08-26T19:36:13.3413580Z adding 'torch/include/ATen/ops/geqrf.h' 2025-08-26T19:36:13.3414660Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-08-26T19:36:13.3415550Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-08-26T19:36:13.3416400Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-08-26T19:36:13.3417350Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-08-26T19:36:13.3418220Z adding 'torch/include/ATen/ops/ger.h' 2025-08-26T19:36:13.3419280Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3420080Z adding 'torch/include/ATen/ops/ger_native.h' 2025-08-26T19:36:13.3421040Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-08-26T19:36:13.3421920Z adding 'torch/include/ATen/ops/glu.h' 2025-08-26T19:36:13.3422890Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-08-26T19:36:13.3423790Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3424630Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3425530Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-08-26T19:36:13.3426560Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3427370Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-08-26T19:36:13.3428170Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-08-26T19:36:13.3429000Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-08-26T19:36:13.3430030Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-08-26T19:36:13.3430910Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2025-08-26T19:36:13.3431750Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-08-26T19:36:13.3432710Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-08-26T19:36:13.3433730Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3434480Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-08-26T19:36:13.3435290Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-08-26T19:36:13.3436160Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-08-26T19:36:13.3437180Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3437970Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-08-26T19:36:13.3438770Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-08-26T19:36:13.3439580Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-08-26T19:36:13.3440580Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-08-26T19:36:13.3441430Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-08-26T19:36:13.3442300Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-08-26T19:36:13.3443120Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2025-08-26T19:36:13.3444000Z adding 'torch/include/ATen/ops/glu_native.h' 2025-08-26T19:36:13.3444910Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-08-26T19:36:13.3445930Z adding 'torch/include/ATen/ops/gradient.h' 2025-08-26T19:36:13.3446970Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3447850Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-08-26T19:36:13.3449050Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-08-26T19:36:13.3450000Z adding 'torch/include/ATen/ops/greater.h' 2025-08-26T19:36:13.3451000Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3451900Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-08-26T19:36:13.3452920Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3453710Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-08-26T19:36:13.3454810Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-08-26T19:36:13.3455720Z adding 'torch/include/ATen/ops/greater_native.h' 2025-08-26T19:36:13.3456790Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-08-26T19:36:13.3457660Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-08-26T19:36:13.3458580Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-08-26T19:36:13.3459640Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-08-26T19:36:13.3460670Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3461500Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3462330Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3463240Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-08-26T19:36:13.3464260Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-08-26T19:36:13.3465220Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3466030Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-08-26T19:36:13.3466900Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-08-26T19:36:13.3467710Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2025-08-26T19:36:13.3468550Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-08-26T19:36:13.3469510Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-08-26T19:36:13.3470500Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-08-26T19:36:13.3471500Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-08-26T19:36:13.3472510Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3473320Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3474220Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3475100Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-08-26T19:36:13.3476100Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-08-26T19:36:13.3477040Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3477890Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-08-26T19:36:13.3478720Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-08-26T19:36:13.3479520Z adding 'torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h' 2025-08-26T19:36:13.3480350Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-08-26T19:36:13.3481360Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-08-26T19:36:13.3482330Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3483070Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-08-26T19:36:13.3483980Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-08-26T19:36:13.3484890Z adding 'torch/include/ATen/ops/group_norm.h' 2025-08-26T19:36:13.3485890Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3486630Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-08-26T19:36:13.3487550Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-08-26T19:36:13.3488510Z adding 'torch/include/ATen/ops/gru.h' 2025-08-26T19:36:13.3489420Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-08-26T19:36:13.3490390Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3491130Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-08-26T19:36:13.3492100Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-08-26T19:36:13.3493090Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3493850Z adding 'torch/include/ATen/ops/gru_native.h' 2025-08-26T19:36:13.3494840Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-08-26T19:36:13.3495820Z adding 'torch/include/ATen/ops/gt.h' 2025-08-26T19:36:13.3496820Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3497610Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-08-26T19:36:13.3498460Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-08-26T19:36:13.3499350Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-08-26T19:36:13.3500230Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-08-26T19:36:13.3501070Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2025-08-26T19:36:13.3501940Z adding 'torch/include/ATen/ops/gt_native.h' 2025-08-26T19:36:13.3503090Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-08-26T19:36:13.3504370Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-08-26T19:36:13.3505490Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3506320Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-08-26T19:36:13.3507670Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-08-26T19:36:13.3508710Z adding 'torch/include/ATen/ops/hann_window.h' 2025-08-26T19:36:13.3509730Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3510500Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-08-26T19:36:13.3511610Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-08-26T19:36:13.3512520Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-08-26T19:36:13.3513430Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-08-26T19:36:13.3514470Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3515300Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3516160Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3516970Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-08-26T19:36:13.3517820Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-08-26T19:36:13.3518740Z adding 'torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h' 2025-08-26T19:36:13.3519550Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-08-26T19:36:13.3520490Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-08-26T19:36:13.3521470Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3522310Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-08-26T19:36:13.3523160Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-08-26T19:36:13.3523980Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-08-26T19:36:13.3524830Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-08-26T19:36:13.3525710Z adding 'torch/include/ATen/ops/hardshrink_mps_dispatch.h' 2025-08-26T19:36:13.3526520Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-08-26T19:36:13.3527450Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-08-26T19:36:13.3528330Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-08-26T19:36:13.3529300Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-08-26T19:36:13.3530330Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3531080Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3531980Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3532850Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-08-26T19:36:13.3533700Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-08-26T19:36:13.3534500Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2025-08-26T19:36:13.3535300Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-08-26T19:36:13.3536310Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-08-26T19:36:13.3537610Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3538380Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-08-26T19:36:13.3539190Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-08-26T19:36:13.3540070Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-08-26T19:36:13.3540910Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-08-26T19:36:13.3541740Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2025-08-26T19:36:13.3542560Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-08-26T19:36:13.3543570Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-08-26T19:36:13.3544480Z adding 'torch/include/ATen/ops/hardswish.h' 2025-08-26T19:36:13.3545370Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-08-26T19:36:13.3546340Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3547190Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3548020Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3548830Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2025-08-26T19:36:13.3549610Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-08-26T19:36:13.3550600Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-08-26T19:36:13.3551470Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-08-26T19:36:13.3552300Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-08-26T19:36:13.3553130Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-08-26T19:36:13.3554010Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2025-08-26T19:36:13.3554830Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-08-26T19:36:13.3555800Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-08-26T19:36:13.3556720Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-08-26T19:36:13.3557700Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-08-26T19:36:13.3558640Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3559500Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3560290Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2025-08-26T19:36:13.3561200Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-08-26T19:36:13.3562160Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-08-26T19:36:13.3563040Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-08-26T19:36:13.3563880Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-08-26T19:36:13.3564800Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-08-26T19:36:13.3565640Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2025-08-26T19:36:13.3566500Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-08-26T19:36:13.3567460Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-08-26T19:36:13.3568440Z adding 'torch/include/ATen/ops/hash_tensor.h' 2025-08-26T19:36:13.3569490Z adding 'torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3570250Z adding 'torch/include/ATen/ops/hash_tensor_cpu_dispatch.h' 2025-08-26T19:36:13.3571090Z adding 'torch/include/ATen/ops/hash_tensor_cuda_dispatch.h' 2025-08-26T19:36:13.3571970Z adding 'torch/include/ATen/ops/hash_tensor_meta.h' 2025-08-26T19:36:13.3572840Z adding 'torch/include/ATen/ops/hash_tensor_meta_dispatch.h' 2025-08-26T19:36:13.3573740Z adding 'torch/include/ATen/ops/hash_tensor_native.h' 2025-08-26T19:36:13.3574710Z adding 'torch/include/ATen/ops/hash_tensor_ops.h' 2025-08-26T19:36:13.3575650Z adding 'torch/include/ATen/ops/heaviside.h' 2025-08-26T19:36:13.3576690Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3577470Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-08-26T19:36:13.3578300Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-08-26T19:36:13.3579210Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-08-26T19:36:13.3580050Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-08-26T19:36:13.3580840Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-08-26T19:36:13.3581800Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-08-26T19:36:13.3582770Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-08-26T19:36:13.3583760Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3584520Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-08-26T19:36:13.3585410Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-08-26T19:36:13.3586330Z adding 'torch/include/ATen/ops/histc.h' 2025-08-26T19:36:13.3587260Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-08-26T19:36:13.3588120Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-08-26T19:36:13.3588920Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2025-08-26T19:36:13.3589830Z adding 'torch/include/ATen/ops/histc_native.h' 2025-08-26T19:36:13.3590790Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-08-26T19:36:13.3591820Z adding 'torch/include/ATen/ops/histogram.h' 2025-08-26T19:36:13.3592800Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-08-26T19:36:13.3593740Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2025-08-26T19:36:13.3594650Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-08-26T19:36:13.3595760Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-08-26T19:36:13.3596700Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-08-26T19:36:13.3597780Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3598580Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-08-26T19:36:13.3599630Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-08-26T19:36:13.3600500Z adding 'torch/include/ATen/ops/hsplit.h' 2025-08-26T19:36:13.3601510Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3602280Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-08-26T19:36:13.3603240Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-08-26T19:36:13.3604080Z adding 'torch/include/ATen/ops/hspmm.h' 2025-08-26T19:36:13.3605000Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-08-26T19:36:13.3605920Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-08-26T19:36:13.3606810Z adding 'torch/include/ATen/ops/hstack.h' 2025-08-26T19:36:13.3607770Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3608570Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-08-26T19:36:13.3609510Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-08-26T19:36:13.3610400Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-08-26T19:36:13.3611350Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-08-26T19:36:13.3612370Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3613200Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3614030Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3614850Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2025-08-26T19:36:13.3615740Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-08-26T19:36:13.3616710Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-08-26T19:36:13.3617620Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-08-26T19:36:13.3618430Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-08-26T19:36:13.3619300Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2025-08-26T19:36:13.3620140Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-08-26T19:36:13.3621090Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-08-26T19:36:13.3621940Z adding 'torch/include/ATen/ops/hypot.h' 2025-08-26T19:36:13.3623020Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3623770Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-08-26T19:36:13.3624600Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-08-26T19:36:13.3625410Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-08-26T19:36:13.3626310Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-08-26T19:36:13.3627120Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2025-08-26T19:36:13.3627940Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-08-26T19:36:13.3628880Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-08-26T19:36:13.3629820Z adding 'torch/include/ATen/ops/i0.h' 2025-08-26T19:36:13.3630800Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3631540Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-08-26T19:36:13.3632350Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-08-26T19:36:13.3633230Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-08-26T19:36:13.3634070Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-08-26T19:36:13.3634870Z adding 'torch/include/ATen/ops/i0_mps_dispatch.h' 2025-08-26T19:36:13.3635690Z adding 'torch/include/ATen/ops/i0_native.h' 2025-08-26T19:36:13.3636680Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-08-26T19:36:13.3637570Z adding 'torch/include/ATen/ops/igamma.h' 2025-08-26T19:36:13.3638560Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3639290Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-08-26T19:36:13.3640160Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-08-26T19:36:13.3640980Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-08-26T19:36:13.3641830Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-08-26T19:36:13.3642650Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-08-26T19:36:13.3643640Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-08-26T19:36:13.3644540Z adding 'torch/include/ATen/ops/igammac.h' 2025-08-26T19:36:13.3645530Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3646290Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-08-26T19:36:13.3647130Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-08-26T19:36:13.3652310Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-08-26T19:36:13.3652530Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-08-26T19:36:13.3652650Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-08-26T19:36:13.3653710Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-08-26T19:36:13.3653850Z adding 'torch/include/ATen/ops/im2col.h' 2025-08-26T19:36:13.3653940Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-08-26T19:36:13.3654040Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-08-26T19:36:13.3654130Z adding 'torch/include/ATen/ops/im2col_mps_dispatch.h' 2025-08-26T19:36:13.3655120Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-08-26T19:36:13.3655950Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-08-26T19:36:13.3656810Z adding 'torch/include/ATen/ops/imag.h' 2025-08-26T19:36:13.3657810Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3658570Z adding 'torch/include/ATen/ops/imag_native.h' 2025-08-26T19:36:13.3659450Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-08-26T19:36:13.3660360Z adding 'torch/include/ATen/ops/index.h' 2025-08-26T19:36:13.3661370Z adding 'torch/include/ATen/ops/index_add.h' 2025-08-26T19:36:13.3662440Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3663240Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3664050Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-08-26T19:36:13.3664960Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-08-26T19:36:13.3665880Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-08-26T19:36:13.3666750Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-08-26T19:36:13.3667610Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2025-08-26T19:36:13.3668520Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-08-26T19:36:13.3669610Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-08-26T19:36:13.3670620Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3671410Z adding 'torch/include/ATen/ops/index_copy.h' 2025-08-26T19:36:13.3672470Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3673310Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3674110Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-08-26T19:36:13.3674950Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-08-26T19:36:13.3675910Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-08-26T19:36:13.3676770Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-08-26T19:36:13.3677590Z adding 'torch/include/ATen/ops/index_copy_mps_dispatch.h' 2025-08-26T19:36:13.3678440Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-08-26T19:36:13.3679600Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-08-26T19:36:13.3680550Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-08-26T19:36:13.3681400Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-08-26T19:36:13.3682410Z adding 'torch/include/ATen/ops/index_fill.h' 2025-08-26T19:36:13.3683480Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3684380Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3685160Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-08-26T19:36:13.3685980Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-08-26T19:36:13.3686830Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-08-26T19:36:13.3687640Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2025-08-26T19:36:13.3688540Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-08-26T19:36:13.3689970Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-08-26T19:36:13.3690980Z adding 'torch/include/ATen/ops/index_meta.h' 2025-08-26T19:36:13.3691890Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-08-26T19:36:13.3692680Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2025-08-26T19:36:13.3693510Z adding 'torch/include/ATen/ops/index_native.h' 2025-08-26T19:36:13.3694550Z adding 'torch/include/ATen/ops/index_ops.h' 2025-08-26T19:36:13.3695540Z adding 'torch/include/ATen/ops/index_put.h' 2025-08-26T19:36:13.3696520Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3697290Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-08-26T19:36:13.3698370Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-08-26T19:36:13.3699310Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-08-26T19:36:13.3700350Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3701130Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-08-26T19:36:13.3702050Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-08-26T19:36:13.3702950Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-08-26T19:36:13.3703820Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-08-26T19:36:13.3704680Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-08-26T19:36:13.3705740Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-08-26T19:36:13.3706700Z adding 'torch/include/ATen/ops/index_select.h' 2025-08-26T19:36:13.3707650Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-08-26T19:36:13.3708630Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3709470Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-08-26T19:36:13.3710380Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-08-26T19:36:13.3711330Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3712120Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-08-26T19:36:13.3713000Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-08-26T19:36:13.3713850Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2025-08-26T19:36:13.3714730Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-08-26T19:36:13.3715730Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-08-26T19:36:13.3716630Z adding 'torch/include/ATen/ops/indices.h' 2025-08-26T19:36:13.3717570Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3718360Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-08-26T19:36:13.3719330Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3720290Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3721010Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-08-26T19:36:13.3721940Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-08-26T19:36:13.3722760Z adding 'torch/include/ATen/ops/indices_native.h' 2025-08-26T19:36:13.3723690Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-08-26T19:36:13.3724590Z adding 'torch/include/ATen/ops/indices_sparsemps_dispatch.h' 2025-08-26T19:36:13.3725500Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-08-26T19:36:13.3726460Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3727260Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-08-26T19:36:13.3728160Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-08-26T19:36:13.3728950Z adding 'torch/include/ATen/ops/inner.h' 2025-08-26T19:36:13.3729900Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3730740Z adding 'torch/include/ATen/ops/inner_native.h' 2025-08-26T19:36:13.3731660Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-08-26T19:36:13.3732550Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-08-26T19:36:13.3733540Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3734350Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-08-26T19:36:13.3735330Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-08-26T19:36:13.3736170Z adding 'torch/include/ATen/ops/int_repr.h' 2025-08-26T19:36:13.3737130Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3737950Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-08-26T19:36:13.3738870Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-08-26T19:36:13.3739710Z adding 'torch/include/ATen/ops/inverse.h' 2025-08-26T19:36:13.3740680Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3741490Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-08-26T19:36:13.3742430Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-08-26T19:36:13.3743310Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-08-26T19:36:13.3744620Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3745490Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-08-26T19:36:13.3746400Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-08-26T19:36:13.3747260Z adding 'torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h' 2025-08-26T19:36:13.3748050Z adding 'torch/include/ATen/ops/is_complex.h' 2025-08-26T19:36:13.3749050Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3749770Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-08-26T19:36:13.3750630Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-08-26T19:36:13.3751460Z adding 'torch/include/ATen/ops/is_conj.h' 2025-08-26T19:36:13.3752450Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3753190Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-08-26T19:36:13.3754040Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-08-26T19:36:13.3754870Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-08-26T19:36:13.3755890Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3756620Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-08-26T19:36:13.3757490Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-08-26T19:36:13.3758300Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-08-26T19:36:13.3759290Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3760030Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-08-26T19:36:13.3760890Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-08-26T19:36:13.3761700Z adding 'torch/include/ATen/ops/is_inference.h' 2025-08-26T19:36:13.3762690Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3763430Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-08-26T19:36:13.3764300Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-08-26T19:36:13.3765070Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-08-26T19:36:13.3766040Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3766770Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-08-26T19:36:13.3767640Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-08-26T19:36:13.3768450Z adding 'torch/include/ATen/ops/is_neg.h' 2025-08-26T19:36:13.3769410Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3770160Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-08-26T19:36:13.3771000Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-08-26T19:36:13.3771810Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-08-26T19:36:13.3772840Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3773540Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-08-26T19:36:13.3774390Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-08-26T19:36:13.3775170Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-08-26T19:36:13.3776170Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3776930Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-08-26T19:36:13.3777820Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-08-26T19:36:13.3778640Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-08-26T19:36:13.3779640Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3780380Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-08-26T19:36:13.3781270Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-08-26T19:36:13.3782050Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-08-26T19:36:13.3783000Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-08-26T19:36:13.3783820Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-08-26T19:36:13.3784620Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2025-08-26T19:36:13.3785420Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-08-26T19:36:13.3786360Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-08-26T19:36:13.3787240Z adding 'torch/include/ATen/ops/is_signed.h' 2025-08-26T19:36:13.3788120Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3788840Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-08-26T19:36:13.3789750Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-08-26T19:36:13.3790610Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-08-26T19:36:13.3791540Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3792270Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-08-26T19:36:13.3793180Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-08-26T19:36:13.3794030Z adding 'torch/include/ATen/ops/isclose.h' 2025-08-26T19:36:13.3794990Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3795710Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-08-26T19:36:13.3796670Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-08-26T19:36:13.3797510Z adding 'torch/include/ATen/ops/isfinite.h' 2025-08-26T19:36:13.3798480Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3799200Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-08-26T19:36:13.3800140Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-08-26T19:36:13.3801200Z adding 'torch/include/ATen/ops/isin.h' 2025-08-26T19:36:13.3802220Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3803020Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-08-26T19:36:13.3803980Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-08-26T19:36:13.3804850Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-08-26T19:36:13.3805730Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-08-26T19:36:13.3806590Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2025-08-26T19:36:13.3807560Z adding 'torch/include/ATen/ops/isin_native.h' 2025-08-26T19:36:13.3808700Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-08-26T19:36:13.3809580Z adding 'torch/include/ATen/ops/isinf.h' 2025-08-26T19:36:13.3810520Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3811330Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-08-26T19:36:13.3812250Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-08-26T19:36:13.3813120Z adding 'torch/include/ATen/ops/isnan.h' 2025-08-26T19:36:13.3814040Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3814880Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-08-26T19:36:13.3815710Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-08-26T19:36:13.3816490Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2025-08-26T19:36:13.3817310Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-08-26T19:36:13.3818270Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-08-26T19:36:13.3819170Z adding 'torch/include/ATen/ops/isneginf.h' 2025-08-26T19:36:13.3820150Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3820890Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-08-26T19:36:13.3821760Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-08-26T19:36:13.3822570Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-08-26T19:36:13.3823430Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-08-26T19:36:13.3824250Z adding 'torch/include/ATen/ops/isneginf_mps_dispatch.h' 2025-08-26T19:36:13.3825160Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-08-26T19:36:13.3826090Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-08-26T19:36:13.3826950Z adding 'torch/include/ATen/ops/isposinf.h' 2025-08-26T19:36:13.3827910Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3828670Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-08-26T19:36:13.3829500Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-08-26T19:36:13.3830290Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-08-26T19:36:13.3831130Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-08-26T19:36:13.3831960Z adding 'torch/include/ATen/ops/isposinf_mps_dispatch.h' 2025-08-26T19:36:13.3832810Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-08-26T19:36:13.3833720Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-08-26T19:36:13.3834540Z adding 'torch/include/ATen/ops/isreal.h' 2025-08-26T19:36:13.3835530Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3836270Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-08-26T19:36:13.3837150Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-08-26T19:36:13.3838040Z adding 'torch/include/ATen/ops/istft.h' 2025-08-26T19:36:13.3839090Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3839870Z adding 'torch/include/ATen/ops/istft_native.h' 2025-08-26T19:36:13.3840840Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-08-26T19:36:13.3841650Z adding 'torch/include/ATen/ops/item.h' 2025-08-26T19:36:13.3842660Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3843400Z adding 'torch/include/ATen/ops/item_native.h' 2025-08-26T19:36:13.3844270Z adding 'torch/include/ATen/ops/item_ops.h' 2025-08-26T19:36:13.3845390Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-08-26T19:36:13.3846550Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3847370Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-08-26T19:36:13.3848530Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-08-26T19:36:13.3849400Z adding 'torch/include/ATen/ops/kl_div.h' 2025-08-26T19:36:13.3850420Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3851180Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-08-26T19:36:13.3852100Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-08-26T19:36:13.3852950Z adding 'torch/include/ATen/ops/kron.h' 2025-08-26T19:36:13.3853970Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3854740Z adding 'torch/include/ATen/ops/kron_native.h' 2025-08-26T19:36:13.3855640Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-08-26T19:36:13.3856940Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-08-26T19:36:13.3857990Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3858930Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3859810Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-08-26T19:36:13.3860620Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-08-26T19:36:13.3861550Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-08-26T19:36:13.3862620Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-08-26T19:36:13.3863490Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-08-26T19:36:13.3864440Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3865270Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-08-26T19:36:13.3866190Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-08-26T19:36:13.3867150Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-08-26T19:36:13.3868160Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3868960Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-08-26T19:36:13.3869910Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-08-26T19:36:13.3870790Z adding 'torch/include/ATen/ops/lcm.h' 2025-08-26T19:36:13.3871780Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3872580Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-08-26T19:36:13.3873420Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-08-26T19:36:13.3874220Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-08-26T19:36:13.3875070Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-08-26T19:36:13.3875940Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-08-26T19:36:13.3876920Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-08-26T19:36:13.3877810Z adding 'torch/include/ATen/ops/ldexp.h' 2025-08-26T19:36:13.3878750Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3879560Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-08-26T19:36:13.3880560Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-08-26T19:36:13.3881480Z adding 'torch/include/ATen/ops/le.h' 2025-08-26T19:36:13.3882470Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3883310Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-08-26T19:36:13.3884180Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-08-26T19:36:13.3884990Z adding 'torch/include/ATen/ops/le_meta.h' 2025-08-26T19:36:13.3885850Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-08-26T19:36:13.3886740Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2025-08-26T19:36:13.3887640Z adding 'torch/include/ATen/ops/le_native.h' 2025-08-26T19:36:13.3888720Z adding 'torch/include/ATen/ops/le_ops.h' 2025-08-26T19:36:13.3889630Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-08-26T19:36:13.3890640Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-08-26T19:36:13.3891670Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3892430Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-08-26T19:36:13.3893300Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-08-26T19:36:13.3894160Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-08-26T19:36:13.3895040Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-08-26T19:36:13.3895850Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2025-08-26T19:36:13.3896680Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-08-26T19:36:13.3897710Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-08-26T19:36:13.3898710Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3899470Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-08-26T19:36:13.3900300Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-08-26T19:36:13.3901160Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-08-26T19:36:13.3902040Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-08-26T19:36:13.3902870Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2025-08-26T19:36:13.3903700Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-08-26T19:36:13.3904730Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-08-26T19:36:13.3905700Z adding 'torch/include/ATen/ops/lerp.h' 2025-08-26T19:36:13.3906700Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3907580Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-08-26T19:36:13.3908480Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-08-26T19:36:13.3909360Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-08-26T19:36:13.3910310Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-08-26T19:36:13.3911260Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2025-08-26T19:36:13.3912200Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-08-26T19:36:13.3913400Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-08-26T19:36:13.3914420Z adding 'torch/include/ATen/ops/less.h' 2025-08-26T19:36:13.3915480Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3916410Z adding 'torch/include/ATen/ops/less_equal.h' 2025-08-26T19:36:13.3917420Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3918200Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-08-26T19:36:13.3919310Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-08-26T19:36:13.3920200Z adding 'torch/include/ATen/ops/less_native.h' 2025-08-26T19:36:13.3921300Z adding 'torch/include/ATen/ops/less_ops.h' 2025-08-26T19:36:13.3922170Z adding 'torch/include/ATen/ops/lgamma.h' 2025-08-26T19:36:13.3923150Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3923980Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-08-26T19:36:13.3924840Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-08-26T19:36:13.3925650Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-08-26T19:36:13.3926480Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-08-26T19:36:13.3927340Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2025-08-26T19:36:13.3928180Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-08-26T19:36:13.3929120Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-08-26T19:36:13.3930000Z adding 'torch/include/ATen/ops/lift.h' 2025-08-26T19:36:13.3931010Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3931800Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-08-26T19:36:13.3932770Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3933620Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-08-26T19:36:13.3934690Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.3935680Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3936430Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-08-26T19:36:13.3937410Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-08-26T19:36:13.3938370Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-08-26T19:36:13.3939330Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-08-26T19:36:13.3940230Z adding 'torch/include/ATen/ops/lift_native.h' 2025-08-26T19:36:13.3941220Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-08-26T19:36:13.3942190Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-08-26T19:36:13.3943190Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3944010Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-08-26T19:36:13.3945020Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3945860Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-08-26T19:36:13.3946750Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-08-26T19:36:13.3947580Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-08-26T19:36:13.3948420Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-08-26T19:36:13.3949320Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h' 2025-08-26T19:36:13.3950480Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-08-26T19:36:13.3951450Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-08-26T19:36:13.3952280Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-08-26T19:36:13.3953260Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-08-26T19:36:13.3954200Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-08-26T19:36:13.3955200Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3955990Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-08-26T19:36:13.3957050Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-08-26T19:36:13.3957950Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-08-26T19:36:13.3958960Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3959720Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-08-26T19:36:13.3960620Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-08-26T19:36:13.3961500Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-08-26T19:36:13.3962310Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-08-26T19:36:13.3963140Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2025-08-26T19:36:13.3964030Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-08-26T19:36:13.3965010Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-08-26T19:36:13.3965860Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-08-26T19:36:13.3966830Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3967630Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-08-26T19:36:13.3968560Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-08-26T19:36:13.3969420Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-08-26T19:36:13.3970450Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3971220Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-08-26T19:36:13.3972140Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-08-26T19:36:13.3973010Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-08-26T19:36:13.3973890Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-08-26T19:36:13.3974780Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-08-26T19:36:13.3975630Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-08-26T19:36:13.3976560Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-08-26T19:36:13.3977520Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-08-26T19:36:13.3978550Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3979310Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-08-26T19:36:13.3980270Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-08-26T19:36:13.3981150Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-08-26T19:36:13.3982150Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3982960Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-08-26T19:36:13.3983760Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-08-26T19:36:13.3984560Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-08-26T19:36:13.3985530Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-08-26T19:36:13.3986430Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-08-26T19:36:13.3987380Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3988130Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-08-26T19:36:13.3989140Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-08-26T19:36:13.3990090Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-08-26T19:36:13.3990970Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-08-26T19:36:13.3991810Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-08-26T19:36:13.3992670Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-08-26T19:36:13.3993610Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-08-26T19:36:13.3994420Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-08-26T19:36:13.3995360Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.3996260Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-08-26T19:36:13.3997300Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.3998060Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-08-26T19:36:13.3998890Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-08-26T19:36:13.3999770Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-08-26T19:36:13.4000620Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-08-26T19:36:13.4001420Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2025-08-26T19:36:13.4002270Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-08-26T19:36:13.4003270Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-08-26T19:36:13.4004130Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-08-26T19:36:13.4005040Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-08-26T19:36:13.4005960Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-08-26T19:36:13.4007000Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4007870Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-08-26T19:36:13.4008860Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4009640Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-08-26T19:36:13.4010560Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-08-26T19:36:13.4011400Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-08-26T19:36:13.4012270Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-08-26T19:36:13.4013090Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-08-26T19:36:13.4014140Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-08-26T19:36:13.4015030Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-08-26T19:36:13.4016020Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-08-26T19:36:13.4016980Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-08-26T19:36:13.4018140Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4018910Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-08-26T19:36:13.4019740Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-08-26T19:36:13.4020570Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-08-26T19:36:13.4021470Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-08-26T19:36:13.4022310Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-08-26T19:36:13.4023250Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-08-26T19:36:13.4024220Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-08-26T19:36:13.4025260Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4026110Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-08-26T19:36:13.4026930Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-08-26T19:36:13.4027790Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-08-26T19:36:13.4028890Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-08-26T19:36:13.4029840Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-08-26T19:36:13.4030820Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4031590Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-08-26T19:36:13.4032490Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-08-26T19:36:13.4033400Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-08-26T19:36:13.4034380Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4035240Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-08-26T19:36:13.4036310Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4037100Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-08-26T19:36:13.4037960Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-08-26T19:36:13.4038770Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-08-26T19:36:13.4039710Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-08-26T19:36:13.4040530Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h' 2025-08-26T19:36:13.4041360Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-08-26T19:36:13.4042380Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-08-26T19:36:13.4043300Z adding 'torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h' 2025-08-26T19:36:13.4044140Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-08-26T19:36:13.4045110Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-08-26T19:36:13.4045920Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-08-26T19:36:13.4046860Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-08-26T19:36:13.4047680Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-08-26T19:36:13.4048630Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-08-26T19:36:13.4049560Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-08-26T19:36:13.4050650Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4051420Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-08-26T19:36:13.4052320Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-08-26T19:36:13.4053180Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-08-26T19:36:13.4054180Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-08-26T19:36:13.4055060Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-08-26T19:36:13.4056000Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-08-26T19:36:13.4056890Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-08-26T19:36:13.4057910Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4058700Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-08-26T19:36:13.4059620Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-08-26T19:36:13.4060500Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-08-26T19:36:13.4061510Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4062340Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-08-26T19:36:13.4063120Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-08-26T19:36:13.4063930Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-08-26T19:36:13.4064910Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-08-26T19:36:13.4065950Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-08-26T19:36:13.4066990Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4067780Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-08-26T19:36:13.4068930Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-08-26T19:36:13.4069850Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-08-26T19:36:13.4070790Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4071540Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-08-26T19:36:13.4072530Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-08-26T19:36:13.4073690Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-08-26T19:36:13.4074760Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4075590Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-08-26T19:36:13.4076930Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-08-26T19:36:13.4077820Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-08-26T19:36:13.4078800Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4079560Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-08-26T19:36:13.4080530Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-08-26T19:36:13.4081560Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-08-26T19:36:13.4082600Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4083390Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-08-26T19:36:13.4084520Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-08-26T19:36:13.4085710Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-08-26T19:36:13.4086660Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4087600Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4088510Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4089330Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-08-26T19:36:13.4090560Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-08-26T19:36:13.4091520Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-08-26T19:36:13.4092600Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4093420Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-08-26T19:36:13.4094210Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-08-26T19:36:13.4095060Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-08-26T19:36:13.4095970Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-08-26T19:36:13.4096790Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-08-26T19:36:13.4097750Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-08-26T19:36:13.4098660Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-08-26T19:36:13.4099690Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4100470Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-08-26T19:36:13.4101410Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-08-26T19:36:13.4102270Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-08-26T19:36:13.4103300Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4104140Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-08-26T19:36:13.4105130Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4105880Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-08-26T19:36:13.4106920Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-08-26T19:36:13.4107760Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-08-26T19:36:13.4108700Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-08-26T19:36:13.4109630Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-08-26T19:36:13.4110600Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-08-26T19:36:13.4111470Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-08-26T19:36:13.4112320Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2025-08-26T19:36:13.4113130Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-08-26T19:36:13.4114140Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-08-26T19:36:13.4115050Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-08-26T19:36:13.4116050Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4116830Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-08-26T19:36:13.4117870Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-08-26T19:36:13.4118770Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-08-26T19:36:13.4119740Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4120500Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-08-26T19:36:13.4121520Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-08-26T19:36:13.4122390Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-08-26T19:36:13.4123370Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4124170Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-08-26T19:36:13.4125200Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-08-26T19:36:13.4126190Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-08-26T19:36:13.4127250Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4127990Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-08-26T19:36:13.4129000Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-08-26T19:36:13.4129930Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-08-26T19:36:13.4130960Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4131760Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-08-26T19:36:13.4132780Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-08-26T19:36:13.4133650Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-08-26T19:36:13.4134610Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4135370Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-08-26T19:36:13.4136340Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-08-26T19:36:13.4137290Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-08-26T19:36:13.4138330Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4139100Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-08-26T19:36:13.4140010Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-08-26T19:36:13.4140860Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-08-26T19:36:13.4141750Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-08-26T19:36:13.4142590Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2025-08-26T19:36:13.4143490Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-08-26T19:36:13.4144470Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-08-26T19:36:13.4145340Z adding 'torch/include/ATen/ops/linear.h' 2025-08-26T19:36:13.4146300Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-08-26T19:36:13.4147370Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4148180Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2025-08-26T19:36:13.4149020Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-08-26T19:36:13.4150030Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-08-26T19:36:13.4151040Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4151900Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4152670Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2025-08-26T19:36:13.4153530Z adding 'torch/include/ATen/ops/linear_native.h' 2025-08-26T19:36:13.4154520Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-08-26T19:36:13.4160430Z adding 'torch/include/ATen/ops/linspace.h' 2025-08-26T19:36:13.4160730Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4160830Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-08-26T19:36:13.4160940Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-08-26T19:36:13.4161090Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-08-26T19:36:13.4161190Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2025-08-26T19:36:13.4161390Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-08-26T19:36:13.4162990Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-08-26T19:36:13.4163690Z adding 'torch/include/ATen/ops/log.h' 2025-08-26T19:36:13.4164550Z adding 'torch/include/ATen/ops/log10.h' 2025-08-26T19:36:13.4165540Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4166370Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-08-26T19:36:13.4167200Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-08-26T19:36:13.4167990Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-08-26T19:36:13.4168830Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-08-26T19:36:13.4169720Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2025-08-26T19:36:13.4170530Z adding 'torch/include/ATen/ops/log10_native.h' 2025-08-26T19:36:13.4171470Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-08-26T19:36:13.4172320Z adding 'torch/include/ATen/ops/log1p.h' 2025-08-26T19:36:13.4173380Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4174120Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-08-26T19:36:13.4174920Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-08-26T19:36:13.4175730Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-08-26T19:36:13.4176620Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-08-26T19:36:13.4177410Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2025-08-26T19:36:13.4178260Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-08-26T19:36:13.4179190Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-08-26T19:36:13.4180110Z adding 'torch/include/ATen/ops/log2.h' 2025-08-26T19:36:13.4181120Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4181860Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-08-26T19:36:13.4182670Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-08-26T19:36:13.4183530Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-08-26T19:36:13.4184380Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-08-26T19:36:13.4185170Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2025-08-26T19:36:13.4186010Z adding 'torch/include/ATen/ops/log2_native.h' 2025-08-26T19:36:13.4187020Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-08-26T19:36:13.4188010Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4188730Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-08-26T19:36:13.4189530Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-08-26T19:36:13.4190400Z adding 'torch/include/ATen/ops/log_meta.h' 2025-08-26T19:36:13.4191230Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-08-26T19:36:13.4192030Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2025-08-26T19:36:13.4192820Z adding 'torch/include/ATen/ops/log_native.h' 2025-08-26T19:36:13.4193800Z adding 'torch/include/ATen/ops/log_normal.h' 2025-08-26T19:36:13.4194790Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4195580Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-08-26T19:36:13.4196400Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-08-26T19:36:13.4197270Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-08-26T19:36:13.4198150Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-08-26T19:36:13.4199110Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-08-26T19:36:13.4200070Z adding 'torch/include/ATen/ops/log_ops.h' 2025-08-26T19:36:13.4201040Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-08-26T19:36:13.4201980Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-08-26T19:36:13.4202900Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4203730Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4204610Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2025-08-26T19:36:13.4205440Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-08-26T19:36:13.4206400Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-08-26T19:36:13.4207320Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4208220Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-08-26T19:36:13.4209130Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-08-26T19:36:13.4209970Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-08-26T19:36:13.4210760Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2025-08-26T19:36:13.4211700Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-08-26T19:36:13.4212630Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-08-26T19:36:13.4213450Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-08-26T19:36:13.4214360Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-08-26T19:36:13.4215330Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-08-26T19:36:13.4216310Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4217190Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4217960Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-08-26T19:36:13.4219030Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-08-26T19:36:13.4219920Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-08-26T19:36:13.4220780Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-08-26T19:36:13.4221790Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4222600Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-08-26T19:36:13.4223450Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-08-26T19:36:13.4224280Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-08-26T19:36:13.4225110Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-08-26T19:36:13.4225980Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2025-08-26T19:36:13.4226830Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-08-26T19:36:13.4227750Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-08-26T19:36:13.4228810Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4229550Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-08-26T19:36:13.4230360Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-08-26T19:36:13.4231170Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-08-26T19:36:13.4232000Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-08-26T19:36:13.4232870Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2025-08-26T19:36:13.4233710Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-08-26T19:36:13.4234690Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-08-26T19:36:13.4235670Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-08-26T19:36:13.4236740Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4237650Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4238380Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-08-26T19:36:13.4239450Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-08-26T19:36:13.4240330Z adding 'torch/include/ATen/ops/logdet.h' 2025-08-26T19:36:13.4241320Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4242040Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-08-26T19:36:13.4242920Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-08-26T19:36:13.4243870Z adding 'torch/include/ATen/ops/logical_and.h' 2025-08-26T19:36:13.4244830Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4245600Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-08-26T19:36:13.4246430Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-08-26T19:36:13.4247290Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2025-08-26T19:36:13.4248110Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-08-26T19:36:13.4249110Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-08-26T19:36:13.4250000Z adding 'torch/include/ATen/ops/logical_not.h' 2025-08-26T19:36:13.4251000Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4251790Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-08-26T19:36:13.4252600Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-08-26T19:36:13.4253400Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2025-08-26T19:36:13.4254280Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-08-26T19:36:13.4255240Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-08-26T19:36:13.4256110Z adding 'torch/include/ATen/ops/logical_or.h' 2025-08-26T19:36:13.4257080Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4257920Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-08-26T19:36:13.4258740Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-08-26T19:36:13.4259530Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2025-08-26T19:36:13.4260330Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-08-26T19:36:13.4261360Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-08-26T19:36:13.4262260Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-08-26T19:36:13.4263200Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4263960Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-08-26T19:36:13.4264830Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-08-26T19:36:13.4265620Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2025-08-26T19:36:13.4266430Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-08-26T19:36:13.4267400Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-08-26T19:36:13.4268360Z adding 'torch/include/ATen/ops/logit.h' 2025-08-26T19:36:13.4269330Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-08-26T19:36:13.4270340Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4271100Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4272010Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4272870Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-08-26T19:36:13.4273710Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-08-26T19:36:13.4274550Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2025-08-26T19:36:13.4275450Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-08-26T19:36:13.4276410Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-08-26T19:36:13.4277280Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-08-26T19:36:13.4278100Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-08-26T19:36:13.4279020Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-08-26T19:36:13.4279890Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2025-08-26T19:36:13.4280720Z adding 'torch/include/ATen/ops/logit_native.h' 2025-08-26T19:36:13.4281700Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-08-26T19:36:13.4283080Z adding 'torch/include/ATen/ops/logspace.h' 2025-08-26T19:36:13.4284300Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4285110Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-08-26T19:36:13.4285960Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-08-26T19:36:13.4286880Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-08-26T19:36:13.4287830Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-08-26T19:36:13.4289230Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-08-26T19:36:13.4290160Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-08-26T19:36:13.4291230Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4292150Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4292990Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4293750Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-08-26T19:36:13.4294850Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-08-26T19:36:13.4295800Z adding 'torch/include/ATen/ops/lshift.h' 2025-08-26T19:36:13.4296780Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4297600Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-08-26T19:36:13.4298440Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-08-26T19:36:13.4299280Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-08-26T19:36:13.4300100Z adding 'torch/include/ATen/ops/lshift_mps_dispatch.h' 2025-08-26T19:36:13.4300930Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-08-26T19:36:13.4302090Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-08-26T19:36:13.4303060Z adding 'torch/include/ATen/ops/lstm.h' 2025-08-26T19:36:13.4303940Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-08-26T19:36:13.4304920Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4305780Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-08-26T19:36:13.4306800Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-08-26T19:36:13.4307890Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4308900Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-08-26T19:36:13.4309990Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4310840Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2025-08-26T19:36:13.4311730Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-08-26T19:36:13.4312880Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-08-26T19:36:13.4313780Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-08-26T19:36:13.4314800Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-08-26T19:36:13.4315740Z adding 'torch/include/ATen/ops/lt.h' 2025-08-26T19:36:13.4316740Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4317600Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-08-26T19:36:13.4318480Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-08-26T19:36:13.4319310Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-08-26T19:36:13.4320150Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-08-26T19:36:13.4321040Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2025-08-26T19:36:13.4321940Z adding 'torch/include/ATen/ops/lt_native.h' 2025-08-26T19:36:13.4323020Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-08-26T19:36:13.4323960Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-08-26T19:36:13.4324990Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4325750Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-08-26T19:36:13.4326670Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-08-26T19:36:13.4327640Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-08-26T19:36:13.4328710Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4329520Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-08-26T19:36:13.4330380Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-08-26T19:36:13.4331190Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-08-26T19:36:13.4332120Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-08-26T19:36:13.4332950Z adding 'torch/include/ATen/ops/lu_unpack_mps_dispatch.h' 2025-08-26T19:36:13.4333780Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-08-26T19:36:13.4334770Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-08-26T19:36:13.4335650Z adding 'torch/include/ATen/ops/mH.h' 2025-08-26T19:36:13.4336590Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4337340Z adding 'torch/include/ATen/ops/mH_native.h' 2025-08-26T19:36:13.4338200Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-08-26T19:36:13.4339070Z adding 'torch/include/ATen/ops/mT.h' 2025-08-26T19:36:13.4339990Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4340730Z adding 'torch/include/ATen/ops/mT_native.h' 2025-08-26T19:36:13.4341590Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-08-26T19:36:13.4342590Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-08-26T19:36:13.4343570Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4344320Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-08-26T19:36:13.4345270Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-08-26T19:36:13.4346280Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-08-26T19:36:13.4347310Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4348040Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-08-26T19:36:13.4348860Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-08-26T19:36:13.4349760Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-08-26T19:36:13.4350560Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2025-08-26T19:36:13.4351470Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-08-26T19:36:13.4352620Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-08-26T19:36:13.4353600Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-08-26T19:36:13.4354570Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-08-26T19:36:13.4355540Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4356280Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-08-26T19:36:13.4357240Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-08-26T19:36:13.4358190Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4358980Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-08-26T19:36:13.4359800Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-08-26T19:36:13.4360640Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-08-26T19:36:13.4361460Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2025-08-26T19:36:13.4362280Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-08-26T19:36:13.4363250Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-08-26T19:36:13.4364190Z adding 'torch/include/ATen/ops/masked_select.h' 2025-08-26T19:36:13.4365070Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-08-26T19:36:13.4366020Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4366770Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-08-26T19:36:13.4367720Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-08-26T19:36:13.4368990Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-08-26T19:36:13.4369800Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-08-26T19:36:13.4370600Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2025-08-26T19:36:13.4371510Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-08-26T19:36:13.4372450Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-08-26T19:36:13.4373340Z adding 'torch/include/ATen/ops/matmul.h' 2025-08-26T19:36:13.4374270Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-08-26T19:36:13.4375320Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4376090Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-08-26T19:36:13.4377080Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-08-26T19:36:13.4378030Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4378820Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-08-26T19:36:13.4379760Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-08-26T19:36:13.4380590Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-08-26T19:36:13.4381530Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4382360Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-08-26T19:36:13.4383250Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-08-26T19:36:13.4384130Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-08-26T19:36:13.4384980Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-08-26T19:36:13.4385990Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4386750Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-08-26T19:36:13.4387640Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-08-26T19:36:13.4388530Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4389330Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-08-26T19:36:13.4390220Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-08-26T19:36:13.4391080Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-08-26T19:36:13.4392060Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4392870Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-08-26T19:36:13.4393790Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-08-26T19:36:13.4394860Z adding 'torch/include/ATen/ops/max.h' 2025-08-26T19:36:13.4395860Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4396800Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4397650Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-08-26T19:36:13.4398510Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-08-26T19:36:13.4399410Z adding 'torch/include/ATen/ops/max_meta.h' 2025-08-26T19:36:13.4400340Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-08-26T19:36:13.4401230Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2025-08-26T19:36:13.4402150Z adding 'torch/include/ATen/ops/max_native.h' 2025-08-26T19:36:13.4403380Z adding 'torch/include/ATen/ops/max_ops.h' 2025-08-26T19:36:13.4404340Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-08-26T19:36:13.4405320Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4406050Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-08-26T19:36:13.4407000Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-08-26T19:36:13.4407970Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-08-26T19:36:13.4408950Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4409700Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-08-26T19:36:13.4410630Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-08-26T19:36:13.4411530Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-08-26T19:36:13.4412540Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-08-26T19:36:13.4413510Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4414330Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.4415220Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-08-26T19:36:13.4416220Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-08-26T19:36:13.4417170Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4417970Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2025-08-26T19:36:13.4418830Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-08-26T19:36:13.4419750Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-08-26T19:36:13.4420720Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-08-26T19:36:13.4421710Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-08-26T19:36:13.4422810Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4423610Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4424460Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4425310Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-08-26T19:36:13.4426230Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-08-26T19:36:13.4427080Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2025-08-26T19:36:13.4427980Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-08-26T19:36:13.4428970Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-08-26T19:36:13.4430030Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4430850Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-08-26T19:36:13.4431700Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-08-26T19:36:13.4432520Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-08-26T19:36:13.4433480Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-08-26T19:36:13.4434340Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2025-08-26T19:36:13.4435210Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-08-26T19:36:13.4436190Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-08-26T19:36:13.4437120Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-08-26T19:36:13.4438080Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4438830Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-08-26T19:36:13.4439740Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-08-26T19:36:13.4440790Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-08-26T19:36:13.4441800Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-08-26T19:36:13.4442730Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4443580Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4444490Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h' 2025-08-26T19:36:13.4445380Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-08-26T19:36:13.4446370Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-08-26T19:36:13.4447240Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-08-26T19:36:13.4448130Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-08-26T19:36:13.4448990Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h' 2025-08-26T19:36:13.4449890Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-08-26T19:36:13.4450890Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-08-26T19:36:13.4452000Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-08-26T19:36:13.4452990Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-08-26T19:36:13.4453860Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-08-26T19:36:13.4454720Z adding 'torch/include/ATen/ops/max_unpool2d_mps_dispatch.h' 2025-08-26T19:36:13.4455640Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-08-26T19:36:13.4456600Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-08-26T19:36:13.4457690Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-08-26T19:36:13.4458650Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-08-26T19:36:13.4459570Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-08-26T19:36:13.4460440Z adding 'torch/include/ATen/ops/max_unpool3d_mps_dispatch.h' 2025-08-26T19:36:13.4461290Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-08-26T19:36:13.4462250Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-08-26T19:36:13.4463180Z adding 'torch/include/ATen/ops/maximum.h' 2025-08-26T19:36:13.4464190Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4464970Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-08-26T19:36:13.4465770Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-08-26T19:36:13.4466640Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-08-26T19:36:13.4467490Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-08-26T19:36:13.4468290Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2025-08-26T19:36:13.4469100Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-08-26T19:36:13.4470110Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-08-26T19:36:13.4471150Z adding 'torch/include/ATen/ops/mean.h' 2025-08-26T19:36:13.4472110Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4473010Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4473910Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4474770Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-08-26T19:36:13.4475580Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-08-26T19:36:13.4476430Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-08-26T19:36:13.4477380Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-08-26T19:36:13.4478270Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2025-08-26T19:36:13.4479220Z adding 'torch/include/ATen/ops/mean_native.h' 2025-08-26T19:36:13.4480380Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-08-26T19:36:13.4481540Z adding 'torch/include/ATen/ops/median.h' 2025-08-26T19:36:13.4482590Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4483490Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4484300Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-08-26T19:36:13.4485180Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-08-26T19:36:13.4486020Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2025-08-26T19:36:13.4486920Z adding 'torch/include/ATen/ops/median_native.h' 2025-08-26T19:36:13.4488070Z adding 'torch/include/ATen/ops/median_ops.h' 2025-08-26T19:36:13.4489010Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-08-26T19:36:13.4490010Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4490750Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-08-26T19:36:13.4491710Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-08-26T19:36:13.4492830Z adding 'torch/include/ATen/ops/min.h' 2025-08-26T19:36:13.4493850Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4494760Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4495560Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-08-26T19:36:13.4496460Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-08-26T19:36:13.4497360Z adding 'torch/include/ATen/ops/min_meta.h' 2025-08-26T19:36:13.4498240Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-08-26T19:36:13.4499090Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2025-08-26T19:36:13.4500110Z adding 'torch/include/ATen/ops/min_native.h' 2025-08-26T19:36:13.4501300Z adding 'torch/include/ATen/ops/min_ops.h' 2025-08-26T19:36:13.4502210Z adding 'torch/include/ATen/ops/minimum.h' 2025-08-26T19:36:13.4503190Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4504000Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-08-26T19:36:13.4504830Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-08-26T19:36:13.4505630Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-08-26T19:36:13.4506480Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-08-26T19:36:13.4507350Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2025-08-26T19:36:13.4508180Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-08-26T19:36:13.4509110Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-08-26T19:36:13.4510160Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-08-26T19:36:13.4511250Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-08-26T19:36:13.4512320Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4513140Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4514010Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-08-26T19:36:13.4515150Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-08-26T19:36:13.4516180Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4517050Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-08-26T19:36:13.4517930Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-08-26T19:36:13.4519110Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-08-26T19:36:13.4520370Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-08-26T19:36:13.4521420Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-08-26T19:36:13.4522370Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-08-26T19:36:13.4523330Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-08-26T19:36:13.4524320Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-08-26T19:36:13.4525390Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4526210Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-08-26T19:36:13.4527130Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-08-26T19:36:13.4528140Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-08-26T19:36:13.4529140Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-08-26T19:36:13.4530060Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-08-26T19:36:13.4531010Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-08-26T19:36:13.4531980Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-08-26T19:36:13.4533340Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-08-26T19:36:13.4534430Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4535440Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-08-26T19:36:13.4536340Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-08-26T19:36:13.4537380Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-08-26T19:36:13.4538610Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-08-26T19:36:13.4539700Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4540540Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-08-26T19:36:13.4541370Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-08-26T19:36:13.4542380Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-08-26T19:36:13.4543490Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-08-26T19:36:13.4544680Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-08-26T19:36:13.4545750Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4546640Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4547620Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-08-26T19:36:13.4548850Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-08-26T19:36:13.4549880Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4550710Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-08-26T19:36:13.4551650Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-08-26T19:36:13.4552830Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-08-26T19:36:13.4553690Z adding 'torch/include/ATen/ops/mish.h' 2025-08-26T19:36:13.4554560Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-08-26T19:36:13.4555600Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4556430Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4557260Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4558110Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2025-08-26T19:36:13.4558970Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-08-26T19:36:13.4559880Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-08-26T19:36:13.4560830Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4561570Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-08-26T19:36:13.4562450Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-08-26T19:36:13.4563260Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-08-26T19:36:13.4564090Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-08-26T19:36:13.4564890Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2025-08-26T19:36:13.4565780Z adding 'torch/include/ATen/ops/mish_native.h' 2025-08-26T19:36:13.4566760Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-08-26T19:36:13.4567700Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-08-26T19:36:13.4568640Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-08-26T19:36:13.4569680Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4570470Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-08-26T19:36:13.4571470Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-08-26T19:36:13.4572330Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-08-26T19:36:13.4573400Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-08-26T19:36:13.4574620Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-08-26T19:36:13.4575750Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4576720Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-08-26T19:36:13.4577810Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-08-26T19:36:13.4578710Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-08-26T19:36:13.4579690Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-08-26T19:36:13.4580710Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4581570Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-08-26T19:36:13.4582580Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4583340Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-08-26T19:36:13.4584640Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-08-26T19:36:13.4585550Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-08-26T19:36:13.4586550Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-08-26T19:36:13.4587510Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-08-26T19:36:13.4588510Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4589370Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-08-26T19:36:13.4590410Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-08-26T19:36:13.4591390Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4592220Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-08-26T19:36:13.4593290Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-08-26T19:36:13.4594280Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-08-26T19:36:13.4595270Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-08-26T19:36:13.4596260Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4597100Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-08-26T19:36:13.4598110Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-08-26T19:36:13.4599080Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4599870Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-08-26T19:36:13.4600890Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-08-26T19:36:13.4601830Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-08-26T19:36:13.4602840Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-08-26T19:36:13.4603830Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4604700Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-08-26T19:36:13.4605670Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-08-26T19:36:13.4606620Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4607380Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-08-26T19:36:13.4608400Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-08-26T19:36:13.4609690Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-08-26T19:36:13.4610780Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4611570Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-08-26T19:36:13.4612620Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-08-26T19:36:13.4613830Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-08-26T19:36:13.4615900Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4616420Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-08-26T19:36:13.4617460Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-08-26T19:36:13.4618510Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-08-26T19:36:13.4619740Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-08-26T19:36:13.4620840Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4621860Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4622780Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-08-26T19:36:13.4624030Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-08-26T19:36:13.4625080Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4626000Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-08-26T19:36:13.4626890Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-08-26T19:36:13.4628000Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-08-26T19:36:13.4628920Z adding 'torch/include/ATen/ops/mm.h' 2025-08-26T19:36:13.4629970Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4630750Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-08-26T19:36:13.4631640Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-08-26T19:36:13.4632470Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-08-26T19:36:13.4633410Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-08-26T19:36:13.4634210Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2025-08-26T19:36:13.4635110Z adding 'torch/include/ATen/ops/mm_native.h' 2025-08-26T19:36:13.4636100Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-08-26T19:36:13.4637150Z adding 'torch/include/ATen/ops/mode.h' 2025-08-26T19:36:13.4638180Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4639030Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4639810Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-08-26T19:36:13.4640710Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-08-26T19:36:13.4641580Z adding 'torch/include/ATen/ops/mode_native.h' 2025-08-26T19:36:13.4642640Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-08-26T19:36:13.4643520Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-08-26T19:36:13.4644570Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4645340Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-08-26T19:36:13.4646270Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-08-26T19:36:13.4647140Z adding 'torch/include/ATen/ops/movedim.h' 2025-08-26T19:36:13.4648160Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4648920Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-08-26T19:36:13.4649870Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-08-26T19:36:13.4651200Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-08-26T19:36:13.4652330Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4653190Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2025-08-26T19:36:13.4654050Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-08-26T19:36:13.4655110Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-08-26T19:36:13.4656550Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-08-26T19:36:13.4657770Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4658680Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2025-08-26T19:36:13.4659530Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-08-26T19:36:13.4660630Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-08-26T19:36:13.4661470Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-08-26T19:36:13.4662470Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-08-26T19:36:13.4663370Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4664290Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4665130Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2025-08-26T19:36:13.4666000Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-08-26T19:36:13.4666940Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-08-26T19:36:13.4667990Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4668760Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-08-26T19:36:13.4669600Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-08-26T19:36:13.4670430Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-08-26T19:36:13.4671340Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-08-26T19:36:13.4672170Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2025-08-26T19:36:13.4673000Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-08-26T19:36:13.4673940Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-08-26T19:36:13.4679350Z adding 'torch/include/ATen/ops/msort.h' 2025-08-26T19:36:13.4679790Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4679880Z adding 'torch/include/ATen/ops/msort_native.h' 2025-08-26T19:36:13.4679950Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-08-26T19:36:13.4680020Z adding 'torch/include/ATen/ops/mul.h' 2025-08-26T19:36:13.4680170Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4680390Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4681020Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-08-26T19:36:13.4681890Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-08-26T19:36:13.4682740Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-08-26T19:36:13.4683560Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-08-26T19:36:13.4684390Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2025-08-26T19:36:13.4685400Z adding 'torch/include/ATen/ops/mul_native.h' 2025-08-26T19:36:13.4686510Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-08-26T19:36:13.4687470Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-08-26T19:36:13.4688490Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-08-26T19:36:13.4689490Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4690390Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4691260Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-08-26T19:36:13.4692250Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-08-26T19:36:13.4693220Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-08-26T19:36:13.4694080Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-08-26T19:36:13.4694950Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-08-26T19:36:13.4695960Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-08-26T19:36:13.4696930Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-08-26T19:36:13.4697900Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-08-26T19:36:13.4698860Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4699700Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4700600Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-08-26T19:36:13.4701590Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-08-26T19:36:13.4702540Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4703450Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-08-26T19:36:13.4704450Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-08-26T19:36:13.4705310Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-08-26T19:36:13.4706150Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-08-26T19:36:13.4707170Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-08-26T19:36:13.4708030Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-08-26T19:36:13.4708980Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-08-26T19:36:13.4710040Z adding 'torch/include/ATen/ops/multinomial.h' 2025-08-26T19:36:13.4711040Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-08-26T19:36:13.4711980Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-08-26T19:36:13.4712830Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2025-08-26T19:36:13.4713680Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-08-26T19:36:13.4714620Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-08-26T19:36:13.4715590Z adding 'torch/include/ATen/ops/multiply.h' 2025-08-26T19:36:13.4716590Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4717340Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-08-26T19:36:13.4718380Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-08-26T19:36:13.4719310Z adding 'torch/include/ATen/ops/mv.h' 2025-08-26T19:36:13.4720280Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4721030Z adding 'torch/include/ATen/ops/mv_native.h' 2025-08-26T19:36:13.4721940Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-08-26T19:36:13.4722910Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-08-26T19:36:13.4723880Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4724660Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-08-26T19:36:13.4725480Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-08-26T19:36:13.4726350Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-08-26T19:36:13.4727320Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-08-26T19:36:13.4728250Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-08-26T19:36:13.4729240Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4730120Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-08-26T19:36:13.4730970Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-08-26T19:36:13.4731760Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2025-08-26T19:36:13.4732640Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-08-26T19:36:13.4733710Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-08-26T19:36:13.4734640Z adding 'torch/include/ATen/ops/nanmean.h' 2025-08-26T19:36:13.4735620Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4736400Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-08-26T19:36:13.4737410Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-08-26T19:36:13.4738440Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-08-26T19:36:13.4739420Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4740350Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4741220Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-08-26T19:36:13.4742070Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-08-26T19:36:13.4742880Z adding 'torch/include/ATen/ops/nanmedian_mps_dispatch.h' 2025-08-26T19:36:13.4743750Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-08-26T19:36:13.4744960Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-08-26T19:36:13.4745980Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-08-26T19:36:13.4747020Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4747810Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-08-26T19:36:13.4748900Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-08-26T19:36:13.4749840Z adding 'torch/include/ATen/ops/nansum.h' 2025-08-26T19:36:13.4750780Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-08-26T19:36:13.4751600Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-08-26T19:36:13.4752500Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2025-08-26T19:36:13.4753330Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-08-26T19:36:13.4754280Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-08-26T19:36:13.4755240Z adding 'torch/include/ATen/ops/narrow.h' 2025-08-26T19:36:13.4756270Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4757250Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-08-26T19:36:13.4758280Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4759070Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-08-26T19:36:13.4759980Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-08-26T19:36:13.4760960Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-08-26T19:36:13.4761790Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-08-26T19:36:13.4762710Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-08-26T19:36:13.4763780Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-08-26T19:36:13.4765160Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-08-26T19:36:13.4765900Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4766750Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4767660Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4768480Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2025-08-26T19:36:13.4769410Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-08-26T19:36:13.4770500Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-08-26T19:36:13.4771500Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-08-26T19:36:13.4772380Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-08-26T19:36:13.4773230Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2025-08-26T19:36:13.4774180Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-08-26T19:36:13.4775290Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-08-26T19:36:13.4776250Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-08-26T19:36:13.4777250Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4778050Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-08-26T19:36:13.4778940Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-08-26T19:36:13.4779830Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-08-26T19:36:13.4780700Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-08-26T19:36:13.4781660Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-08-26T19:36:13.4782750Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4783620Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4784450Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4785270Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-08-26T19:36:13.4786270Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-08-26T19:36:13.4787240Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4788010Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-08-26T19:36:13.4788820Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-08-26T19:36:13.4789720Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-08-26T19:36:13.4790700Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-08-26T19:36:13.4791890Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-08-26T19:36:13.4793240Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-08-26T19:36:13.4794400Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4795230Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4796070Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4796970Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-08-26T19:36:13.4798120Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-08-26T19:36:13.4799190Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4800040Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-08-26T19:36:13.4800900Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-08-26T19:36:13.4801830Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-08-26T19:36:13.4803210Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-08-26T19:36:13.4804400Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-08-26T19:36:13.4805770Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-08-26T19:36:13.4806920Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4807760Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4808680Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4809480Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2025-08-26T19:36:13.4810480Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-08-26T19:36:13.4811530Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-08-26T19:36:13.4812570Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4813380Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-08-26T19:36:13.4814280Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-08-26T19:36:13.4815110Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2025-08-26T19:36:13.4816040Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-08-26T19:36:13.4817040Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-08-26T19:36:13.4818090Z adding 'torch/include/ATen/ops/native_norm.h' 2025-08-26T19:36:13.4819090Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4819870Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-08-26T19:36:13.4820920Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-08-26T19:36:13.4821900Z adding 'torch/include/ATen/ops/ne.h' 2025-08-26T19:36:13.4822900Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4823730Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-08-26T19:36:13.4824580Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-08-26T19:36:13.4825480Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-08-26T19:36:13.4826360Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-08-26T19:36:13.4827260Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2025-08-26T19:36:13.4828140Z adding 'torch/include/ATen/ops/ne_native.h' 2025-08-26T19:36:13.4829270Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-08-26T19:36:13.4830200Z adding 'torch/include/ATen/ops/neg.h' 2025-08-26T19:36:13.4831200Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4831930Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-08-26T19:36:13.4832810Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-08-26T19:36:13.4833640Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-08-26T19:36:13.4834460Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-08-26T19:36:13.4835240Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2025-08-26T19:36:13.4836170Z adding 'torch/include/ATen/ops/neg_native.h' 2025-08-26T19:36:13.4837160Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-08-26T19:36:13.4838110Z adding 'torch/include/ATen/ops/negative.h' 2025-08-26T19:36:13.4839100Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4839930Z adding 'torch/include/ATen/ops/negative_native.h' 2025-08-26T19:36:13.4840940Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-08-26T19:36:13.4841850Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-08-26T19:36:13.4842820Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4843650Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-08-26T19:36:13.4844590Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-08-26T19:36:13.4845680Z adding 'torch/include/ATen/ops/new_empty.h' 2025-08-26T19:36:13.4846750Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4847600Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-08-26T19:36:13.4848590Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-08-26T19:36:13.4849710Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-08-26T19:36:13.4850750Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4851760Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4852540Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-08-26T19:36:13.4853510Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-08-26T19:36:13.4854590Z adding 'torch/include/ATen/ops/new_full.h' 2025-08-26T19:36:13.4855810Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4856670Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-08-26T19:36:13.4857610Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-08-26T19:36:13.4858650Z adding 'torch/include/ATen/ops/new_ones.h' 2025-08-26T19:36:13.4859750Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4860530Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-08-26T19:36:13.4861490Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-08-26T19:36:13.4862570Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-08-26T19:36:13.4863650Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4864440Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-08-26T19:36:13.4865390Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-08-26T19:36:13.4866280Z adding 'torch/include/ATen/ops/nextafter.h' 2025-08-26T19:36:13.4867350Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4868130Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-08-26T19:36:13.4868980Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-08-26T19:36:13.4869790Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-08-26T19:36:13.4870720Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-08-26T19:36:13.4871530Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2025-08-26T19:36:13.4872350Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-08-26T19:36:13.4873320Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-08-26T19:36:13.4874480Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-08-26T19:36:13.4875620Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-08-26T19:36:13.4876790Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-08-26T19:36:13.4877800Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4878780Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4879660Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.4880540Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-08-26T19:36:13.4881550Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-08-26T19:36:13.4882660Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4883700Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-08-26T19:36:13.4884720Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-08-26T19:36:13.4885630Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-08-26T19:36:13.4886580Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2025-08-26T19:36:13.4887480Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-08-26T19:36:13.4888490Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-08-26T19:36:13.4889330Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-08-26T19:36:13.4890360Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-08-26T19:36:13.4891530Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-08-26T19:36:13.4892600Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4893430Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-08-26T19:36:13.4894370Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-08-26T19:36:13.4895230Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-08-26T19:36:13.4896140Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-08-26T19:36:13.4897030Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2025-08-26T19:36:13.4897940Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-08-26T19:36:13.4898960Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-08-26T19:36:13.4899970Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4901020Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-08-26T19:36:13.4902150Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4902980Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-08-26T19:36:13.4903860Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-08-26T19:36:13.4904700Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-08-26T19:36:13.4905670Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-08-26T19:36:13.4906560Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2025-08-26T19:36:13.4907430Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-08-26T19:36:13.4908440Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-08-26T19:36:13.4909360Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-08-26T19:36:13.4910310Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-08-26T19:36:13.4911310Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4912110Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-08-26T19:36:13.4913110Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-08-26T19:36:13.4914160Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-08-26T19:36:13.4915060Z adding 'torch/include/ATen/ops/nonzero.h' 2025-08-26T19:36:13.4915930Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-08-26T19:36:13.4916830Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-08-26T19:36:13.4917650Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2025-08-26T19:36:13.4918470Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-08-26T19:36:13.4919330Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-08-26T19:36:13.4920350Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4921100Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-08-26T19:36:13.4921980Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-08-26T19:36:13.4922880Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-08-26T19:36:13.4923970Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-08-26T19:36:13.4924950Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-08-26T19:36:13.4925840Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-08-26T19:36:13.4926660Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-08-26T19:36:13.4927650Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-08-26T19:36:13.4928860Z adding 'torch/include/ATen/ops/norm.h' 2025-08-26T19:36:13.4929870Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4930800Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.4931730Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4932580Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-08-26T19:36:13.4933420Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-08-26T19:36:13.4934260Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-08-26T19:36:13.4935290Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4936060Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-08-26T19:36:13.4936970Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-08-26T19:36:13.4937790Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-08-26T19:36:13.4938750Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-08-26T19:36:13.4939580Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2025-08-26T19:36:13.4940610Z adding 'torch/include/ATen/ops/norm_native.h' 2025-08-26T19:36:13.4942010Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-08-26T19:36:13.4943810Z adding 'torch/include/ATen/ops/normal.h' 2025-08-26T19:36:13.4944730Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4945620Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-08-26T19:36:13.4946520Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-08-26T19:36:13.4947440Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-08-26T19:36:13.4948310Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2025-08-26T19:36:13.4949340Z adding 'torch/include/ATen/ops/normal_native.h' 2025-08-26T19:36:13.4950930Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-08-26T19:36:13.4951830Z adding 'torch/include/ATen/ops/not_equal.h' 2025-08-26T19:36:13.4952830Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4953600Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-08-26T19:36:13.4954720Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-08-26T19:36:13.4955730Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-08-26T19:36:13.4956810Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4957630Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-08-26T19:36:13.4958790Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-08-26T19:36:13.4959760Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-08-26T19:36:13.4960760Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4961530Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-08-26T19:36:13.4962390Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-08-26T19:36:13.4963330Z adding 'torch/include/ATen/ops/one_hot.h' 2025-08-26T19:36:13.4964330Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4965100Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-08-26T19:36:13.4966000Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-08-26T19:36:13.4967590Z adding 'torch/include/ATen/ops/ones.h' 2025-08-26T19:36:13.4968520Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4969430Z adding 'torch/include/ATen/ops/ones_like.h' 2025-08-26T19:36:13.4970440Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.4971290Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-08-26T19:36:13.4972290Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-08-26T19:36:13.4973170Z adding 'torch/include/ATen/ops/ones_native.h' 2025-08-26T19:36:13.4974270Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-08-26T19:36:13.4975180Z adding 'torch/include/ATen/ops/or.h' 2025-08-26T19:36:13.4976170Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4976920Z adding 'torch/include/ATen/ops/or_native.h' 2025-08-26T19:36:13.4977930Z adding 'torch/include/ATen/ops/or_ops.h' 2025-08-26T19:36:13.4978960Z adding 'torch/include/ATen/ops/orgqr.h' 2025-08-26T19:36:13.4979900Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4980650Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-08-26T19:36:13.4981560Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-08-26T19:36:13.4982530Z adding 'torch/include/ATen/ops/ormqr.h' 2025-08-26T19:36:13.4983450Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-08-26T19:36:13.4984310Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-08-26T19:36:13.4985110Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-08-26T19:36:13.4986110Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-08-26T19:36:13.4987000Z adding 'torch/include/ATen/ops/outer.h' 2025-08-26T19:36:13.4987960Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4988690Z adding 'torch/include/ATen/ops/outer_native.h' 2025-08-26T19:36:13.4989670Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-08-26T19:36:13.4990570Z adding 'torch/include/ATen/ops/output_nr.h' 2025-08-26T19:36:13.4991470Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4992210Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-08-26T19:36:13.4993140Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-08-26T19:36:13.4994060Z adding 'torch/include/ATen/ops/pad.h' 2025-08-26T19:36:13.4995020Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4995790Z adding 'torch/include/ATen/ops/pad_native.h' 2025-08-26T19:36:13.4996730Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-08-26T19:36:13.4997620Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-08-26T19:36:13.4998590Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.4999340Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-08-26T19:36:13.5000300Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-08-26T19:36:13.5001180Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-08-26T19:36:13.5002140Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5002930Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-08-26T19:36:13.5003860Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-08-26T19:36:13.5004660Z adding 'torch/include/ATen/ops/pdist.h' 2025-08-26T19:36:13.5005610Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5006340Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-08-26T19:36:13.5007300Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-08-26T19:36:13.5008140Z adding 'torch/include/ATen/ops/permute.h' 2025-08-26T19:36:13.5009070Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5009870Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-08-26T19:36:13.5010880Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5011810Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5012510Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-08-26T19:36:13.5013420Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-08-26T19:36:13.5014370Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2025-08-26T19:36:13.5015180Z adding 'torch/include/ATen/ops/permute_native.h' 2025-08-26T19:36:13.5016050Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-08-26T19:36:13.5016880Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-08-26T19:36:13.5017940Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5018730Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-08-26T19:36:13.5019670Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-08-26T19:36:13.5020840Z adding 'torch/include/ATen/ops/pinverse.h' 2025-08-26T19:36:13.5021890Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5022660Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-08-26T19:36:13.5023520Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-08-26T19:36:13.5024390Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-08-26T19:36:13.5025430Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5026360Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5027100Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-08-26T19:36:13.5027900Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2025-08-26T19:36:13.5028800Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-08-26T19:36:13.5029720Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-08-26T19:36:13.5030610Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-08-26T19:36:13.5031600Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5032540Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5033250Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-08-26T19:36:13.5034050Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2025-08-26T19:36:13.5034860Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-08-26T19:36:13.5035860Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-08-26T19:36:13.5036740Z adding 'torch/include/ATen/ops/poisson.h' 2025-08-26T19:36:13.5037690Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5038480Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-08-26T19:36:13.5039350Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-08-26T19:36:13.5040170Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-08-26T19:36:13.5041050Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-08-26T19:36:13.5042000Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5042800Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-08-26T19:36:13.5043710Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-08-26T19:36:13.5044640Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-08-26T19:36:13.5045500Z adding 'torch/include/ATen/ops/polar.h' 2025-08-26T19:36:13.5046490Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5047280Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-08-26T19:36:13.5048100Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-08-26T19:36:13.5048890Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2025-08-26T19:36:13.5049760Z adding 'torch/include/ATen/ops/polar_native.h' 2025-08-26T19:36:13.5050700Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-08-26T19:36:13.5051570Z adding 'torch/include/ATen/ops/polygamma.h' 2025-08-26T19:36:13.5052520Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5053470Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5054250Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-08-26T19:36:13.5055060Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-08-26T19:36:13.5055880Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-08-26T19:36:13.5056770Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-08-26T19:36:13.5057590Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2025-08-26T19:36:13.5058440Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-08-26T19:36:13.5059390Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-08-26T19:36:13.5060300Z adding 'torch/include/ATen/ops/positive.h' 2025-08-26T19:36:13.5061240Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5061970Z adding 'torch/include/ATen/ops/positive_native.h' 2025-08-26T19:36:13.5062840Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-08-26T19:36:13.5063890Z adding 'torch/include/ATen/ops/pow.h' 2025-08-26T19:36:13.5064900Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5065700Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-08-26T19:36:13.5066550Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-08-26T19:36:13.5067470Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-08-26T19:36:13.5068340Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-08-26T19:36:13.5069180Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2025-08-26T19:36:13.5070090Z adding 'torch/include/ATen/ops/pow_native.h' 2025-08-26T19:36:13.5071330Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-08-26T19:36:13.5072210Z adding 'torch/include/ATen/ops/prelu.h' 2025-08-26T19:36:13.5073190Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5074090Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-08-26T19:36:13.5074970Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-08-26T19:36:13.5076020Z adding 'torch/include/ATen/ops/prod.h' 2025-08-26T19:36:13.5076980Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5077890Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5078820Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5079620Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-08-26T19:36:13.5080440Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-08-26T19:36:13.5081270Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-08-26T19:36:13.5082220Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-08-26T19:36:13.5083050Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2025-08-26T19:36:13.5083960Z adding 'torch/include/ATen/ops/prod_native.h' 2025-08-26T19:36:13.5085080Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-08-26T19:36:13.5086010Z adding 'torch/include/ATen/ops/promote_types.h' 2025-08-26T19:36:13.5086960Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5087720Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-08-26T19:36:13.5088600Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-08-26T19:36:13.5089530Z adding 'torch/include/ATen/ops/put.h' 2025-08-26T19:36:13.5090510Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5091290Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-08-26T19:36:13.5092080Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-08-26T19:36:13.5092940Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-08-26T19:36:13.5093780Z adding 'torch/include/ATen/ops/put_native.h' 2025-08-26T19:36:13.5094780Z adding 'torch/include/ATen/ops/put_ops.h' 2025-08-26T19:36:13.5095640Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-08-26T19:36:13.5096540Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-08-26T19:36:13.5097430Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-08-26T19:36:13.5098290Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-08-26T19:36:13.5099240Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5100060Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-08-26T19:36:13.5101010Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-08-26T19:36:13.5101890Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-08-26T19:36:13.5102910Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5103730Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-08-26T19:36:13.5104760Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-08-26T19:36:13.5105550Z adding 'torch/include/ATen/ops/q_scale.h' 2025-08-26T19:36:13.5106350Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-08-26T19:36:13.5107290Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-08-26T19:36:13.5108130Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-08-26T19:36:13.5108950Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-08-26T19:36:13.5109840Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-08-26T19:36:13.5110760Z adding 'torch/include/ATen/ops/qr.h' 2025-08-26T19:36:13.5111720Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5112470Z adding 'torch/include/ATen/ops/qr_native.h' 2025-08-26T19:36:13.5113410Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-08-26T19:36:13.5114310Z adding 'torch/include/ATen/ops/qscheme.h' 2025-08-26T19:36:13.5115150Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-08-26T19:36:13.5116000Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-08-26T19:36:13.5116990Z adding 'torch/include/ATen/ops/quantile.h' 2025-08-26T19:36:13.5118120Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5118900Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-08-26T19:36:13.5119960Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-08-26T19:36:13.5120900Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-08-26T19:36:13.5121970Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5122790Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-08-26T19:36:13.5123600Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-08-26T19:36:13.5124410Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-08-26T19:36:13.5125460Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-08-26T19:36:13.5126540Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-08-26T19:36:13.5127590Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5128420Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-08-26T19:36:13.5129330Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-08-26T19:36:13.5130250Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-08-26T19:36:13.5131210Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5132010Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-08-26T19:36:13.5132900Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-08-26T19:36:13.5133740Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-08-26T19:36:13.5134680Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-08-26T19:36:13.5135560Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-08-26T19:36:13.5136810Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-08-26T19:36:13.5137800Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-08-26T19:36:13.5138810Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5139600Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-08-26T19:36:13.5140650Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-08-26T19:36:13.5141610Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-08-26T19:36:13.5142590Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5143350Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-08-26T19:36:13.5144420Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-08-26T19:36:13.5145320Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-08-26T19:36:13.5146300Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5147070Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-08-26T19:36:13.5148110Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-08-26T19:36:13.5149070Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-08-26T19:36:13.5150060Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5150830Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-08-26T19:36:13.5151850Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-08-26T19:36:13.5152810Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-08-26T19:36:13.5153800Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5154570Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-08-26T19:36:13.5155600Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-08-26T19:36:13.5156540Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-08-26T19:36:13.5157510Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5158310Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-08-26T19:36:13.5159310Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-08-26T19:36:13.5160240Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-08-26T19:36:13.5161230Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5161990Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-08-26T19:36:13.5163040Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-08-26T19:36:13.5164000Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-08-26T19:36:13.5164970Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5165710Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-08-26T19:36:13.5166740Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-08-26T19:36:13.5167610Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-08-26T19:36:13.5168610Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5169410Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-08-26T19:36:13.5170370Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-08-26T19:36:13.5172710Z adding 'torch/include/ATen/ops/rand.h' 2025-08-26T19:36:13.5173700Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5174610Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5175630Z adding 'torch/include/ATen/ops/rand_like.h' 2025-08-26T19:36:13.5176650Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5177440Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-08-26T19:36:13.5178400Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-08-26T19:36:13.5179400Z adding 'torch/include/ATen/ops/rand_native.h' 2025-08-26T19:36:13.5180720Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-08-26T19:36:13.5183150Z adding 'torch/include/ATen/ops/randint.h' 2025-08-26T19:36:13.5184170Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5186140Z adding 'torch/include/ATen/ops/randint_like.h' 2025-08-26T19:36:13.5187130Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5188000Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-08-26T19:36:13.5189220Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-08-26T19:36:13.5190250Z adding 'torch/include/ATen/ops/randint_native.h' 2025-08-26T19:36:13.5191880Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-08-26T19:36:13.5194000Z adding 'torch/include/ATen/ops/randn.h' 2025-08-26T19:36:13.5195010Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5195990Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5196900Z adding 'torch/include/ATen/ops/randn_like.h' 2025-08-26T19:36:13.5197910Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5198840Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T19:36:13.5199640Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-08-26T19:36:13.5200630Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-08-26T19:36:13.5201530Z adding 'torch/include/ATen/ops/randn_native.h' 2025-08-26T19:36:13.5202790Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-08-26T19:36:13.5208350Z adding 'torch/include/ATen/ops/random.h' 2025-08-26T19:36:13.5208640Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5208740Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-08-26T19:36:13.5208830Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-08-26T19:36:13.5208920Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-08-26T19:36:13.5209050Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2025-08-26T19:36:13.5209540Z adding 'torch/include/ATen/ops/random_native.h' 2025-08-26T19:36:13.5211470Z adding 'torch/include/ATen/ops/random_ops.h' 2025-08-26T19:36:13.5212680Z adding 'torch/include/ATen/ops/randperm.h' 2025-08-26T19:36:13.5215200Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5215880Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-08-26T19:36:13.5216780Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-08-26T19:36:13.5217670Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2025-08-26T19:36:13.5218830Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-08-26T19:36:13.5219960Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-08-26T19:36:13.5221050Z adding 'torch/include/ATen/ops/range.h' 2025-08-26T19:36:13.5222120Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5223180Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-08-26T19:36:13.5224050Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-08-26T19:36:13.5224880Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-08-26T19:36:13.5225680Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2025-08-26T19:36:13.5226780Z adding 'torch/include/ATen/ops/range_native.h' 2025-08-26T19:36:13.5227910Z adding 'torch/include/ATen/ops/range_ops.h' 2025-08-26T19:36:13.5228810Z adding 'torch/include/ATen/ops/ravel.h' 2025-08-26T19:36:13.5229760Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5230750Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-08-26T19:36:13.5231680Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-08-26T19:36:13.5232540Z adding 'torch/include/ATen/ops/real.h' 2025-08-26T19:36:13.5233510Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5234490Z adding 'torch/include/ATen/ops/real_native.h' 2025-08-26T19:36:13.5235430Z adding 'torch/include/ATen/ops/real_ops.h' 2025-08-26T19:36:13.5236350Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-08-26T19:36:13.5237410Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5238400Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-08-26T19:36:13.5239260Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-08-26T19:36:13.5240130Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-08-26T19:36:13.5240980Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-08-26T19:36:13.5242340Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2025-08-26T19:36:13.5243220Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-08-26T19:36:13.5244190Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-08-26T19:36:13.5245020Z adding 'torch/include/ATen/ops/record_stream.h' 2025-08-26T19:36:13.5246120Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-08-26T19:36:13.5246940Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-08-26T19:36:13.5247830Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-08-26T19:36:13.5248650Z adding 'torch/include/ATen/ops/refine_names.h' 2025-08-26T19:36:13.5249820Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5250570Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-08-26T19:36:13.5251480Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-08-26T19:36:13.5252530Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-08-26T19:36:13.5253920Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-08-26T19:36:13.5254990Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5255780Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5256670Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5257750Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-08-26T19:36:13.5258620Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-08-26T19:36:13.5259490Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2025-08-26T19:36:13.5260350Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-08-26T19:36:13.5261580Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-08-26T19:36:13.5262540Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5263340Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-08-26T19:36:13.5264170Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-08-26T19:36:13.5265210Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-08-26T19:36:13.5266100Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-08-26T19:36:13.5266940Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2025-08-26T19:36:13.5267820Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-08-26T19:36:13.5268970Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-08-26T19:36:13.5270020Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-08-26T19:36:13.5271160Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-08-26T19:36:13.5272110Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5273200Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5274070Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.5274940Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-08-26T19:36:13.5275890Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-08-26T19:36:13.5276970Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-08-26T19:36:13.5277850Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-08-26T19:36:13.5278700Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2025-08-26T19:36:13.5279550Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-08-26T19:36:13.5280700Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-08-26T19:36:13.5281730Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-08-26T19:36:13.5282870Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-08-26T19:36:13.5283930Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5285010Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5285850Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5286700Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-08-26T19:36:13.5287560Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-08-26T19:36:13.5288610Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2025-08-26T19:36:13.5289520Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-08-26T19:36:13.5290490Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-08-26T19:36:13.5291500Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5292450Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-08-26T19:36:13.5293310Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-08-26T19:36:13.5294130Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-08-26T19:36:13.5294980Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-08-26T19:36:13.5295990Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2025-08-26T19:36:13.5296860Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-08-26T19:36:13.5297820Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-08-26T19:36:13.5298740Z adding 'torch/include/ATen/ops/relu.h' 2025-08-26T19:36:13.5299750Z adding 'torch/include/ATen/ops/relu6.h' 2025-08-26T19:36:13.5300730Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5301460Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-08-26T19:36:13.5302380Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-08-26T19:36:13.5303520Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5304310Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-08-26T19:36:13.5305130Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-08-26T19:36:13.5305960Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-08-26T19:36:13.5306950Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2025-08-26T19:36:13.5307850Z adding 'torch/include/ATen/ops/relu_native.h' 2025-08-26T19:36:13.5308810Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-08-26T19:36:13.5309810Z adding 'torch/include/ATen/ops/remainder.h' 2025-08-26T19:36:13.5311010Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5311950Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5312720Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-08-26T19:36:13.5313580Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-08-26T19:36:13.5314600Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-08-26T19:36:13.5315490Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-08-26T19:36:13.5316320Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2025-08-26T19:36:13.5317190Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-08-26T19:36:13.5318610Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-08-26T19:36:13.5319450Z adding 'torch/include/ATen/ops/rename.h' 2025-08-26T19:36:13.5320400Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5321170Z adding 'torch/include/ATen/ops/rename_native.h' 2025-08-26T19:36:13.5322290Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-08-26T19:36:13.5323250Z adding 'torch/include/ATen/ops/renorm.h' 2025-08-26T19:36:13.5324280Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5325050Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-08-26T19:36:13.5326100Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-08-26T19:36:13.5326940Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-08-26T19:36:13.5327800Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-08-26T19:36:13.5328640Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2025-08-26T19:36:13.5329650Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-08-26T19:36:13.5330640Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-08-26T19:36:13.5331670Z adding 'torch/include/ATen/ops/repeat.h' 2025-08-26T19:36:13.5332660Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5334520Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-08-26T19:36:13.5335210Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5336140Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5336930Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-08-26T19:36:13.5337940Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-08-26T19:36:13.5338760Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2025-08-26T19:36:13.5339640Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-08-26T19:36:13.5340700Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-08-26T19:36:13.5341770Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2025-08-26T19:36:13.5342620Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-08-26T19:36:13.5343570Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-08-26T19:36:13.5344640Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-08-26T19:36:13.5345980Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-08-26T19:36:13.5347030Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5347810Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5348670Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5349710Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-08-26T19:36:13.5350600Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-08-26T19:36:13.5351470Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2025-08-26T19:36:13.5352310Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-08-26T19:36:13.5353460Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-08-26T19:36:13.5354470Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5355240Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-08-26T19:36:13.5356070Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-08-26T19:36:13.5357100Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-08-26T19:36:13.5358000Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-08-26T19:36:13.5358890Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2025-08-26T19:36:13.5359820Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-08-26T19:36:13.5361040Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-08-26T19:36:13.5362180Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-08-26T19:36:13.5363330Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-08-26T19:36:13.5364260Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5365320Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5366180Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.5367080Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-08-26T19:36:13.5368060Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-08-26T19:36:13.5369220Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5369990Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-08-26T19:36:13.5370900Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-08-26T19:36:13.5371670Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-08-26T19:36:13.5372770Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-08-26T19:36:13.5373630Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2025-08-26T19:36:13.5374460Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-08-26T19:36:13.5375380Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-08-26T19:36:13.5376620Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-08-26T19:36:13.5377760Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-08-26T19:36:13.5378720Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5379600Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5380640Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2025-08-26T19:36:13.5381520Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-08-26T19:36:13.5382490Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-08-26T19:36:13.5383490Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5384420Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-08-26T19:36:13.5385290Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-08-26T19:36:13.5386080Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-08-26T19:36:13.5386910Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-08-26T19:36:13.5387920Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2025-08-26T19:36:13.5388770Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-08-26T19:36:13.5389730Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-08-26T19:36:13.5390530Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-08-26T19:36:13.5391700Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5392470Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-08-26T19:36:13.5393370Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-08-26T19:36:13.5394250Z adding 'torch/include/ATen/ops/reshape.h' 2025-08-26T19:36:13.5395290Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-08-26T19:36:13.5396260Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5397150Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T19:36:13.5397860Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-08-26T19:36:13.5398940Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-08-26T19:36:13.5399900Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5400800Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T19:36:13.5401500Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-08-26T19:36:13.5402600Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-08-26T19:36:13.5403730Z adding 'torch/include/ATen/ops/resize.h' 2025-08-26T19:36:13.5404700Z adding 'torch/include/ATen/ops/resize_as.h' 2025-08-26T19:36:13.5405720Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5406710Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-08-26T19:36:13.5407740Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-08-26T19:36:13.5408650Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-08-26T19:36:13.5409640Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5410640Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-08-26T19:36:13.5411490Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-08-26T19:36:13.5412470Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-08-26T19:36:13.5413510Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5414470Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-08-26T19:36:13.5415320Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-08-26T19:36:13.5416130Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-08-26T19:36:13.5416930Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2025-08-26T19:36:13.5418050Z adding 'torch/include/ATen/ops/resize_native.h' 2025-08-26T19:36:13.5419050Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-08-26T19:36:13.5419920Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-08-26T19:36:13.5420860Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5421810Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-08-26T19:36:13.5422710Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-08-26T19:36:13.5423530Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-08-26T19:36:13.5424470Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5425450Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-08-26T19:36:13.5426330Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-08-26T19:36:13.5427260Z adding 'torch/include/ATen/ops/result_type.h' 2025-08-26T19:36:13.5428280Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5429230Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-08-26T19:36:13.5430290Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-08-26T19:36:13.5431130Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-08-26T19:36:13.5432070Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5433030Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-08-26T19:36:13.5433930Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-08-26T19:36:13.5434740Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-08-26T19:36:13.5435690Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5436620Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-08-26T19:36:13.5437520Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-08-26T19:36:13.5438460Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-08-26T19:36:13.5439450Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5440410Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-08-26T19:36:13.5441340Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-08-26T19:36:13.5442250Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-08-26T19:36:13.5443140Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-08-26T19:36:13.5444290Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5445080Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-08-26T19:36:13.5446000Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-08-26T19:36:13.5446970Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5447930Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-08-26T19:36:13.5448950Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-08-26T19:36:13.5449870Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-08-26T19:36:13.5450740Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-08-26T19:36:13.5451900Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5452670Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-08-26T19:36:13.5453580Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-08-26T19:36:13.5454550Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5455520Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-08-26T19:36:13.5456550Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-08-26T19:36:13.5457560Z adding 'torch/include/ATen/ops/roll.h' 2025-08-26T19:36:13.5458580Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5459560Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-08-26T19:36:13.5460420Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-08-26T19:36:13.5464440Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2025-08-26T19:36:13.5464990Z adding 'torch/include/ATen/ops/roll_native.h' 2025-08-26T19:36:13.5466140Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-08-26T19:36:13.5467040Z adding 'torch/include/ATen/ops/rot90.h' 2025-08-26T19:36:13.5468050Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5468790Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-08-26T19:36:13.5469930Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-08-26T19:36:13.5470890Z adding 'torch/include/ATen/ops/round.h' 2025-08-26T19:36:13.5471920Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5472690Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-08-26T19:36:13.5473720Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-08-26T19:36:13.5474570Z adding 'torch/include/ATen/ops/round_meta.h' 2025-08-26T19:36:13.5475430Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-08-26T19:36:13.5476240Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2025-08-26T19:36:13.5477320Z adding 'torch/include/ATen/ops/round_native.h' 2025-08-26T19:36:13.5478370Z adding 'torch/include/ATen/ops/round_ops.h' 2025-08-26T19:36:13.5479220Z adding 'torch/include/ATen/ops/row_indices.h' 2025-08-26T19:36:13.5480150Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5481130Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-08-26T19:36:13.5482200Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5483030Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5483740Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-08-26T19:36:13.5484890Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-08-26T19:36:13.5485710Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-08-26T19:36:13.5486570Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-08-26T19:36:13.5487440Z adding 'torch/include/ATen/ops/row_stack.h' 2025-08-26T19:36:13.5488590Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5489350Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-08-26T19:36:13.5490290Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-08-26T19:36:13.5491170Z adding 'torch/include/ATen/ops/rrelu.h' 2025-08-26T19:36:13.5492350Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5493150Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-08-26T19:36:13.5494130Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-08-26T19:36:13.5495150Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-08-26T19:36:13.5496330Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-08-26T19:36:13.5497350Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5498120Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-08-26T19:36:13.5499100Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-08-26T19:36:13.5500270Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5501150Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-08-26T19:36:13.5502040Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-08-26T19:36:13.5502910Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-08-26T19:36:13.5504030Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-08-26T19:36:13.5505170Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-08-26T19:36:13.5506150Z adding 'torch/include/ATen/ops/rshift.h' 2025-08-26T19:36:13.5507100Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5508090Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-08-26T19:36:13.5508930Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-08-26T19:36:13.5509790Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-08-26T19:36:13.5510610Z adding 'torch/include/ATen/ops/rshift_mps_dispatch.h' 2025-08-26T19:36:13.5511650Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-08-26T19:36:13.5512790Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-08-26T19:36:13.5513680Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-08-26T19:36:13.5514660Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5515620Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-08-26T19:36:13.5516490Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-08-26T19:36:13.5517280Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-08-26T19:36:13.5518120Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-08-26T19:36:13.5519130Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2025-08-26T19:36:13.5519980Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-08-26T19:36:13.5520910Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-08-26T19:36:13.5521900Z adding 'torch/include/ATen/ops/rsub.h' 2025-08-26T19:36:13.5523070Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5523870Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-08-26T19:36:13.5524670Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-08-26T19:36:13.5525470Z adding 'torch/include/ATen/ops/rsub_mps_dispatch.h' 2025-08-26T19:36:13.5526510Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-08-26T19:36:13.5527610Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-08-26T19:36:13.5528580Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-08-26T19:36:13.5529580Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5530550Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-08-26T19:36:13.5531550Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-08-26T19:36:13.5532500Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-08-26T19:36:13.5533500Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5534470Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-08-26T19:36:13.5535450Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-08-26T19:36:13.5536530Z adding 'torch/include/ATen/ops/scatter.h' 2025-08-26T19:36:13.5537480Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-08-26T19:36:13.5538700Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5539520Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5540330Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-08-26T19:36:13.5541190Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-08-26T19:36:13.5542210Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-08-26T19:36:13.5543090Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-08-26T19:36:13.5543920Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2025-08-26T19:36:13.5544770Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-08-26T19:36:13.5546020Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-08-26T19:36:13.5547080Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5547900Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5548800Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-08-26T19:36:13.5549960Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-08-26T19:36:13.5550870Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-08-26T19:36:13.5551780Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-08-26T19:36:13.5552690Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2025-08-26T19:36:13.5553840Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-08-26T19:36:13.5555770Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-08-26T19:36:13.5556470Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-08-26T19:36:13.5557520Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5558500Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-08-26T19:36:13.5559370Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-08-26T19:36:13.5560220Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-08-26T19:36:13.5561110Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-08-26T19:36:13.5562130Z adding 'torch/include/ATen/ops/scatter_reduce_mps_dispatch.h' 2025-08-26T19:36:13.5562980Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-08-26T19:36:13.5564020Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-08-26T19:36:13.5565080Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-08-26T19:36:13.5566270Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-08-26T19:36:13.5567240Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-08-26T19:36:13.5568110Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2025-08-26T19:36:13.5569070Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-08-26T19:36:13.5570420Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-08-26T19:36:13.5571420Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-08-26T19:36:13.5572480Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5573290Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-08-26T19:36:13.5574350Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-08-26T19:36:13.5575210Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-08-26T19:36:13.5576260Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-08-26T19:36:13.5577190Z adding 'torch/include/ATen/ops/select.h' 2025-08-26T19:36:13.5578480Z adding 'torch/include/ATen/ops/select_backward.h' 2025-08-26T19:36:13.5579530Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5580450Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5581180Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-08-26T19:36:13.5582360Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-08-26T19:36:13.5583310Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5584210Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5585260Z adding 'torch/include/ATen/ops/select_copy.h' 2025-08-26T19:36:13.5586500Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5587440Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5588200Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-08-26T19:36:13.5589170Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-08-26T19:36:13.5590230Z adding 'torch/include/ATen/ops/select_native.h' 2025-08-26T19:36:13.5591190Z adding 'torch/include/ATen/ops/select_ops.h' 2025-08-26T19:36:13.5592260Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-08-26T19:36:13.5593320Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5594470Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5595190Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-08-26T19:36:13.5596180Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-08-26T19:36:13.5596980Z adding 'torch/include/ATen/ops/selu.h' 2025-08-26T19:36:13.5598120Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5598880Z adding 'torch/include/ATen/ops/selu_native.h' 2025-08-26T19:36:13.5599790Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-08-26T19:36:13.5601170Z adding 'torch/include/ATen/ops/set.h' 2025-08-26T19:36:13.5602440Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5603330Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5604140Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-08-26T19:36:13.5605000Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-08-26T19:36:13.5606040Z adding 'torch/include/ATen/ops/set_data.h' 2025-08-26T19:36:13.5607000Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5607760Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-08-26T19:36:13.5608640Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-08-26T19:36:13.5609750Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-08-26T19:36:13.5610770Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2025-08-26T19:36:13.5611760Z adding 'torch/include/ATen/ops/set_native.h' 2025-08-26T19:36:13.5613430Z adding 'torch/include/ATen/ops/set_ops.h' 2025-08-26T19:36:13.5614450Z adding 'torch/include/ATen/ops/sgn.h' 2025-08-26T19:36:13.5615500Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5616290Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-08-26T19:36:13.5617080Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-08-26T19:36:13.5618160Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-08-26T19:36:13.5619070Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-08-26T19:36:13.5619900Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2025-08-26T19:36:13.5620790Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-08-26T19:36:13.5621950Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-08-26T19:36:13.5622850Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-08-26T19:36:13.5623810Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-08-26T19:36:13.5624840Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5625800Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5626650Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5627470Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-08-26T19:36:13.5628310Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-08-26T19:36:13.5629320Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2025-08-26T19:36:13.5630180Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-08-26T19:36:13.5631170Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-08-26T19:36:13.5632150Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5633070Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-08-26T19:36:13.5633890Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-08-26T19:36:13.5634700Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-08-26T19:36:13.5635520Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-08-26T19:36:13.5636550Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2025-08-26T19:36:13.5637400Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-08-26T19:36:13.5638350Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-08-26T19:36:13.5639250Z adding 'torch/include/ATen/ops/sign.h' 2025-08-26T19:36:13.5640420Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5641150Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-08-26T19:36:13.5641950Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-08-26T19:36:13.5642780Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-08-26T19:36:13.5643810Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-08-26T19:36:13.5644610Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2025-08-26T19:36:13.5645470Z adding 'torch/include/ATen/ops/sign_native.h' 2025-08-26T19:36:13.5646410Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-08-26T19:36:13.5647470Z adding 'torch/include/ATen/ops/signbit.h' 2025-08-26T19:36:13.5648470Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5649190Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-08-26T19:36:13.5649980Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-08-26T19:36:13.5651000Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-08-26T19:36:13.5651840Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-08-26T19:36:13.5652620Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2025-08-26T19:36:13.5653460Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-08-26T19:36:13.5654580Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-08-26T19:36:13.5655470Z adding 'torch/include/ATen/ops/silu.h' 2025-08-26T19:36:13.5656370Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-08-26T19:36:13.5657400Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5658430Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5659220Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5660050Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5660880Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-08-26T19:36:13.5661960Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-08-26T19:36:13.5662770Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2025-08-26T19:36:13.5663610Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-08-26T19:36:13.5664550Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-08-26T19:36:13.5665710Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5666450Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-08-26T19:36:13.5667240Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-08-26T19:36:13.5668050Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-08-26T19:36:13.5669050Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-08-26T19:36:13.5669840Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2025-08-26T19:36:13.5670670Z adding 'torch/include/ATen/ops/silu_native.h' 2025-08-26T19:36:13.5671630Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-08-26T19:36:13.5672720Z adding 'torch/include/ATen/ops/sin.h' 2025-08-26T19:36:13.5673680Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5674390Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-08-26T19:36:13.5675160Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-08-26T19:36:13.5676160Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-08-26T19:36:13.5676980Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-08-26T19:36:13.5677780Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2025-08-26T19:36:13.5678630Z adding 'torch/include/ATen/ops/sin_native.h' 2025-08-26T19:36:13.5679760Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-08-26T19:36:13.5680660Z adding 'torch/include/ATen/ops/sinc.h' 2025-08-26T19:36:13.5681630Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5682340Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-08-26T19:36:13.5683660Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-08-26T19:36:13.5684470Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-08-26T19:36:13.5685270Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-08-26T19:36:13.5686060Z adding 'torch/include/ATen/ops/sinc_mps_dispatch.h' 2025-08-26T19:36:13.5687090Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-08-26T19:36:13.5688020Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-08-26T19:36:13.5688900Z adding 'torch/include/ATen/ops/sinh.h' 2025-08-26T19:36:13.5689850Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5690730Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-08-26T19:36:13.5691540Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-08-26T19:36:13.5692330Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-08-26T19:36:13.5693140Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-08-26T19:36:13.5694100Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2025-08-26T19:36:13.5694970Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-08-26T19:36:13.5695900Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-08-26T19:36:13.5696760Z adding 'torch/include/ATen/ops/size.h' 2025-08-26T19:36:13.5697900Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5698670Z adding 'torch/include/ATen/ops/size_native.h' 2025-08-26T19:36:13.5699610Z adding 'torch/include/ATen/ops/size_ops.h' 2025-08-26T19:36:13.5700580Z adding 'torch/include/ATen/ops/slice.h' 2025-08-26T19:36:13.5701950Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-08-26T19:36:13.5703070Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5703790Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-08-26T19:36:13.5704780Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-08-26T19:36:13.5705910Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5707040Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-08-26T19:36:13.5708050Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5708980Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5709920Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-08-26T19:36:13.5710930Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-08-26T19:36:13.5711880Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-08-26T19:36:13.5712860Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5713830Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-08-26T19:36:13.5714740Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-08-26T19:36:13.5715560Z adding 'torch/include/ATen/ops/slice_native.h' 2025-08-26T19:36:13.5716460Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-08-26T19:36:13.5717860Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-08-26T19:36:13.5718910Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5719830Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5720560Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-08-26T19:36:13.5721740Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-08-26T19:36:13.5722630Z adding 'torch/include/ATen/ops/slogdet.h' 2025-08-26T19:36:13.5723610Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5724350Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-08-26T19:36:13.5725520Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-08-26T19:36:13.5726710Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-08-26T19:36:13.5727810Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5728890Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-08-26T19:36:13.5730100Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-08-26T19:36:13.5730950Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-08-26T19:36:13.5731940Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-08-26T19:36:13.5732780Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-08-26T19:36:13.5733990Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-08-26T19:36:13.5735230Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-08-26T19:36:13.5736300Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5737130Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-08-26T19:36:13.5738180Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-08-26T19:36:13.5739070Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-08-26T19:36:13.5740090Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-08-26T19:36:13.5741290Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-08-26T19:36:13.5742620Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5743790Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-08-26T19:36:13.5744660Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-08-26T19:36:13.5750500Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-08-26T19:36:13.5750740Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-08-26T19:36:13.5750840Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-08-26T19:36:13.5751140Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5751280Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-08-26T19:36:13.5751930Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-08-26T19:36:13.5753300Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-08-26T19:36:13.5754560Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-08-26T19:36:13.5755630Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-08-26T19:36:13.5756850Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-08-26T19:36:13.5758440Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-08-26T19:36:13.5759440Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-08-26T19:36:13.5760430Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-08-26T19:36:13.5761410Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-08-26T19:36:13.5762510Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-08-26T19:36:13.5763470Z adding 'torch/include/ATen/ops/smm.h' 2025-08-26T19:36:13.5764560Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5765390Z adding 'torch/include/ATen/ops/smm_native.h' 2025-08-26T19:36:13.5766360Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-08-26T19:36:13.5767450Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-08-26T19:36:13.5768580Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-08-26T19:36:13.5769680Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5770630Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5771570Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5772510Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2025-08-26T19:36:13.5773470Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-08-26T19:36:13.5774570Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-08-26T19:36:13.5775700Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5776650Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-08-26T19:36:13.5777610Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-08-26T19:36:13.5778540Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-08-26T19:36:13.5779510Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-08-26T19:36:13.5780520Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2025-08-26T19:36:13.5781300Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-08-26T19:36:13.5782310Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-08-26T19:36:13.5783190Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-08-26T19:36:13.5784150Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-08-26T19:36:13.5785140Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5785950Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-08-26T19:36:13.5786980Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-08-26T19:36:13.5788000Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5788820Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-08-26T19:36:13.5789850Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-08-26T19:36:13.5790830Z adding 'torch/include/ATen/ops/softmax.h' 2025-08-26T19:36:13.5791910Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5792860Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5793660Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-08-26T19:36:13.5794770Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-08-26T19:36:13.5795700Z adding 'torch/include/ATen/ops/softplus.h' 2025-08-26T19:36:13.5796640Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-08-26T19:36:13.5797670Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5798420Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5799260Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5800100Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-08-26T19:36:13.5800950Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-08-26T19:36:13.5801750Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2025-08-26T19:36:13.5802590Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-08-26T19:36:13.5803550Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-08-26T19:36:13.5804520Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5805280Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-08-26T19:36:13.5806120Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-08-26T19:36:13.5806940Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-08-26T19:36:13.5807770Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-08-26T19:36:13.5808580Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2025-08-26T19:36:13.5809410Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-08-26T19:36:13.5810380Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-08-26T19:36:13.5811270Z adding 'torch/include/ATen/ops/softshrink.h' 2025-08-26T19:36:13.5812170Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-08-26T19:36:13.5813210Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5813990Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-08-26T19:36:13.5814830Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-08-26T19:36:13.5815620Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-08-26T19:36:13.5816480Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-08-26T19:36:13.5817290Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2025-08-26T19:36:13.5818110Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-08-26T19:36:13.5819070Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-08-26T19:36:13.5820060Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5820820Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-08-26T19:36:13.5821630Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-08-26T19:36:13.5822430Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-08-26T19:36:13.5823290Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-08-26T19:36:13.5824080Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2025-08-26T19:36:13.5824900Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-08-26T19:36:13.5825830Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-08-26T19:36:13.5826940Z adding 'torch/include/ATen/ops/sort.h' 2025-08-26T19:36:13.5827940Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5828840Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5829710Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5830530Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-08-26T19:36:13.5831400Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-08-26T19:36:13.5832210Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-08-26T19:36:13.5833070Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-08-26T19:36:13.5833910Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2025-08-26T19:36:13.5834850Z adding 'torch/include/ATen/ops/sort_native.h' 2025-08-26T19:36:13.5836140Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-08-26T19:36:13.5837180Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-08-26T19:36:13.5838240Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5838990Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-08-26T19:36:13.5840020Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-08-26T19:36:13.5841010Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-08-26T19:36:13.5842020Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5842790Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-08-26T19:36:13.5843800Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-08-26T19:36:13.5845010Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-08-26T19:36:13.5846080Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5846880Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-08-26T19:36:13.5847880Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-08-26T19:36:13.5848950Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-08-26T19:36:13.5849970Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5850900Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5851710Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-08-26T19:36:13.5852860Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-08-26T19:36:13.5853850Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-08-26T19:36:13.5854850Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5855620Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-08-26T19:36:13.5856620Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-08-26T19:36:13.5857580Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-08-26T19:36:13.5858580Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5859350Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-08-26T19:36:13.5860340Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-08-26T19:36:13.5861160Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-08-26T19:36:13.5862090Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5862860Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-08-26T19:36:13.5863720Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-08-26T19:36:13.5864620Z adding 'torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h' 2025-08-26T19:36:13.5865460Z adding 'torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h' 2025-08-26T19:36:13.5866300Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-08-26T19:36:13.5867250Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5868010Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-08-26T19:36:13.5868950Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-08-26T19:36:13.5869850Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-08-26T19:36:13.5870760Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-08-26T19:36:13.5871760Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5872560Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-08-26T19:36:13.5873380Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-08-26T19:36:13.5874390Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-08-26T19:36:13.5875290Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h' 2025-08-26T19:36:13.5876220Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5876990Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-08-26T19:36:13.5877800Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-08-26T19:36:13.5878800Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-08-26T19:36:13.5879690Z adding 'torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h' 2025-08-26T19:36:13.5880580Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-08-26T19:36:13.5881490Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-08-26T19:36:13.5882520Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-08-26T19:36:13.5883450Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-08-26T19:36:13.5884490Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5885330Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-08-26T19:36:13.5886140Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-08-26T19:36:13.5886960Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-08-26T19:36:13.5887810Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-08-26T19:36:13.5888680Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-08-26T19:36:13.5889660Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-08-26T19:36:13.5890580Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-08-26T19:36:13.5891600Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5892370Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-08-26T19:36:13.5893190Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-08-26T19:36:13.5894010Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-08-26T19:36:13.5894870Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-08-26T19:36:13.5895650Z adding 'torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h' 2025-08-26T19:36:13.5896480Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-08-26T19:36:13.5897400Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-08-26T19:36:13.5898260Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-08-26T19:36:13.5899260Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5899950Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-08-26T19:36:13.5900770Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-08-26T19:36:13.5901620Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-08-26T19:36:13.5902780Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-08-26T19:36:13.5903540Z adding 'torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h' 2025-08-26T19:36:13.5904340Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-08-26T19:36:13.5905280Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-08-26T19:36:13.5906140Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-08-26T19:36:13.5907130Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5907860Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-08-26T19:36:13.5908660Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-08-26T19:36:13.5909460Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-08-26T19:36:13.5910310Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-08-26T19:36:13.5911080Z adding 'torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h' 2025-08-26T19:36:13.5911880Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-08-26T19:36:13.5912810Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-08-26T19:36:13.5913650Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-08-26T19:36:13.5914680Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5915350Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-08-26T19:36:13.5916140Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-08-26T19:36:13.5916940Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-08-26T19:36:13.5917770Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-08-26T19:36:13.5918560Z adding 'torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h' 2025-08-26T19:36:13.5919350Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-08-26T19:36:13.5920270Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-08-26T19:36:13.5921280Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-08-26T19:36:13.5922290Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5923220Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5923970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-08-26T19:36:13.5924800Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-08-26T19:36:13.5925600Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-08-26T19:36:13.5926450Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-08-26T19:36:13.5927240Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h' 2025-08-26T19:36:13.5928090Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-08-26T19:36:13.5929190Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-08-26T19:36:13.5930170Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-08-26T19:36:13.5931180Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5932060Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5932770Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-08-26T19:36:13.5933580Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-08-26T19:36:13.5934380Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-08-26T19:36:13.5935210Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-08-26T19:36:13.5936020Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h' 2025-08-26T19:36:13.5936930Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-08-26T19:36:13.5937970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-08-26T19:36:13.5938940Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-08-26T19:36:13.5939940Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5940840Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5941580Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-08-26T19:36:13.5942370Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-08-26T19:36:13.5943180Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-08-26T19:36:13.5944000Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-08-26T19:36:13.5944800Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h' 2025-08-26T19:36:13.5945630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-08-26T19:36:13.5946710Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-08-26T19:36:13.5947710Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-08-26T19:36:13.5948720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.5949600Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5950320Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-08-26T19:36:13.5951130Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-08-26T19:36:13.5951960Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-08-26T19:36:13.5952810Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-08-26T19:36:13.5953720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h' 2025-08-26T19:36:13.5954600Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-08-26T19:36:13.5955720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-08-26T19:36:13.5956620Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-08-26T19:36:13.5957600Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5958360Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-08-26T19:36:13.5959320Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-08-26T19:36:13.5960200Z adding 'torch/include/ATen/ops/special_entr.h' 2025-08-26T19:36:13.5961180Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5961920Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-08-26T19:36:13.5962730Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-08-26T19:36:13.5963530Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-08-26T19:36:13.5964360Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-08-26T19:36:13.5965140Z adding 'torch/include/ATen/ops/special_entr_mps_dispatch.h' 2025-08-26T19:36:13.5965950Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-08-26T19:36:13.5966880Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-08-26T19:36:13.5967730Z adding 'torch/include/ATen/ops/special_erf.h' 2025-08-26T19:36:13.5968680Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5969400Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-08-26T19:36:13.5970310Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-08-26T19:36:13.5971200Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-08-26T19:36:13.5972130Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5972880Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-08-26T19:36:13.5973780Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-08-26T19:36:13.5974620Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-08-26T19:36:13.5975610Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.5976350Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-08-26T19:36:13.5977160Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-08-26T19:36:13.5977970Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-08-26T19:36:13.5978800Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-08-26T19:36:13.5979590Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-08-26T19:36:13.5980510Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-08-26T19:36:13.5981360Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-08-26T19:36:13.5982320Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5983070Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-08-26T19:36:13.5983950Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-08-26T19:36:13.5984800Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-08-26T19:36:13.5985740Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5986500Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-08-26T19:36:13.5987370Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-08-26T19:36:13.5988210Z adding 'torch/include/ATen/ops/special_expit.h' 2025-08-26T19:36:13.5989150Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5989890Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-08-26T19:36:13.5990770Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-08-26T19:36:13.5991620Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-08-26T19:36:13.5992550Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5993290Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-08-26T19:36:13.5994160Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-08-26T19:36:13.5995050Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-08-26T19:36:13.5996000Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.5996740Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-08-26T19:36:13.5997660Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-08-26T19:36:13.5998510Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-08-26T19:36:13.5999460Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6000200Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-08-26T19:36:13.6001120Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-08-26T19:36:13.6001950Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-08-26T19:36:13.6002870Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6003620Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-08-26T19:36:13.6004490Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-08-26T19:36:13.6005510Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-08-26T19:36:13.6006510Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6007410Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6008150Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-08-26T19:36:13.6008990Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-08-26T19:36:13.6009790Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-08-26T19:36:13.6010650Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-08-26T19:36:13.6011420Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h' 2025-08-26T19:36:13.6012290Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-08-26T19:36:13.6013360Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-08-26T19:36:13.6014350Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-08-26T19:36:13.6015370Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6016290Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6017020Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-08-26T19:36:13.6017840Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-08-26T19:36:13.6018640Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-08-26T19:36:13.6019480Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-08-26T19:36:13.6020270Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h' 2025-08-26T19:36:13.6021100Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-08-26T19:36:13.6022200Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-08-26T19:36:13.6023000Z adding 'torch/include/ATen/ops/special_i0.h' 2025-08-26T19:36:13.6023940Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6024670Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-08-26T19:36:13.6025580Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-08-26T19:36:13.6026440Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-08-26T19:36:13.6027420Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6028160Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-08-26T19:36:13.6028960Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-08-26T19:36:13.6029760Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-08-26T19:36:13.6030600Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-08-26T19:36:13.6031380Z adding 'torch/include/ATen/ops/special_i0e_mps_dispatch.h' 2025-08-26T19:36:13.6032190Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-08-26T19:36:13.6033100Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-08-26T19:36:13.6033950Z adding 'torch/include/ATen/ops/special_i1.h' 2025-08-26T19:36:13.6034920Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6035640Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-08-26T19:36:13.6036410Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-08-26T19:36:13.6037200Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-08-26T19:36:13.6038020Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-08-26T19:36:13.6038790Z adding 'torch/include/ATen/ops/special_i1_mps_dispatch.h' 2025-08-26T19:36:13.6039600Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-08-26T19:36:13.6040490Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-08-26T19:36:13.6041340Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-08-26T19:36:13.6042330Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6043020Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-08-26T19:36:13.6043810Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-08-26T19:36:13.6044620Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-08-26T19:36:13.6045450Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-08-26T19:36:13.6046230Z adding 'torch/include/ATen/ops/special_i1e_mps_dispatch.h' 2025-08-26T19:36:13.6047030Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-08-26T19:36:13.6047930Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-08-26T19:36:13.6048920Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-08-26T19:36:13.6049920Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6050820Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6051580Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-08-26T19:36:13.6052390Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-08-26T19:36:13.6053220Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-08-26T19:36:13.6054050Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-08-26T19:36:13.6054880Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-08-26T19:36:13.6055980Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-08-26T19:36:13.6056950Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-08-26T19:36:13.6057930Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6058830Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6059570Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-08-26T19:36:13.6060370Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-08-26T19:36:13.6061160Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-08-26T19:36:13.6061990Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-08-26T19:36:13.6062820Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-08-26T19:36:13.6063910Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-08-26T19:36:13.6064730Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-08-26T19:36:13.6065680Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6066420Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-08-26T19:36:13.6067310Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-08-26T19:36:13.6068170Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-08-26T19:36:13.6069140Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6069860Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-08-26T19:36:13.6070690Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-08-26T19:36:13.6071480Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-08-26T19:36:13.6072310Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-08-26T19:36:13.6073110Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-08-26T19:36:13.6074030Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-08-26T19:36:13.6074880Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-08-26T19:36:13.6075850Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6076590Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-08-26T19:36:13.6077480Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-08-26T19:36:13.6078330Z adding 'torch/include/ATen/ops/special_logit.h' 2025-08-26T19:36:13.6079290Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6080020Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-08-26T19:36:13.6080930Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-08-26T19:36:13.6081800Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-08-26T19:36:13.6082780Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6083560Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-08-26T19:36:13.6084460Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-08-26T19:36:13.6085350Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-08-26T19:36:13.6086340Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6087070Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-08-26T19:36:13.6087890Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-08-26T19:36:13.6088700Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-08-26T19:36:13.6089550Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-08-26T19:36:13.6090330Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h' 2025-08-26T19:36:13.6091130Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-08-26T19:36:13.6092040Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-08-26T19:36:13.6092880Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-08-26T19:36:13.6093870Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6094590Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-08-26T19:36:13.6095400Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-08-26T19:36:13.6096180Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-08-26T19:36:13.6096980Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-08-26T19:36:13.6097770Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h' 2025-08-26T19:36:13.6098580Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-08-26T19:36:13.6099480Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-08-26T19:36:13.6100690Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-08-26T19:36:13.6101690Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6102410Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-08-26T19:36:13.6103230Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-08-26T19:36:13.6104030Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-08-26T19:36:13.6104850Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-08-26T19:36:13.6105640Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h' 2025-08-26T19:36:13.6106450Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-08-26T19:36:13.6107360Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-08-26T19:36:13.6108220Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-08-26T19:36:13.6109220Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6109930Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-08-26T19:36:13.6110730Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-08-26T19:36:13.6111510Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-08-26T19:36:13.6112330Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-08-26T19:36:13.6113120Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h' 2025-08-26T19:36:13.6113920Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-08-26T19:36:13.6114820Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-08-26T19:36:13.6115690Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-08-26T19:36:13.6116640Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6117410Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-08-26T19:36:13.6118310Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-08-26T19:36:13.6119140Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-08-26T19:36:13.6120070Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6120820Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-08-26T19:36:13.6121790Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-08-26T19:36:13.6122620Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-08-26T19:36:13.6123610Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6124500Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-08-26T19:36:13.6125350Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-08-26T19:36:13.6126170Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-08-26T19:36:13.6127060Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-08-26T19:36:13.6127900Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-08-26T19:36:13.6128870Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-08-26T19:36:13.6129810Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-08-26T19:36:13.6130800Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6131630Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-08-26T19:36:13.6132530Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-08-26T19:36:13.6133360Z adding 'torch/include/ATen/ops/special_psi.h' 2025-08-26T19:36:13.6134330Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6135090Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-08-26T19:36:13.6136020Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-08-26T19:36:13.6136900Z adding 'torch/include/ATen/ops/special_round.h' 2025-08-26T19:36:13.6137860Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6138610Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-08-26T19:36:13.6139500Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-08-26T19:36:13.6140430Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-08-26T19:36:13.6141420Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6142170Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-08-26T19:36:13.6142990Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-08-26T19:36:13.6143800Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-08-26T19:36:13.6144640Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-08-26T19:36:13.6145430Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h' 2025-08-26T19:36:13.6146240Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-08-26T19:36:13.6147170Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-08-26T19:36:13.6148040Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-08-26T19:36:13.6149020Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6149720Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-08-26T19:36:13.6150530Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-08-26T19:36:13.6151340Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-08-26T19:36:13.6152140Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-08-26T19:36:13.6152930Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h' 2025-08-26T19:36:13.6153750Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-08-26T19:36:13.6154640Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-08-26T19:36:13.6155640Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-08-26T19:36:13.6156700Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6157610Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6158350Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-08-26T19:36:13.6159160Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-08-26T19:36:13.6159970Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-08-26T19:36:13.6160820Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-08-26T19:36:13.6161610Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h' 2025-08-26T19:36:13.6162460Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-08-26T19:36:13.6163570Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-08-26T19:36:13.6164570Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-08-26T19:36:13.6165610Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6166490Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6167230Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-08-26T19:36:13.6168040Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-08-26T19:36:13.6168840Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-08-26T19:36:13.6169710Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-08-26T19:36:13.6170540Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h' 2025-08-26T19:36:13.6171390Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-08-26T19:36:13.6172480Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-08-26T19:36:13.6173510Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-08-26T19:36:13.6174510Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6175400Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6176130Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-08-26T19:36:13.6176940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-08-26T19:36:13.6177740Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-08-26T19:36:13.6178580Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-08-26T19:36:13.6179370Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h' 2025-08-26T19:36:13.6180230Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-08-26T19:36:13.6181300Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-08-26T19:36:13.6182330Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-08-26T19:36:13.6183340Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6184260Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6184990Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-08-26T19:36:13.6185780Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-08-26T19:36:13.6186610Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-08-26T19:36:13.6187430Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-08-26T19:36:13.6188240Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h' 2025-08-26T19:36:13.6189100Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-08-26T19:36:13.6190160Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-08-26T19:36:13.6190970Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-08-26T19:36:13.6191930Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6192680Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-08-26T19:36:13.6193590Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-08-26T19:36:13.6194450Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-08-26T19:36:13.6195410Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6196150Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-08-26T19:36:13.6197080Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-08-26T19:36:13.6197970Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-08-26T19:36:13.6198960Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6199710Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-08-26T19:36:13.6200520Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-08-26T19:36:13.6201340Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-08-26T19:36:13.6202170Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-08-26T19:36:13.6202950Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h' 2025-08-26T19:36:13.6203770Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-08-26T19:36:13.6204680Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-08-26T19:36:13.6205630Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-08-26T19:36:13.6206620Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6207520Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6208260Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-08-26T19:36:13.6209080Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-08-26T19:36:13.6209960Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-08-26T19:36:13.6210770Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-08-26T19:36:13.6211550Z adding 'torch/include/ATen/ops/special_xlog1py_mps_dispatch.h' 2025-08-26T19:36:13.6212400Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-08-26T19:36:13.6213480Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-08-26T19:36:13.6214460Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-08-26T19:36:13.6215470Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6216240Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-08-26T19:36:13.6217320Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-08-26T19:36:13.6218290Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-08-26T19:36:13.6219290Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6220170Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6220910Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-08-26T19:36:13.6221770Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-08-26T19:36:13.6222530Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-08-26T19:36:13.6223370Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-08-26T19:36:13.6224180Z adding 'torch/include/ATen/ops/special_zeta_mps_dispatch.h' 2025-08-26T19:36:13.6225010Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-08-26T19:36:13.6226100Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-08-26T19:36:13.6227090Z adding 'torch/include/ATen/ops/split.h' 2025-08-26T19:36:13.6228080Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6228940Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6229890Z adding 'torch/include/ATen/ops/split_copy.h' 2025-08-26T19:36:13.6230900Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6231820Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6232530Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-08-26T19:36:13.6233470Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-08-26T19:36:13.6234330Z adding 'torch/include/ATen/ops/split_native.h' 2025-08-26T19:36:13.6235300Z adding 'torch/include/ATen/ops/split_ops.h' 2025-08-26T19:36:13.6236250Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-08-26T19:36:13.6237210Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6238180Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-08-26T19:36:13.6239200Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6240150Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6245150Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-08-26T19:36:13.6245400Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-08-26T19:36:13.6245510Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-08-26T19:36:13.6246600Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-08-26T19:36:13.6246700Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-08-26T19:36:13.6246770Z adding 'torch/include/ATen/ops/sqrt.h' 2025-08-26T19:36:13.6246960Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6247050Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-08-26T19:36:13.6247860Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-08-26T19:36:13.6248500Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-08-26T19:36:13.6249500Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-08-26T19:36:13.6250120Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2025-08-26T19:36:13.6251000Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-08-26T19:36:13.6251940Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-08-26T19:36:13.6252800Z adding 'torch/include/ATen/ops/square.h' 2025-08-26T19:36:13.6253760Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6254510Z adding 'torch/include/ATen/ops/square_native.h' 2025-08-26T19:36:13.6255440Z adding 'torch/include/ATen/ops/square_ops.h' 2025-08-26T19:36:13.6256330Z adding 'torch/include/ATen/ops/squeeze.h' 2025-08-26T19:36:13.6257290Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6258130Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6259020Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-08-26T19:36:13.6260000Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6260900Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6261640Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-08-26T19:36:13.6262720Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-08-26T19:36:13.6263570Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-08-26T19:36:13.6264710Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-08-26T19:36:13.6265640Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-08-26T19:36:13.6266630Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6267450Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-08-26T19:36:13.6268280Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-08-26T19:36:13.6269150Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-08-26T19:36:13.6270100Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-08-26T19:36:13.6270990Z adding 'torch/include/ATen/ops/stack.h' 2025-08-26T19:36:13.6271960Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6272710Z adding 'torch/include/ATen/ops/stack_native.h' 2025-08-26T19:36:13.6273640Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-08-26T19:36:13.6274750Z adding 'torch/include/ATen/ops/std.h' 2025-08-26T19:36:13.6275780Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6276610Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-08-26T19:36:13.6277440Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-08-26T19:36:13.6278470Z adding 'torch/include/ATen/ops/std_mean.h' 2025-08-26T19:36:13.6279440Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6280330Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6281180Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-08-26T19:36:13.6281940Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-08-26T19:36:13.6282770Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2025-08-26T19:36:13.6283700Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-08-26T19:36:13.6284930Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-08-26T19:36:13.6285870Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2025-08-26T19:36:13.6286830Z adding 'torch/include/ATen/ops/std_native.h' 2025-08-26T19:36:13.6288160Z adding 'torch/include/ATen/ops/std_ops.h' 2025-08-26T19:36:13.6289160Z adding 'torch/include/ATen/ops/stft.h' 2025-08-26T19:36:13.6290230Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6291020Z adding 'torch/include/ATen/ops/stft_native.h' 2025-08-26T19:36:13.6292060Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-08-26T19:36:13.6292950Z adding 'torch/include/ATen/ops/stride.h' 2025-08-26T19:36:13.6293930Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6294700Z adding 'torch/include/ATen/ops/stride_native.h' 2025-08-26T19:36:13.6295640Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-08-26T19:36:13.6296570Z adding 'torch/include/ATen/ops/sub.h' 2025-08-26T19:36:13.6297540Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6298440Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6299220Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-08-26T19:36:13.6300020Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-08-26T19:36:13.6300860Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-08-26T19:36:13.6301700Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-08-26T19:36:13.6302530Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2025-08-26T19:36:13.6303440Z adding 'torch/include/ATen/ops/sub_native.h' 2025-08-26T19:36:13.6305050Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-08-26T19:36:13.6305960Z adding 'torch/include/ATen/ops/subtract.h' 2025-08-26T19:36:13.6306940Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6307730Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-08-26T19:36:13.6308800Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-08-26T19:36:13.6309800Z adding 'torch/include/ATen/ops/sum.h' 2025-08-26T19:36:13.6310770Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6311680Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6312510Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6313310Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-08-26T19:36:13.6314130Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-08-26T19:36:13.6314940Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-08-26T19:36:13.6315780Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-08-26T19:36:13.6316570Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2025-08-26T19:36:13.6317510Z adding 'torch/include/ATen/ops/sum_native.h' 2025-08-26T19:36:13.6318650Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-08-26T19:36:13.6319560Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-08-26T19:36:13.6320520Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6321270Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-08-26T19:36:13.6322140Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-08-26T19:36:13.6323020Z adding 'torch/include/ATen/ops/svd.h' 2025-08-26T19:36:13.6324040Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6324760Z adding 'torch/include/ATen/ops/svd_native.h' 2025-08-26T19:36:13.6325710Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-08-26T19:36:13.6326550Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-08-26T19:36:13.6327510Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6328250Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-08-26T19:36:13.6329170Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-08-26T19:36:13.6330000Z adding 'torch/include/ATen/ops/swapdims.h' 2025-08-26T19:36:13.6330960Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6331690Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-08-26T19:36:13.6332590Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-08-26T19:36:13.6333480Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-08-26T19:36:13.6334430Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6335230Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-08-26T19:36:13.6336170Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6336930Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-08-26T19:36:13.6337820Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-08-26T19:36:13.6338630Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-08-26T19:36:13.6339520Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-08-26T19:36:13.6340310Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-08-26T19:36:13.6341260Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6341990Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-08-26T19:36:13.6342860Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-08-26T19:36:13.6343680Z adding 'torch/include/ATen/ops/sym_size.h' 2025-08-26T19:36:13.6344620Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6345350Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-08-26T19:36:13.6346240Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-08-26T19:36:13.6347060Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-08-26T19:36:13.6348010Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6348750Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-08-26T19:36:13.6349630Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-08-26T19:36:13.6350420Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-08-26T19:36:13.6351350Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6352080Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-08-26T19:36:13.6352950Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-08-26T19:36:13.6353750Z adding 'torch/include/ATen/ops/t.h' 2025-08-26T19:36:13.6354680Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6355470Z adding 'torch/include/ATen/ops/t_copy.h' 2025-08-26T19:36:13.6356390Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6357280Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6357980Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-08-26T19:36:13.6358870Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-08-26T19:36:13.6359670Z adding 'torch/include/ATen/ops/t_native.h' 2025-08-26T19:36:13.6360550Z adding 'torch/include/ATen/ops/t_ops.h' 2025-08-26T19:36:13.6361430Z adding 'torch/include/ATen/ops/take.h' 2025-08-26T19:36:13.6362330Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-08-26T19:36:13.6363300Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6364110Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-08-26T19:36:13.6365000Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-08-26T19:36:13.6365860Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-08-26T19:36:13.6366700Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-08-26T19:36:13.6367520Z adding 'torch/include/ATen/ops/take_native.h' 2025-08-26T19:36:13.6368420Z adding 'torch/include/ATen/ops/take_ops.h' 2025-08-26T19:36:13.6369290Z adding 'torch/include/ATen/ops/tan.h' 2025-08-26T19:36:13.6370260Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6371000Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-08-26T19:36:13.6371800Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-08-26T19:36:13.6372600Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-08-26T19:36:13.6373430Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-08-26T19:36:13.6374200Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2025-08-26T19:36:13.6375040Z adding 'torch/include/ATen/ops/tan_native.h' 2025-08-26T19:36:13.6375990Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-08-26T19:36:13.6376840Z adding 'torch/include/ATen/ops/tanh.h' 2025-08-26T19:36:13.6377740Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-08-26T19:36:13.6378730Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6379480Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6380320Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6381120Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-08-26T19:36:13.6381960Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-08-26T19:36:13.6382760Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2025-08-26T19:36:13.6383590Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-08-26T19:36:13.6384550Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-08-26T19:36:13.6385470Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6386180Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-08-26T19:36:13.6386980Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-08-26T19:36:13.6387770Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-08-26T19:36:13.6388580Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-08-26T19:36:13.6389370Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2025-08-26T19:36:13.6390220Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-08-26T19:36:13.6391180Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-08-26T19:36:13.6392180Z adding 'torch/include/ATen/ops/tensor.h' 2025-08-26T19:36:13.6393190Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-08-26T19:36:13.6394190Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6394980Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-08-26T19:36:13.6395970Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-08-26T19:36:13.6396870Z adding 'torch/include/ATen/ops/tensordot.h' 2025-08-26T19:36:13.6397850Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6398590Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-08-26T19:36:13.6399530Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-08-26T19:36:13.6400720Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-08-26T19:36:13.6401780Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6402550Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-08-26T19:36:13.6403520Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-08-26T19:36:13.6404410Z adding 'torch/include/ATen/ops/threshold.h' 2025-08-26T19:36:13.6405390Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-08-26T19:36:13.6406370Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6407220Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6407970Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6408790Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-08-26T19:36:13.6409640Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-08-26T19:36:13.6410440Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2025-08-26T19:36:13.6411310Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-08-26T19:36:13.6412260Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-08-26T19:36:13.6413230Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6413970Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-08-26T19:36:13.6414790Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-08-26T19:36:13.6415600Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-08-26T19:36:13.6416440Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-08-26T19:36:13.6417220Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2025-08-26T19:36:13.6418060Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-08-26T19:36:13.6419930Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-08-26T19:36:13.6421180Z adding 'torch/include/ATen/ops/tile.h' 2025-08-26T19:36:13.6422360Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6423520Z adding 'torch/include/ATen/ops/tile_native.h' 2025-08-26T19:36:13.6424520Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-08-26T19:36:13.6425390Z adding 'torch/include/ATen/ops/to.h' 2025-08-26T19:36:13.6426460Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6427280Z adding 'torch/include/ATen/ops/to_dense.h' 2025-08-26T19:36:13.6428210Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-08-26T19:36:13.6429230Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6430000Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-08-26T19:36:13.6430990Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-08-26T19:36:13.6431970Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6432740Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-08-26T19:36:13.6433680Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-08-26T19:36:13.6434630Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-08-26T19:36:13.6435540Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-08-26T19:36:13.6436540Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6437270Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-08-26T19:36:13.6438240Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-08-26T19:36:13.6439190Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6440000Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-08-26T19:36:13.6440820Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-08-26T19:36:13.6441860Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-08-26T19:36:13.6442750Z adding 'torch/include/ATen/ops/to_native.h' 2025-08-26T19:36:13.6443880Z adding 'torch/include/ATen/ops/to_ops.h' 2025-08-26T19:36:13.6445030Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-08-26T19:36:13.6446130Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6446970Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-08-26T19:36:13.6447920Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-08-26T19:36:13.6448700Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-08-26T19:36:13.6449580Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-08-26T19:36:13.6450580Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6451390Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-08-26T19:36:13.6452330Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-08-26T19:36:13.6453160Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-08-26T19:36:13.6454170Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6454950Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-08-26T19:36:13.6455890Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-08-26T19:36:13.6456950Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6457720Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-08-26T19:36:13.6458680Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6459450Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-08-26T19:36:13.6460440Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-08-26T19:36:13.6461260Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-08-26T19:36:13.6462220Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6462950Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-08-26T19:36:13.6463870Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-08-26T19:36:13.6464740Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-08-26T19:36:13.6465710Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-08-26T19:36:13.6466800Z adding 'torch/include/ATen/ops/topk.h' 2025-08-26T19:36:13.6467910Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6468760Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-08-26T19:36:13.6469930Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-08-26T19:36:13.6470490Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-08-26T19:36:13.6471420Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-08-26T19:36:13.6472270Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2025-08-26T19:36:13.6473170Z adding 'torch/include/ATen/ops/topk_native.h' 2025-08-26T19:36:13.6474140Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-08-26T19:36:13.6475110Z adding 'torch/include/ATen/ops/trace.h' 2025-08-26T19:36:13.6476050Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-08-26T19:36:13.6477030Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6477760Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-08-26T19:36:13.6478730Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-08-26T19:36:13.6479700Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6480460Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-08-26T19:36:13.6481280Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-08-26T19:36:13.6482150Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2025-08-26T19:36:13.6482990Z adding 'torch/include/ATen/ops/trace_native.h' 2025-08-26T19:36:13.6483900Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-08-26T19:36:13.6484790Z adding 'torch/include/ATen/ops/transpose.h' 2025-08-26T19:36:13.6485840Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6486720Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6487550Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-08-26T19:36:13.6488530Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6489520Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6490280Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-08-26T19:36:13.6491230Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-08-26T19:36:13.6492070Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-08-26T19:36:13.6493140Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-08-26T19:36:13.6494050Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-08-26T19:36:13.6494990Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6495730Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-08-26T19:36:13.6496740Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-08-26T19:36:13.6497590Z adding 'torch/include/ATen/ops/trapz.h' 2025-08-26T19:36:13.6498540Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6499290Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-08-26T19:36:13.6500280Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-08-26T19:36:13.6501270Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-08-26T19:36:13.6502280Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6503070Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-08-26T19:36:13.6504000Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-08-26T19:36:13.6504830Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-08-26T19:36:13.6505680Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-08-26T19:36:13.6506510Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2025-08-26T19:36:13.6507440Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-08-26T19:36:13.6508430Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-08-26T19:36:13.6509300Z adding 'torch/include/ATen/ops/tril.h' 2025-08-26T19:36:13.6510300Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6511450Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-08-26T19:36:13.6512300Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-08-26T19:36:13.6513250Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-08-26T19:36:13.6514210Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6515100Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-08-26T19:36:13.6515970Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-08-26T19:36:13.6516870Z adding 'torch/include/ATen/ops/tril_indices_mps_dispatch.h' 2025-08-26T19:36:13.6517730Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-08-26T19:36:13.6518800Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-08-26T19:36:13.6519660Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-08-26T19:36:13.6520540Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-08-26T19:36:13.6521360Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2025-08-26T19:36:13.6522280Z adding 'torch/include/ATen/ops/tril_native.h' 2025-08-26T19:36:13.6523260Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-08-26T19:36:13.6524160Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-08-26T19:36:13.6525160Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6525990Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-08-26T19:36:13.6526940Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-08-26T19:36:13.6527770Z adding 'torch/include/ATen/ops/triu.h' 2025-08-26T19:36:13.6528750Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6529550Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-08-26T19:36:13.6530360Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-08-26T19:36:13.6531310Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-08-26T19:36:13.6532290Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6533140Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-08-26T19:36:13.6533990Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-08-26T19:36:13.6534800Z adding 'torch/include/ATen/ops/triu_indices_mps_dispatch.h' 2025-08-26T19:36:13.6535640Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-08-26T19:36:13.6536730Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-08-26T19:36:13.6537550Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-08-26T19:36:13.6538380Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-08-26T19:36:13.6539180Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2025-08-26T19:36:13.6540080Z adding 'torch/include/ATen/ops/triu_native.h' 2025-08-26T19:36:13.6541050Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-08-26T19:36:13.6541950Z adding 'torch/include/ATen/ops/true_divide.h' 2025-08-26T19:36:13.6542940Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6543760Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-08-26T19:36:13.6544830Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-08-26T19:36:13.6545700Z adding 'torch/include/ATen/ops/trunc.h' 2025-08-26T19:36:13.6546700Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6547510Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-08-26T19:36:13.6548360Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-08-26T19:36:13.6549160Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-08-26T19:36:13.6549990Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-08-26T19:36:13.6550860Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2025-08-26T19:36:13.6551710Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-08-26T19:36:13.6552670Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-08-26T19:36:13.6553480Z adding 'torch/include/ATen/ops/type_as.h' 2025-08-26T19:36:13.6554510Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6555270Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-08-26T19:36:13.6556160Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-08-26T19:36:13.6557000Z adding 'torch/include/ATen/ops/unbind.h' 2025-08-26T19:36:13.6558030Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6558890Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6559690Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-08-26T19:36:13.6560670Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6561620Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6562350Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-08-26T19:36:13.6563280Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-08-26T19:36:13.6564120Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-08-26T19:36:13.6565160Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-08-26T19:36:13.6566150Z adding 'torch/include/ATen/ops/unflatten.h' 2025-08-26T19:36:13.6567170Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6567990Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-08-26T19:36:13.6569010Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6569770Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-08-26T19:36:13.6570670Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-08-26T19:36:13.6571470Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-08-26T19:36:13.6572500Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-08-26T19:36:13.6573340Z adding 'torch/include/ATen/ops/unfold.h' 2025-08-26T19:36:13.6574430Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-08-26T19:36:13.6575480Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6576340Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6577180Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6577990Z adding 'torch/include/ATen/ops/unfold_backward_mps_dispatch.h' 2025-08-26T19:36:13.6578830Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-08-26T19:36:13.6579840Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-08-26T19:36:13.6580730Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-08-26T19:36:13.6581690Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6582600Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6583370Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-08-26T19:36:13.6584320Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-08-26T19:36:13.6585170Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-08-26T19:36:13.6586000Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-08-26T19:36:13.6586850Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-08-26T19:36:13.6587660Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2025-08-26T19:36:13.6588470Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-08-26T19:36:13.6589370Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-08-26T19:36:13.6590330Z adding 'torch/include/ATen/ops/uniform.h' 2025-08-26T19:36:13.6591330Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6592120Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-08-26T19:36:13.6592940Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-08-26T19:36:13.6593780Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-08-26T19:36:13.6594600Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2025-08-26T19:36:13.6595440Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-08-26T19:36:13.6596430Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-08-26T19:36:13.6597480Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-08-26T19:36:13.6598500Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6599300Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-08-26T19:36:13.6600130Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-08-26T19:36:13.6601010Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2025-08-26T19:36:13.6601880Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-08-26T19:36:13.6602880Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-08-26T19:36:13.6603810Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-08-26T19:36:13.6604880Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6605780Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-08-26T19:36:13.6606780Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6607560Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-08-26T19:36:13.6608460Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-08-26T19:36:13.6609270Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2025-08-26T19:36:13.6610120Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-08-26T19:36:13.6611110Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-08-26T19:36:13.6612020Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-08-26T19:36:13.6612860Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-08-26T19:36:13.6613690Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-08-26T19:36:13.6614690Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-08-26T19:36:13.6615630Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-08-26T19:36:13.6616590Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6617340Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-08-26T19:36:13.6618230Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-08-26T19:36:13.6619320Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-08-26T19:36:13.6620380Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6621120Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-08-26T19:36:13.6622100Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-08-26T19:36:13.6623250Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-08-26T19:36:13.6624370Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6625220Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-08-26T19:36:13.6626200Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-08-26T19:36:13.6627140Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-08-26T19:36:13.6628200Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6629110Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-08-26T19:36:13.6630130Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6631080Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6631830Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-08-26T19:36:13.6632780Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-08-26T19:36:13.6633640Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-08-26T19:36:13.6634620Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-08-26T19:36:13.6635870Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-08-26T19:36:13.6637140Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-08-26T19:36:13.6638230Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6639140Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6640050Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6640910Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-08-26T19:36:13.6641820Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-08-26T19:36:13.6642770Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.6643690Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-08-26T19:36:13.6644690Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-08-26T19:36:13.6645720Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6646600Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6647470Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-08-26T19:36:13.6648350Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-08-26T19:36:13.6649210Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-08-26T19:36:13.6650170Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-08-26T19:36:13.6651040Z adding 'torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h' 2025-08-26T19:36:13.6651940Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-08-26T19:36:13.6652980Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-08-26T19:36:13.6654590Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-08-26T19:36:13.6655760Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-08-26T19:36:13.6656850Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6657680Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6658650Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6659500Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-08-26T19:36:13.6660410Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-08-26T19:36:13.6661330Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.6662240Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-08-26T19:36:13.6663250Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-08-26T19:36:13.6664230Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6665150Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6666060Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6666910Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-08-26T19:36:13.6667770Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-08-26T19:36:13.6668610Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-08-26T19:36:13.6669560Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-08-26T19:36:13.6670430Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2025-08-26T19:36:13.6671350Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-08-26T19:36:13.6672430Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-08-26T19:36:13.6673740Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-08-26T19:36:13.6674970Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-08-26T19:36:13.6676020Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6676860Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6677800Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6678660Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-08-26T19:36:13.6679540Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-08-26T19:36:13.6680390Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2025-08-26T19:36:13.6681340Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-08-26T19:36:13.6682330Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-08-26T19:36:13.6683340Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6684160Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6685080Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-08-26T19:36:13.6685990Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-08-26T19:36:13.6686790Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-08-26T19:36:13.6687670Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-08-26T19:36:13.6688580Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2025-08-26T19:36:13.6689480Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-08-26T19:36:13.6690510Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-08-26T19:36:13.6691670Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-08-26T19:36:13.6692920Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-08-26T19:36:13.6693990Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6694810Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6695660Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6696560Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-08-26T19:36:13.6697480Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-08-26T19:36:13.6698360Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2025-08-26T19:36:13.6699240Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-08-26T19:36:13.6700260Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-08-26T19:36:13.6701270Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6702110Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6702930Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-08-26T19:36:13.6703860Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-08-26T19:36:13.6704690Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-08-26T19:36:13.6705550Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-08-26T19:36:13.6706370Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2025-08-26T19:36:13.6707300Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-08-26T19:36:13.6708320Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-08-26T19:36:13.6709730Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-08-26T19:36:13.6710930Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-08-26T19:36:13.6712090Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6712920Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6713810Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6714640Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-08-26T19:36:13.6715610Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-08-26T19:36:13.6716500Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2025-08-26T19:36:13.6717350Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-08-26T19:36:13.6718350Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-08-26T19:36:13.6719370Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6720320Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6721150Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6721980Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-08-26T19:36:13.6722930Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-08-26T19:36:13.6723770Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-08-26T19:36:13.6725030Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-08-26T19:36:13.6725860Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2025-08-26T19:36:13.6726890Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-08-26T19:36:13.6727960Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-08-26T19:36:13.6729230Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-08-26T19:36:13.6730500Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-08-26T19:36:13.6731650Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6732520Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6733430Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6734270Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-08-26T19:36:13.6735250Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-08-26T19:36:13.6736130Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h' 2025-08-26T19:36:13.6737010Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-08-26T19:36:13.6738020Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-08-26T19:36:13.6739090Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6739950Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6740790Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-08-26T19:36:13.6741670Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-08-26T19:36:13.6742580Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-08-26T19:36:13.6743470Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-08-26T19:36:13.6744330Z adding 'torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h' 2025-08-26T19:36:13.6745230Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-08-26T19:36:13.6746320Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-08-26T19:36:13.6747640Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-08-26T19:36:13.6748920Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-08-26T19:36:13.6750000Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6750910Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-08-26T19:36:13.6751850Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-08-26T19:36:13.6752690Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-08-26T19:36:13.6758310Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-08-26T19:36:13.6758640Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h' 2025-08-26T19:36:13.6758790Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-08-26T19:36:13.6759790Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-08-26T19:36:13.6760040Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6760230Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6760370Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-08-26T19:36:13.6760500Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-08-26T19:36:13.6761410Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-08-26T19:36:13.6762560Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-08-26T19:36:13.6763650Z adding 'torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h' 2025-08-26T19:36:13.6764600Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-08-26T19:36:13.6765740Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-08-26T19:36:13.6766760Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-08-26T19:36:13.6767820Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6768610Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-08-26T19:36:13.6769560Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-08-26T19:36:13.6770340Z adding 'torch/include/ATen/ops/values.h' 2025-08-26T19:36:13.6771310Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6772110Z adding 'torch/include/ATen/ops/values_copy.h' 2025-08-26T19:36:13.6773100Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6774040Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6774780Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-08-26T19:36:13.6775730Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-08-26T19:36:13.6776580Z adding 'torch/include/ATen/ops/values_native.h' 2025-08-26T19:36:13.6777460Z adding 'torch/include/ATen/ops/values_ops.h' 2025-08-26T19:36:13.6778390Z adding 'torch/include/ATen/ops/values_sparsemps_dispatch.h' 2025-08-26T19:36:13.6779200Z adding 'torch/include/ATen/ops/vander.h' 2025-08-26T19:36:13.6780190Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6780930Z adding 'torch/include/ATen/ops/vander_native.h' 2025-08-26T19:36:13.6781840Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-08-26T19:36:13.6782960Z adding 'torch/include/ATen/ops/var.h' 2025-08-26T19:36:13.6784020Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6784850Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-08-26T19:36:13.6785700Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-08-26T19:36:13.6786720Z adding 'torch/include/ATen/ops/var_mean.h' 2025-08-26T19:36:13.6787710Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6788600Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6789400Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-08-26T19:36:13.6790220Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-08-26T19:36:13.6791050Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2025-08-26T19:36:13.6791950Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-08-26T19:36:13.6793170Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-08-26T19:36:13.6794090Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2025-08-26T19:36:13.6795020Z adding 'torch/include/ATen/ops/var_native.h' 2025-08-26T19:36:13.6796390Z adding 'torch/include/ATen/ops/var_ops.h' 2025-08-26T19:36:13.6797280Z adding 'torch/include/ATen/ops/vdot.h' 2025-08-26T19:36:13.6798270Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6799050Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-08-26T19:36:13.6799900Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-08-26T19:36:13.6800740Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-08-26T19:36:13.6801680Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-08-26T19:36:13.6802580Z adding 'torch/include/ATen/ops/view.h' 2025-08-26T19:36:13.6803420Z adding 'torch/include/ATen/ops/view_as.h' 2025-08-26T19:36:13.6804280Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-08-26T19:36:13.6805170Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-08-26T19:36:13.6806150Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6807090Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6807830Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-08-26T19:36:13.6808740Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-08-26T19:36:13.6809610Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-08-26T19:36:13.6810430Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-08-26T19:36:13.6811540Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-08-26T19:36:13.6812020Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2025-08-26T19:36:13.6812830Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-08-26T19:36:13.6813720Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-08-26T19:36:13.6814620Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6815350Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-08-26T19:36:13.6816240Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-08-26T19:36:13.6817090Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-08-26T19:36:13.6817970Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-08-26T19:36:13.6818950Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6819820Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6820530Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-08-26T19:36:13.6821490Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-08-26T19:36:13.6822290Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-08-26T19:36:13.6823080Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-08-26T19:36:13.6823880Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-08-26T19:36:13.6824680Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2025-08-26T19:36:13.6825470Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-08-26T19:36:13.6826350Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-08-26T19:36:13.6827270Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6828270Z adding 'torch/include/ATen/ops/view_copy.h' 2025-08-26T19:36:13.6829270Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6830180Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6830910Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-08-26T19:36:13.6831930Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-08-26T19:36:13.6832770Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-08-26T19:36:13.6833580Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-08-26T19:36:13.6834410Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-08-26T19:36:13.6835190Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2025-08-26T19:36:13.6836010Z adding 'torch/include/ATen/ops/view_native.h' 2025-08-26T19:36:13.6836930Z adding 'torch/include/ATen/ops/view_ops.h' 2025-08-26T19:36:13.6837810Z adding 'torch/include/ATen/ops/vsplit.h' 2025-08-26T19:36:13.6838770Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6839530Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-08-26T19:36:13.6840480Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-08-26T19:36:13.6841350Z adding 'torch/include/ATen/ops/vstack.h' 2025-08-26T19:36:13.6842320Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6843060Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-08-26T19:36:13.6843990Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-08-26T19:36:13.6844950Z adding 'torch/include/ATen/ops/where.h' 2025-08-26T19:36:13.6845930Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6846740Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-08-26T19:36:13.6847560Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-08-26T19:36:13.6848350Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2025-08-26T19:36:13.6849240Z adding 'torch/include/ATen/ops/where_native.h' 2025-08-26T19:36:13.6850300Z adding 'torch/include/ATen/ops/where_ops.h' 2025-08-26T19:36:13.6851310Z adding 'torch/include/ATen/ops/xlogy.h' 2025-08-26T19:36:13.6852310Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6853220Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-08-26T19:36:13.6853960Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-08-26T19:36:13.6854770Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-08-26T19:36:13.6855580Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-08-26T19:36:13.6856420Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-08-26T19:36:13.6857200Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2025-08-26T19:36:13.6858070Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-08-26T19:36:13.6859220Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-08-26T19:36:13.6860120Z adding 'torch/include/ATen/ops/xor.h' 2025-08-26T19:36:13.6861070Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-08-26T19:36:13.6861820Z adding 'torch/include/ATen/ops/xor_native.h' 2025-08-26T19:36:13.6862800Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-08-26T19:36:13.6863690Z adding 'torch/include/ATen/ops/zero.h' 2025-08-26T19:36:13.6864640Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6865400Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-08-26T19:36:13.6866200Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-08-26T19:36:13.6867020Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-08-26T19:36:13.6867810Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2025-08-26T19:36:13.6868660Z adding 'torch/include/ATen/ops/zero_native.h' 2025-08-26T19:36:13.6869590Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-08-26T19:36:13.6870830Z adding 'torch/include/ATen/ops/zeros.h' 2025-08-26T19:36:13.6871930Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6872840Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-08-26T19:36:13.6873870Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-08-26T19:36:13.6874790Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-08-26T19:36:13.6875540Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-08-26T19:36:13.6876520Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-08-26T19:36:13.6877390Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-08-26T19:36:13.6878480Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-08-26T19:36:13.6881460Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-08-26T19:36:13.6883920Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-08-26T19:36:13.6885280Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-08-26T19:36:13.6886250Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-08-26T19:36:13.6887160Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-08-26T19:36:13.6888010Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-08-26T19:36:13.6890010Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-08-26T19:36:13.6890730Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-08-26T19:36:13.6891990Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-08-26T19:36:13.6896720Z adding 'torch/include/c10/core/Allocator.h' 2025-08-26T19:36:13.6899960Z adding 'torch/include/c10/core/AllocatorConfig.h' 2025-08-26T19:36:13.6900730Z adding 'torch/include/c10/core/AutogradState.h' 2025-08-26T19:36:13.6903090Z adding 'torch/include/c10/core/Backend.h' 2025-08-26T19:36:13.6903910Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-08-26T19:36:13.6905540Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-08-26T19:36:13.6906530Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-08-26T19:36:13.6907630Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-08-26T19:36:13.6909600Z adding 'torch/include/c10/core/Contiguity.h' 2025-08-26T19:36:13.6910230Z adding 'torch/include/c10/core/CopyBytes.h' 2025-08-26T19:36:13.6911050Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-08-26T19:36:13.6911980Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-08-26T19:36:13.6914080Z adding 'torch/include/c10/core/Device.h' 2025-08-26T19:36:13.6914750Z adding 'torch/include/c10/core/DeviceArray.h' 2025-08-26T19:36:13.6916980Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-08-26T19:36:13.6918220Z adding 'torch/include/c10/core/DeviceType.h' 2025-08-26T19:36:13.6925920Z adding 'torch/include/c10/core/DispatchKey.h' 2025-08-26T19:36:13.6935330Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-08-26T19:36:13.6936800Z adding 'torch/include/c10/core/DynamicCast.h' 2025-08-26T19:36:13.6938690Z adding 'torch/include/c10/core/Event.h' 2025-08-26T19:36:13.6939730Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-08-26T19:36:13.6940700Z adding 'torch/include/c10/core/GradMode.h' 2025-08-26T19:36:13.6942060Z adding 'torch/include/c10/core/InferenceMode.h' 2025-08-26T19:36:13.6943060Z adding 'torch/include/c10/core/Layout.h' 2025-08-26T19:36:13.6945610Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-08-26T19:36:13.6946200Z adding 'torch/include/c10/core/OptionalRef.h' 2025-08-26T19:36:13.6947590Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-08-26T19:36:13.6948420Z adding 'torch/include/c10/core/QEngine.h' 2025-08-26T19:36:13.6949380Z adding 'torch/include/c10/core/QScheme.h' 2025-08-26T19:36:13.6950500Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-08-26T19:36:13.6951770Z adding 'torch/include/c10/core/SafePyObject.h' 2025-08-26T19:36:13.6954940Z adding 'torch/include/c10/core/Scalar.h' 2025-08-26T19:36:13.6958800Z adding 'torch/include/c10/core/ScalarType.h' 2025-08-26T19:36:13.6959620Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-08-26T19:36:13.6961600Z adding 'torch/include/c10/core/Storage.h' 2025-08-26T19:36:13.6964260Z adding 'torch/include/c10/core/StorageImpl.h' 2025-08-26T19:36:13.6966340Z adding 'torch/include/c10/core/Stream.h' 2025-08-26T19:36:13.6967870Z adding 'torch/include/c10/core/StreamGuard.h' 2025-08-26T19:36:13.6969350Z adding 'torch/include/c10/core/SymBool.h' 2025-08-26T19:36:13.6970680Z adding 'torch/include/c10/core/SymFloat.h' 2025-08-26T19:36:13.6974070Z adding 'torch/include/c10/core/SymInt.h' 2025-08-26T19:36:13.6975040Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-08-26T19:36:13.6977010Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-08-26T19:36:13.6978310Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-08-26T19:36:13.7004670Z adding 'torch/include/c10/core/TensorImpl.h' 2025-08-26T19:36:13.7010790Z adding 'torch/include/c10/core/TensorOptions.h' 2025-08-26T19:36:13.7011710Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-08-26T19:36:13.7012740Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-08-26T19:36:13.7013620Z adding 'torch/include/c10/core/alignment.h' 2025-08-26T19:36:13.7014890Z adding 'torch/include/c10/core/thread_pool.h' 2025-08-26T19:36:13.7016460Z adding 'torch/include/c10/core/impl/COW.h' 2025-08-26T19:36:13.7017460Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-08-26T19:36:13.7020910Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-08-26T19:36:13.7022260Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-08-26T19:36:13.7023180Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-08-26T19:36:13.7024410Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-08-26T19:36:13.7028060Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-08-26T19:36:13.7029250Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-08-26T19:36:13.7031940Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-08-26T19:36:13.7033440Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-08-26T19:36:13.7036190Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-08-26T19:36:13.7036940Z adding 'torch/include/c10/core/impl/PyInterpreterHooks.h' 2025-08-26T19:36:13.7038880Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-08-26T19:36:13.7039540Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-08-26T19:36:13.7041700Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-08-26T19:36:13.7042590Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-08-26T19:36:13.7043730Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-08-26T19:36:13.7044600Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-08-26T19:36:13.7045940Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-08-26T19:36:13.7047440Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-08-26T19:36:13.7051300Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-08-26T19:36:13.7052530Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-08-26T19:36:13.7054700Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-08-26T19:36:13.7055820Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-08-26T19:36:13.7057230Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-08-26T19:36:13.7058340Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-08-26T19:36:13.7060860Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-08-26T19:36:13.7061620Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-08-26T19:36:13.7062760Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-08-26T19:36:13.7063580Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-08-26T19:36:13.7066460Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-08-26T19:36:13.7067500Z adding 'torch/include/c10/cuda/driver_api.h' 2025-08-26T19:36:13.7070150Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-08-26T19:36:13.7070670Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-08-26T19:36:13.7071640Z adding 'torch/include/c10/macros/Export.h' 2025-08-26T19:36:13.7072330Z adding 'torch/include/c10/macros/Macros.h' 2025-08-26T19:36:13.7073150Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-08-26T19:36:13.7075160Z adding 'torch/include/c10/metal/atomic.h' 2025-08-26T19:36:13.7075800Z adding 'torch/include/c10/metal/common.h' 2025-08-26T19:36:13.7077200Z adding 'torch/include/c10/metal/expm1f.h' 2025-08-26T19:36:13.7080480Z adding 'torch/include/c10/metal/indexing.h' 2025-08-26T19:36:13.7081430Z adding 'torch/include/c10/metal/random.h' 2025-08-26T19:36:13.7083630Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-08-26T19:36:13.7092550Z adding 'torch/include/c10/metal/special_math.h' 2025-08-26T19:36:13.7094590Z adding 'torch/include/c10/metal/utils.h' 2025-08-26T19:36:13.7096040Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-08-26T19:36:13.7097950Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-08-26T19:36:13.7098770Z adding 'torch/include/c10/test/util/Macros.h' 2025-08-26T19:36:13.7101480Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-08-26T19:36:13.7104620Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-08-26T19:36:13.7106620Z adding 'torch/include/c10/util/AbortHandler.h' 2025-08-26T19:36:13.7108140Z adding 'torch/include/c10/util/AlignOf.h' 2025-08-26T19:36:13.7109530Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-08-26T19:36:13.7110360Z adding 'torch/include/c10/util/Array.h' 2025-08-26T19:36:13.7113010Z adding 'torch/include/c10/util/ArrayRef.h' 2025-08-26T19:36:13.7113520Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-08-26T19:36:13.7115580Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-08-26T19:36:13.7116060Z adding 'torch/include/c10/util/BFloat16.h' 2025-08-26T19:36:13.7116930Z adding 'torch/include/c10/util/Backtrace.h' 2025-08-26T19:36:13.7118260Z adding 'torch/include/c10/util/Bitset.h' 2025-08-26T19:36:13.7119360Z adding 'torch/include/c10/util/C++17.h' 2025-08-26T19:36:13.7120430Z adding 'torch/include/c10/util/CallOnce.h' 2025-08-26T19:36:13.7122670Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-08-26T19:36:13.7123810Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-08-26T19:36:13.7125010Z adding 'torch/include/c10/util/Deprecated.h' 2025-08-26T19:36:13.7125810Z adding 'torch/include/c10/util/DimVector.h' 2025-08-26T19:36:13.7126770Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-08-26T19:36:13.7128120Z adding 'torch/include/c10/util/Enumerate.h' 2025-08-26T19:36:13.7134260Z adding 'torch/include/c10/util/Exception.h' 2025-08-26T19:36:13.7135630Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-08-26T19:36:13.7136810Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-08-26T19:36:13.7137640Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-08-26T19:36:13.7140230Z adding 'torch/include/c10/util/Flags.h' 2025-08-26T19:36:13.7140750Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-08-26T19:36:13.7141520Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-08-26T19:36:13.7142190Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-08-26T19:36:13.7142920Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-08-26T19:36:13.7143590Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-08-26T19:36:13.7144300Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-08-26T19:36:13.7144970Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-08-26T19:36:13.7145690Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-08-26T19:36:13.7146350Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-08-26T19:36:13.7147110Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-08-26T19:36:13.7147740Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-08-26T19:36:13.7148860Z adding 'torch/include/c10/util/FunctionRef.h' 2025-08-26T19:36:13.7149830Z adding 'torch/include/c10/util/Gauge.h' 2025-08-26T19:36:13.7150530Z adding 'torch/include/c10/util/Half-inl.h' 2025-08-26T19:36:13.7151330Z adding 'torch/include/c10/util/Half.h' 2025-08-26T19:36:13.7152480Z adding 'torch/include/c10/util/IdWrapper.h' 2025-08-26T19:36:13.7153890Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-08-26T19:36:13.7155030Z adding 'torch/include/c10/util/Lazy.h' 2025-08-26T19:36:13.7157230Z adding 'torch/include/c10/util/LeftRight.h' 2025-08-26T19:36:13.7157860Z adding 'torch/include/c10/util/Load.h' 2025-08-26T19:36:13.7160820Z adding 'torch/include/c10/util/Logging.h' 2025-08-26T19:36:13.7161730Z adding 'torch/include/c10/util/MathConstants.h' 2025-08-26T19:36:13.7163750Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-08-26T19:36:13.7165310Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-08-26T19:36:13.7166240Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-08-26T19:36:13.7167230Z adding 'torch/include/c10/util/Optional.h' 2025-08-26T19:36:13.7169290Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-08-26T19:36:13.7169680Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-08-26T19:36:13.7172410Z adding 'torch/include/c10/util/Registry.h' 2025-08-26T19:36:13.7173150Z adding 'torch/include/c10/util/ScopeExit.h' 2025-08-26T19:36:13.7174100Z adding 'torch/include/c10/util/Semaphore.h' 2025-08-26T19:36:13.7175120Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-08-26T19:36:13.7185420Z adding 'torch/include/c10/util/SmallVector.h' 2025-08-26T19:36:13.7187610Z adding 'torch/include/c10/util/StringUtil.h' 2025-08-26T19:36:13.7188470Z adding 'torch/include/c10/util/Synchronized.h' 2025-08-26T19:36:13.7189800Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-08-26T19:36:13.7191010Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-08-26T19:36:13.7191850Z adding 'torch/include/c10/util/Type.h' 2025-08-26T19:36:13.7193800Z adding 'torch/include/c10/util/TypeCast.h' 2025-08-26T19:36:13.7194780Z adding 'torch/include/c10/util/TypeIndex.h' 2025-08-26T19:36:13.7198000Z adding 'torch/include/c10/util/TypeList.h' 2025-08-26T19:36:13.7198550Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-08-26T19:36:13.7200000Z adding 'torch/include/c10/util/TypeTraits.h' 2025-08-26T19:36:13.7200790Z adding 'torch/include/c10/util/Unicode.h' 2025-08-26T19:36:13.7202310Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-08-26T19:36:13.7203190Z adding 'torch/include/c10/util/Unroll.h' 2025-08-26T19:36:13.7204330Z adding 'torch/include/c10/util/WaitCounter.h' 2025-08-26T19:36:13.7205270Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-08-26T19:36:13.7206400Z adding 'torch/include/c10/util/accumulate.h' 2025-08-26T19:36:13.7207130Z adding 'torch/include/c10/util/bit_cast.h' 2025-08-26T19:36:13.7207840Z adding 'torch/include/c10/util/bits.h' 2025-08-26T19:36:13.7208890Z adding 'torch/include/c10/util/complex.h' 2025-08-26T19:36:13.7211100Z adding 'torch/include/c10/util/complex_math.h' 2025-08-26T19:36:13.7211780Z adding 'torch/include/c10/util/complex_utils.h' 2025-08-26T19:36:13.7212680Z adding 'torch/include/c10/util/copysign.h' 2025-08-26T19:36:13.7213520Z adding 'torch/include/c10/util/env.h' 2025-08-26T19:36:13.7214330Z adding 'torch/include/c10/util/error.h' 2025-08-26T19:36:13.7224380Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-08-26T19:36:13.7225180Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-08-26T19:36:13.7226410Z adding 'torch/include/c10/util/generic_math.h' 2025-08-26T19:36:13.7229320Z adding 'torch/include/c10/util/hash.h' 2025-08-26T19:36:13.7232030Z adding 'torch/include/c10/util/int128.h' 2025-08-26T19:36:13.7239350Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-08-26T19:36:13.7240570Z adding 'torch/include/c10/util/irange.h' 2025-08-26T19:36:13.7246330Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-08-26T19:36:13.7247470Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-08-26T19:36:13.7249700Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-08-26T19:36:13.7250310Z adding 'torch/include/c10/util/numa.h' 2025-08-26T19:36:13.7261710Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-08-26T19:36:13.7262970Z adding 'torch/include/c10/util/overflows.h' 2025-08-26T19:36:13.7263810Z adding 'torch/include/c10/util/overloaded.h' 2025-08-26T19:36:13.7264560Z adding 'torch/include/c10/util/python_stub.h' 2025-08-26T19:36:13.7265260Z adding 'torch/include/c10/util/qint32.h' 2025-08-26T19:36:13.7265950Z adding 'torch/include/c10/util/qint8.h' 2025-08-26T19:36:13.7266640Z adding 'torch/include/c10/util/quint2x4.h' 2025-08-26T19:36:13.7267320Z adding 'torch/include/c10/util/quint4x2.h' 2025-08-26T19:36:13.7268010Z adding 'torch/include/c10/util/quint8.h' 2025-08-26T19:36:13.7269160Z adding 'torch/include/c10/util/safe_numerics.h' 2025-08-26T19:36:13.7270550Z adding 'torch/include/c10/util/signal_handler.h' 2025-08-26T19:36:13.7275750Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-08-26T19:36:13.7276610Z adding 'torch/include/c10/util/ssize.h' 2025-08-26T19:36:13.7277600Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-08-26T19:36:13.7279660Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-08-26T19:36:13.7280230Z adding 'torch/include/c10/util/strides.h' 2025-08-26T19:36:13.7281070Z adding 'torch/include/c10/util/string_utils.h' 2025-08-26T19:36:13.7284580Z adding 'torch/include/c10/util/string_view.h' 2025-08-26T19:36:13.7289430Z adding 'torch/include/c10/util/strong_type.h' 2025-08-26T19:36:13.7290450Z adding 'torch/include/c10/util/tempfile.h' 2025-08-26T19:36:13.7291210Z adding 'torch/include/c10/util/thread_name.h' 2025-08-26T19:36:13.7296290Z adding 'torch/include/c10/util/typeid.h' 2025-08-26T19:36:13.7297030Z adding 'torch/include/c10/util/win32-headers.h' 2025-08-26T19:36:13.7298240Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-08-26T19:36:13.7300670Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-08-26T19:36:13.7301300Z adding 'torch/include/c10/xpu/XPUException.h' 2025-08-26T19:36:13.7302220Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-08-26T19:36:13.7303120Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-08-26T19:36:13.7305340Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-08-26T19:36:13.7307520Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-08-26T19:36:13.7308560Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-08-26T19:36:13.7310610Z adding 'torch/include/caffe2/core/common.h' 2025-08-26T19:36:13.7311430Z adding 'torch/include/caffe2/core/macros.h' 2025-08-26T19:36:13.7312330Z adding 'torch/include/caffe2/core/timer.h' 2025-08-26T19:36:13.7314840Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-08-26T19:36:13.7316020Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-08-26T19:36:13.7317160Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-08-26T19:36:13.7341830Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-08-26T19:36:13.7342950Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-08-26T19:36:13.7343900Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-08-26T19:36:13.7346730Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-08-26T19:36:13.7347410Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-08-26T19:36:13.7348290Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-08-26T19:36:13.7350490Z adding 'torch/include/caffe2/serialize/versions.h' 2025-08-26T19:36:13.7351820Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-08-26T19:36:13.7352760Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-08-26T19:36:13.7353690Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-08-26T19:36:13.7355190Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-08-26T19:36:13.7356150Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-08-26T19:36:13.7359230Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-08-26T19:36:13.7360030Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-08-26T19:36:13.7361580Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-08-26T19:36:13.7362550Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-08-26T19:36:13.7365000Z adding 'torch/include/fmt/args.h' 2025-08-26T19:36:13.7387720Z adding 'torch/include/fmt/base.h' 2025-08-26T19:36:13.7402740Z adding 'torch/include/fmt/chrono.h' 2025-08-26T19:36:13.7408420Z adding 'torch/include/fmt/color.h' 2025-08-26T19:36:13.7412190Z adding 'torch/include/fmt/compile.h' 2025-08-26T19:36:13.7412840Z adding 'torch/include/fmt/core.h' 2025-08-26T19:36:13.7432260Z adding 'torch/include/fmt/format-inl.h' 2025-08-26T19:36:13.7468030Z adding 'torch/include/fmt/format.h' 2025-08-26T19:36:13.7473170Z adding 'torch/include/fmt/os.h' 2025-08-26T19:36:13.7473340Z adding 'torch/include/fmt/ostream.h' 2025-08-26T19:36:13.7479470Z adding 'torch/include/fmt/printf.h' 2025-08-26T19:36:13.7484760Z adding 'torch/include/fmt/ranges.h' 2025-08-26T19:36:13.7489220Z adding 'torch/include/fmt/std.h' 2025-08-26T19:36:13.7491850Z adding 'torch/include/fmt/xchar.h' 2025-08-26T19:36:13.7493330Z adding 'torch/include/fp16/bitcasts.h' 2025-08-26T19:36:13.7496860Z adding 'torch/include/fp16/fp16.h' 2025-08-26T19:36:13.7498200Z adding 'torch/include/fp16/psimd.h' 2025-08-26T19:36:13.7501210Z adding 'torch/include/google/protobuf/any.h' 2025-08-26T19:36:13.7504180Z adding 'torch/include/google/protobuf/any.pb.h' 2025-08-26T19:36:13.7510720Z adding 'torch/include/google/protobuf/api.pb.h' 2025-08-26T19:36:13.7517710Z adding 'torch/include/google/protobuf/arena.h' 2025-08-26T19:36:13.7521620Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-08-26T19:36:13.7524890Z adding 'torch/include/google/protobuf/arenastring.h' 2025-08-26T19:36:13.7544490Z adding 'torch/include/google/protobuf/descriptor.h' 2025-08-26T19:36:13.7594670Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-08-26T19:36:13.7601360Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-08-26T19:36:13.7603520Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-08-26T19:36:13.7606080Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-08-26T19:36:13.7608250Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-08-26T19:36:13.7622070Z adding 'torch/include/google/protobuf/extension_set.h' 2025-08-26T19:36:13.7624870Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-08-26T19:36:13.7627350Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-08-26T19:36:13.7628680Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-08-26T19:36:13.7630040Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-08-26T19:36:13.7633350Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-08-26T19:36:13.7636490Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-08-26T19:36:13.7638820Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-08-26T19:36:13.7639830Z adding 'torch/include/google/protobuf/has_bits.h' 2025-08-26T19:36:13.7641960Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-08-26T19:36:13.7644460Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-08-26T19:36:13.7655090Z adding 'torch/include/google/protobuf/map.h' 2025-08-26T19:36:13.7657340Z adding 'torch/include/google/protobuf/map_entry.h' 2025-08-26T19:36:13.7662950Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-08-26T19:36:13.7668990Z adding 'torch/include/google/protobuf/map_field.h' 2025-08-26T19:36:13.7671980Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-08-26T19:36:13.7674080Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-08-26T19:36:13.7679210Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-08-26T19:36:13.7693030Z adding 'torch/include/google/protobuf/message.h' 2025-08-26T19:36:13.7699220Z adding 'torch/include/google/protobuf/message_lite.h' 2025-08-26T19:36:13.7700240Z adding 'torch/include/google/protobuf/metadata.h' 2025-08-26T19:36:13.7702800Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-08-26T19:36:13.7709030Z adding 'torch/include/google/protobuf/parse_context.h' 2025-08-26T19:36:13.7710110Z adding 'torch/include/google/protobuf/port.h' 2025-08-26T19:36:13.7714410Z adding 'torch/include/google/protobuf/reflection.h' 2025-08-26T19:36:13.7715860Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-08-26T19:36:13.7736510Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-08-26T19:36:13.7740400Z adding 'torch/include/google/protobuf/service.h' 2025-08-26T19:36:13.7742920Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-08-26T19:36:13.7748880Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-08-26T19:36:13.7755050Z adding 'torch/include/google/protobuf/text_format.h' 2025-08-26T19:36:13.7757410Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-08-26T19:36:13.7768590Z adding 'torch/include/google/protobuf/type.pb.h' 2025-08-26T19:36:13.7772120Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-08-26T19:36:13.7775870Z adding 'torch/include/google/protobuf/wire_format.h' 2025-08-26T19:36:13.7788650Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-08-26T19:36:13.7794550Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-08-26T19:36:13.7797830Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-08-26T19:36:13.7802710Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-08-26T19:36:13.7806350Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-08-26T19:36:13.7812670Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-08-26T19:36:13.7814220Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-08-26T19:36:13.7822820Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-08-26T19:36:13.7825270Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-08-26T19:36:13.7826770Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-08-26T19:36:13.7828170Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-08-26T19:36:13.7829710Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-08-26T19:36:13.7830910Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-08-26T19:36:13.7834300Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-08-26T19:36:13.7835310Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-08-26T19:36:13.7836810Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-08-26T19:36:13.7839810Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-08-26T19:36:13.7841310Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-08-26T19:36:13.7843670Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-08-26T19:36:13.7844830Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-08-26T19:36:13.7861740Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-08-26T19:36:13.7864270Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-08-26T19:36:13.7865710Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-08-26T19:36:13.7869830Z adding 'torch/include/google/protobuf/io/printer.h' 2025-08-26T19:36:13.7870900Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-08-26T19:36:13.7875320Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-08-26T19:36:13.7877960Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-08-26T19:36:13.7880470Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-08-26T19:36:13.7884190Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-08-26T19:36:13.7887300Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-08-26T19:36:13.7889890Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-08-26T19:36:13.7891420Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-08-26T19:36:13.7893880Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-08-26T19:36:13.7895320Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-08-26T19:36:13.7896730Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-08-26T19:36:13.7899140Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-08-26T19:36:13.7900890Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-08-26T19:36:13.7906440Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-08-26T19:36:13.7907970Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-08-26T19:36:13.7909040Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-08-26T19:36:13.7911070Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-08-26T19:36:13.7913560Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-08-26T19:36:13.7914810Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-08-26T19:36:13.7916150Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-08-26T19:36:13.7920640Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-08-26T19:36:13.7928220Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-08-26T19:36:13.7929740Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-08-26T19:36:13.7932080Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-08-26T19:36:13.7934480Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-08-26T19:36:13.7937070Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-08-26T19:36:13.7938720Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-08-26T19:36:13.7949520Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-08-26T19:36:13.7952350Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-08-26T19:36:13.7953330Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-08-26T19:36:13.7954680Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-08-26T19:36:13.7956900Z adding 'torch/include/kai/kai_common.h' 2025-08-26T19:36:13.7959860Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-08-26T19:36:13.7960590Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h' 2025-08-26T19:36:13.7962370Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h' 2025-08-26T19:36:13.7963350Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h' 2025-08-26T19:36:13.7964930Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-08-26T19:36:13.7965900Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h' 2025-08-26T19:36:13.7967660Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-08-26T19:36:13.7968650Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h' 2025-08-26T19:36:13.7970360Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h' 2025-08-26T19:36:13.7971690Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h' 2025-08-26T19:36:13.7972980Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h' 2025-08-26T19:36:13.7974640Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-08-26T19:36:13.7975570Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h' 2025-08-26T19:36:13.7977420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-08-26T19:36:13.7979090Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h' 2025-08-26T19:36:13.7980520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h' 2025-08-26T19:36:13.7981950Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h' 2025-08-26T19:36:13.7982940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h' 2025-08-26T19:36:13.7984800Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-08-26T19:36:13.7986150Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-08-26T19:36:13.7987530Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-08-26T19:36:13.7988870Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-08-26T19:36:13.7990090Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h' 2025-08-26T19:36:13.7991890Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-08-26T19:36:13.7993390Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-08-26T19:36:13.7994400Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h' 2025-08-26T19:36:13.7996130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h' 2025-08-26T19:36:13.7997410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-08-26T19:36:13.7998480Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-08-26T19:36:13.7999950Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h' 2025-08-26T19:36:13.8001330Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h' 2025-08-26T19:36:13.8002690Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h' 2025-08-26T19:36:13.8003640Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h' 2025-08-26T19:36:13.8005160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h' 2025-08-26T19:36:13.8006360Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h' 2025-08-26T19:36:13.8008260Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-08-26T19:36:13.8009690Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h' 2025-08-26T19:36:13.8011200Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-08-26T19:36:13.8012810Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h' 2025-08-26T19:36:13.8014210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h' 2025-08-26T19:36:13.8015640Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-08-26T19:36:13.8016980Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h' 2025-08-26T19:36:13.8018580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h' 2025-08-26T19:36:13.8020040Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-08-26T19:36:13.8021420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h' 2025-08-26T19:36:13.8022760Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h' 2025-08-26T19:36:13.8024050Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h' 2025-08-26T19:36:13.8025810Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h' 2025-08-26T19:36:13.8027200Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h' 2025-08-26T19:36:13.8028570Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-08-26T19:36:13.8030260Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h' 2025-08-26T19:36:13.8031720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h' 2025-08-26T19:36:13.8033210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h' 2025-08-26T19:36:13.8034690Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h' 2025-08-26T19:36:13.8036300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h' 2025-08-26T19:36:13.8037700Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h' 2025-08-26T19:36:13.8039130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h' 2025-08-26T19:36:13.8040490Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h' 2025-08-26T19:36:13.8041700Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h' 2025-08-26T19:36:13.8043420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-08-26T19:36:13.8044780Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-08-26T19:36:13.8046220Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-08-26T19:36:13.8047770Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-08-26T19:36:13.8048770Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h' 2025-08-26T19:36:13.8050550Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-08-26T19:36:13.8052070Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-08-26T19:36:13.8053260Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h' 2025-08-26T19:36:13.8055040Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-08-26T19:36:13.8056490Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h' 2025-08-26T19:36:13.8057920Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-08-26T19:36:13.8059610Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-08-26T19:36:13.8061050Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-08-26T19:36:13.8062500Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h' 2025-08-26T19:36:13.8063870Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-08-26T19:36:13.8065160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h' 2025-08-26T19:36:13.8066720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-08-26T19:36:13.8067740Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-08-26T19:36:13.8069310Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h' 2025-08-26T19:36:13.8070560Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h' 2025-08-26T19:36:13.8072120Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-08-26T19:36:13.8073090Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h' 2025-08-26T19:36:13.8074680Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h' 2025-08-26T19:36:13.8075940Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h' 2025-08-26T19:36:13.8076970Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h' 2025-08-26T19:36:13.8078070Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h' 2025-08-26T19:36:13.8079160Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h' 2025-08-26T19:36:13.8080510Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h' 2025-08-26T19:36:13.8081590Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h' 2025-08-26T19:36:13.8082620Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h' 2025-08-26T19:36:13.8083780Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h' 2025-08-26T19:36:13.8084980Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h' 2025-08-26T19:36:13.8086220Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h' 2025-08-26T19:36:13.8087400Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h' 2025-08-26T19:36:13.8088610Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h' 2025-08-26T19:36:13.8090040Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h' 2025-08-26T19:36:13.8091280Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h' 2025-08-26T19:36:13.8092430Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h' 2025-08-26T19:36:13.8093630Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-08-26T19:36:13.8094930Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-08-26T19:36:13.8096010Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h' 2025-08-26T19:36:13.8097160Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h' 2025-08-26T19:36:13.8098280Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h' 2025-08-26T19:36:13.8099670Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h' 2025-08-26T19:36:13.8100830Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h' 2025-08-26T19:36:13.8101890Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h' 2025-08-26T19:36:13.8103030Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h' 2025-08-26T19:36:13.8104350Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h' 2025-08-26T19:36:13.8106000Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h' 2025-08-26T19:36:13.8107490Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h' 2025-08-26T19:36:13.8108730Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-08-26T19:36:13.8110260Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h' 2025-08-26T19:36:13.8111460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-08-26T19:36:13.8112640Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h' 2025-08-26T19:36:13.8114050Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h' 2025-08-26T19:36:13.8115820Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h' 2025-08-26T19:36:13.8117460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h' 2025-08-26T19:36:13.8118960Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h' 2025-08-26T19:36:13.8120380Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h' 2025-08-26T19:36:13.8122140Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h' 2025-08-26T19:36:13.8123460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h' 2025-08-26T19:36:13.8124620Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h' 2025-08-26T19:36:13.8125800Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h' 2025-08-26T19:36:13.8127930Z adding 'torch/include/kineto/AbstractConfig.h' 2025-08-26T19:36:13.8129090Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-08-26T19:36:13.8129960Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-08-26T19:36:13.8131020Z adding 'torch/include/kineto/ActivityType.h' 2025-08-26T19:36:13.8132100Z adding 'torch/include/kineto/ClientInterface.h' 2025-08-26T19:36:13.8135730Z adding 'torch/include/kineto/Config.h' 2025-08-26T19:36:13.8136930Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-08-26T19:36:13.8138500Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-08-26T19:36:13.8139730Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-08-26T19:36:13.8140810Z adding 'torch/include/kineto/ITraceActivity.h' 2025-08-26T19:36:13.8141610Z adding 'torch/include/kineto/LoggingAPI.h' 2025-08-26T19:36:13.8142540Z adding 'torch/include/kineto/ThreadUtil.h' 2025-08-26T19:36:13.8143620Z adding 'torch/include/kineto/TraceSpan.h' 2025-08-26T19:36:13.8144990Z adding 'torch/include/kineto/libkineto.h' 2025-08-26T19:36:13.8146040Z adding 'torch/include/kineto/output_base.h' 2025-08-26T19:36:13.8146880Z adding 'torch/include/kineto/time_since_epoch.h' 2025-08-26T19:36:13.8152610Z adding 'torch/include/pybind11/attr.h' 2025-08-26T19:36:13.8154770Z adding 'torch/include/pybind11/buffer_info.h' 2025-08-26T19:36:13.8172580Z adding 'torch/include/pybind11/cast.h' 2025-08-26T19:36:13.8175000Z adding 'torch/include/pybind11/chrono.h' 2025-08-26T19:36:13.8175770Z adding 'torch/include/pybind11/common.h' 2025-08-26T19:36:13.8176930Z adding 'torch/include/pybind11/complex.h' 2025-08-26T19:36:13.8177940Z adding 'torch/include/pybind11/critical_section.h' 2025-08-26T19:36:13.8178800Z adding 'torch/include/pybind11/eigen.h' 2025-08-26T19:36:13.8182000Z adding 'torch/include/pybind11/embed.h' 2025-08-26T19:36:13.8183250Z adding 'torch/include/pybind11/eval.h' 2025-08-26T19:36:13.8185210Z adding 'torch/include/pybind11/functional.h' 2025-08-26T19:36:13.8187340Z adding 'torch/include/pybind11/gil.h' 2025-08-26T19:36:13.8188800Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-08-26T19:36:13.8189720Z adding 'torch/include/pybind11/gil_simple.h' 2025-08-26T19:36:13.8192150Z adding 'torch/include/pybind11/iostream.h' 2025-08-26T19:36:13.8193040Z adding 'torch/include/pybind11/native_enum.h' 2025-08-26T19:36:13.8210960Z adding 'torch/include/pybind11/numpy.h' 2025-08-26T19:36:13.8213640Z adding 'torch/include/pybind11/operators.h' 2025-08-26T19:36:13.8214600Z adding 'torch/include/pybind11/options.h' 2025-08-26T19:36:13.8246130Z adding 'torch/include/pybind11/pybind11.h' 2025-08-26T19:36:13.8266280Z adding 'torch/include/pybind11/pytypes.h' 2025-08-26T19:36:13.8271240Z adding 'torch/include/pybind11/stl.h' 2025-08-26T19:36:13.8276910Z adding 'torch/include/pybind11/stl_bind.h' 2025-08-26T19:36:13.8279820Z adding 'torch/include/pybind11/subinterpreter.h' 2025-08-26T19:36:13.8280830Z adding 'torch/include/pybind11/trampoline_self_life_support.h' 2025-08-26T19:36:13.8281940Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-08-26T19:36:13.8284190Z adding 'torch/include/pybind11/typing.h' 2025-08-26T19:36:13.8285080Z adding 'torch/include/pybind11/warnings.h' 2025-08-26T19:36:13.8287210Z adding 'torch/include/pybind11/conduit/pybind11_conduit_v1.h' 2025-08-26T19:36:13.8288300Z adding 'torch/include/pybind11/conduit/pybind11_platform_abi_id.h' 2025-08-26T19:36:13.8289660Z adding 'torch/include/pybind11/conduit/wrap_include_python_h.h' 2025-08-26T19:36:13.8296580Z adding 'torch/include/pybind11/detail/class.h' 2025-08-26T19:36:13.8308580Z adding 'torch/include/pybind11/detail/common.h' 2025-08-26T19:36:13.8309800Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-08-26T19:36:13.8311850Z adding 'torch/include/pybind11/detail/descr.h' 2025-08-26T19:36:13.8312840Z adding 'torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h' 2025-08-26T19:36:13.8314040Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-08-26T19:36:13.8316200Z adding 'torch/include/pybind11/detail/function_record_pyobject.h' 2025-08-26T19:36:13.8321400Z adding 'torch/include/pybind11/detail/init.h' 2025-08-26T19:36:13.8327380Z adding 'torch/include/pybind11/detail/internals.h' 2025-08-26T19:36:13.8329500Z adding 'torch/include/pybind11/detail/native_enum_data.h' 2025-08-26T19:36:13.8330420Z adding 'torch/include/pybind11/detail/pybind11_namespace_macros.h' 2025-08-26T19:36:13.8333430Z adding 'torch/include/pybind11/detail/struct_smart_holder.h' 2025-08-26T19:36:13.8347140Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-08-26T19:36:13.8348630Z adding 'torch/include/pybind11/detail/typeid.h' 2025-08-26T19:36:13.8349640Z adding 'torch/include/pybind11/detail/using_smart_holder.h' 2025-08-26T19:36:13.8351020Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-08-26T19:36:13.8352370Z adding 'torch/include/pybind11/eigen/common.h' 2025-08-26T19:36:13.8359100Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-08-26T19:36:13.8362300Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-08-26T19:36:13.8363670Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-08-26T19:36:13.8368640Z adding 'torch/include/torch/custom_class.h' 2025-08-26T19:36:13.8370760Z adding 'torch/include/torch/custom_class_detail.h' 2025-08-26T19:36:13.8371680Z adding 'torch/include/torch/extension.h' 2025-08-26T19:36:13.8381150Z adding 'torch/include/torch/library.h' 2025-08-26T19:36:13.8381990Z adding 'torch/include/torch/script.h' 2025-08-26T19:36:13.8384430Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-08-26T19:36:13.8385020Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-08-26T19:36:13.8385980Z adding 'torch/include/torch/csrc/Device.h' 2025-08-26T19:36:13.8386850Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-08-26T19:36:13.8387770Z adding 'torch/include/torch/csrc/Dtype.h' 2025-08-26T19:36:13.8388730Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-08-26T19:36:13.8389610Z adding 'torch/include/torch/csrc/Event.h' 2025-08-26T19:36:13.8393040Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-08-26T19:36:13.8393630Z adding 'torch/include/torch/csrc/Export.h' 2025-08-26T19:36:13.8394540Z adding 'torch/include/torch/csrc/Generator.h' 2025-08-26T19:36:13.8395420Z adding 'torch/include/torch/csrc/Layout.h' 2025-08-26T19:36:13.8396290Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-08-26T19:36:13.8397010Z adding 'torch/include/torch/csrc/Module.h' 2025-08-26T19:36:13.8397870Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-08-26T19:36:13.8398700Z adding 'torch/include/torch/csrc/PyInterpreterHooks.h' 2025-08-26T19:36:13.8399530Z adding 'torch/include/torch/csrc/QScheme.h' 2025-08-26T19:36:13.8400340Z adding 'torch/include/torch/csrc/Size.h' 2025-08-26T19:36:13.8401380Z adding 'torch/include/torch/csrc/Storage.h' 2025-08-26T19:36:13.8402120Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-08-26T19:36:13.8402880Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-08-26T19:36:13.8403740Z adding 'torch/include/torch/csrc/Stream.h' 2025-08-26T19:36:13.8404550Z adding 'torch/include/torch/csrc/THConcat.h' 2025-08-26T19:36:13.8405400Z adding 'torch/include/torch/csrc/THP.h' 2025-08-26T19:36:13.8406250Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-08-26T19:36:13.8407010Z adding 'torch/include/torch/csrc/Types.h' 2025-08-26T19:36:13.8407980Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-08-26T19:36:13.8408730Z adding 'torch/include/torch/csrc/itt.h' 2025-08-26T19:36:13.8409560Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-08-26T19:36:13.8410330Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-08-26T19:36:13.8411180Z adding 'torch/include/torch/csrc/python_headers.h' 2025-08-26T19:36:13.8412040Z adding 'torch/include/torch/csrc/serialization.h' 2025-08-26T19:36:13.8414140Z adding 'torch/include/torch/csrc/utils.h' 2025-08-26T19:36:13.8416510Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-08-26T19:36:13.8417220Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-08-26T19:36:13.8418030Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-08-26T19:36:13.8418980Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-08-26T19:36:13.8419740Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-08-26T19:36:13.8421780Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-08-26T19:36:13.8423110Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-08-26T19:36:13.8425170Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-08-26T19:36:13.8426000Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-08-26T19:36:13.8426910Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-08-26T19:36:13.8427860Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-08-26T19:36:13.8429010Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-08-26T19:36:13.8429800Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-08-26T19:36:13.8430580Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-08-26T19:36:13.8433960Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-08-26T19:36:13.8436200Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-08-26T19:36:13.8437360Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-08-26T19:36:13.8438110Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-08-26T19:36:13.8441840Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-08-26T19:36:13.8442540Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-08-26T19:36:13.8443630Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-08-26T19:36:13.8444890Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-08-26T19:36:13.8445800Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-08-26T19:36:13.8446640Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-08-26T19:36:13.8448600Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-08-26T19:36:13.8449450Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-08-26T19:36:13.8450180Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-08-26T19:36:13.8451150Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-08-26T19:36:13.8453080Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-08-26T19:36:13.8453490Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-08-26T19:36:13.8454250Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-08-26T19:36:13.8455240Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-08-26T19:36:13.8458230Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-08-26T19:36:13.8459170Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-08-26T19:36:13.8460440Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-08-26T19:36:13.8462330Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-08-26T19:36:13.8466940Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-08-26T19:36:13.8468170Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-08-26T19:36:13.8469190Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-08-26T19:36:13.8470310Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-08-26T19:36:13.8471440Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-08-26T19:36:13.8472360Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-08-26T19:36:13.8473850Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-08-26T19:36:13.8475140Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-08-26T19:36:13.8477060Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-08-26T19:36:13.8477830Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-08-26T19:36:13.8478760Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-08-26T19:36:13.8479950Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-08-26T19:36:13.8480930Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-08-26T19:36:13.8481870Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-08-26T19:36:13.8482720Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-08-26T19:36:13.8483760Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-08-26T19:36:13.8485030Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-08-26T19:36:13.8485960Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-08-26T19:36:13.8486910Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-08-26T19:36:13.8487840Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-08-26T19:36:13.8488960Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-08-26T19:36:13.8492340Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-08-26T19:36:13.8493240Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-08-26T19:36:13.8494520Z adding 'torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h' 2025-08-26T19:36:13.8496420Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-08-26T19:36:13.8496960Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-08-26T19:36:13.8498320Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-08-26T19:36:13.8503470Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-08-26T19:36:13.8504180Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-08-26T19:36:13.8505010Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-08-26T19:36:13.8506210Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-08-26T19:36:13.8508300Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-08-26T19:36:13.8508820Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-08-26T19:36:13.8513430Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-08-26T19:36:13.8514380Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-08-26T19:36:13.8515690Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-08-26T19:36:13.8516780Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-08-26T19:36:13.8518120Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-08-26T19:36:13.8519980Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-08-26T19:36:13.8520800Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-08-26T19:36:13.8521800Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-08-26T19:36:13.8522660Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-08-26T19:36:13.8526460Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-08-26T19:36:13.8527760Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-08-26T19:36:13.8528760Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-08-26T19:36:13.8529710Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-08-26T19:36:13.8533430Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-08-26T19:36:13.8535500Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-08-26T19:36:13.8536600Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-08-26T19:36:13.8538060Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-08-26T19:36:13.8541530Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-08-26T19:36:13.8542690Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-08-26T19:36:13.8544810Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-08-26T19:36:13.8545820Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-08-26T19:36:13.8548650Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-08-26T19:36:13.8549560Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-08-26T19:36:13.8550890Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-08-26T19:36:13.8552610Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-08-26T19:36:13.8553530Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-08-26T19:36:13.8554950Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-08-26T19:36:13.8556420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-08-26T19:36:13.8560380Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-08-26T19:36:13.8561770Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-08-26T19:36:13.8563950Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-08-26T19:36:13.8564870Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-08-26T19:36:13.8568230Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-08-26T19:36:13.8570520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-08-26T19:36:13.8571910Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-08-26T19:36:13.8573420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-08-26T19:36:13.8575200Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-08-26T19:36:13.8576010Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-08-26T19:36:13.8576960Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-08-26T19:36:13.8580520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-08-26T19:36:13.8581860Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-08-26T19:36:13.8583290Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-08-26T19:36:13.8584760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-08-26T19:36:13.8587000Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-08-26T19:36:13.8589230Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-08-26T19:36:13.8590240Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-08-26T19:36:13.8591670Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-08-26T19:36:13.8593160Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-08-26T19:36:13.8596480Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-08-26T19:36:13.8599430Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-08-26T19:36:13.8600190Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-08-26T19:36:13.8601290Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-08-26T19:36:13.8603380Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-08-26T19:36:13.8604200Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-08-26T19:36:13.8605210Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-08-26T19:36:13.8607310Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-08-26T19:36:13.8608100Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-08-26T19:36:13.8609210Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-08-26T19:36:13.8610280Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-08-26T19:36:13.8613710Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-08-26T19:36:13.8614980Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-08-26T19:36:13.8616460Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-08-26T19:36:13.8617440Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-08-26T19:36:13.8619960Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-08-26T19:36:13.8621270Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-08-26T19:36:13.8622350Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-08-26T19:36:13.8623420Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-08-26T19:36:13.8624440Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-08-26T19:36:13.8625770Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-08-26T19:36:13.8626680Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-08-26T19:36:13.8629900Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-08-26T19:36:13.8631290Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-08-26T19:36:13.8632480Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-08-26T19:36:13.8635550Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-08-26T19:36:13.8636820Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-08-26T19:36:13.8637970Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-08-26T19:36:13.8639110Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-08-26T19:36:13.8640380Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-08-26T19:36:13.8642580Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-08-26T19:36:13.8643450Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-08-26T19:36:13.8646150Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-08-26T19:36:13.8647050Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-08-26T19:36:13.8648300Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-08-26T19:36:13.8649790Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-08-26T19:36:13.8650580Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-08-26T19:36:13.8651560Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-08-26T19:36:13.8652540Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-08-26T19:36:13.8653910Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-08-26T19:36:13.8655020Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-08-26T19:36:13.8655810Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-08-26T19:36:13.8661370Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-08-26T19:36:13.8662030Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-08-26T19:36:13.8665290Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-08-26T19:36:13.8666100Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-08-26T19:36:13.8668030Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-08-26T19:36:13.8668800Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-08-26T19:36:13.8670010Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-08-26T19:36:13.8675650Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-08-26T19:36:13.8676510Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-08-26T19:36:13.8679440Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-08-26T19:36:13.8682000Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-08-26T19:36:13.8689420Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-08-26T19:36:13.8690600Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-08-26T19:36:13.8691430Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-08-26T19:36:13.8694290Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-08-26T19:36:13.8695190Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-08-26T19:36:13.8696410Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-08-26T19:36:13.8697530Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-08-26T19:36:13.8698280Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-08-26T19:36:13.8700630Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-08-26T19:36:13.8703290Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-08-26T19:36:13.8703850Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-08-26T19:36:13.8704850Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-08-26T19:36:13.8705700Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-08-26T19:36:13.8707150Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-08-26T19:36:13.8708120Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-08-26T19:36:13.8708960Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-08-26T19:36:13.8709890Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-08-26T19:36:13.8711810Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-08-26T19:36:13.8712540Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-08-26T19:36:13.8713430Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-08-26T19:36:13.8714210Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-08-26T19:36:13.8714980Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-08-26T19:36:13.8715720Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-08-26T19:36:13.8716670Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-08-26T19:36:13.8717470Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-08-26T19:36:13.8718190Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-08-26T19:36:13.8719070Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-08-26T19:36:13.8720350Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-08-26T19:36:13.8721580Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-08-26T19:36:13.8722490Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-08-26T19:36:13.8724160Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-08-26T19:36:13.8725040Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-08-26T19:36:13.8725810Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-08-26T19:36:13.8735320Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-08-26T19:36:13.8736210Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-08-26T19:36:13.8740400Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-08-26T19:36:13.8741370Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-08-26T19:36:13.8742360Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-08-26T19:36:13.8743180Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-08-26T19:36:13.8745670Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-08-26T19:36:13.8746640Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-08-26T19:36:13.8780250Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-08-26T19:36:13.8783540Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-08-26T19:36:13.8786620Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-08-26T19:36:13.8787450Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-08-26T19:36:13.8788580Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-08-26T19:36:13.8793090Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-08-26T19:36:13.8794180Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-08-26T19:36:13.8795430Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-08-26T19:36:13.8796380Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-08-26T19:36:13.8797360Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-08-26T19:36:13.8798210Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-08-26T19:36:13.8799460Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-08-26T19:36:13.8800480Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-08-26T19:36:13.8802790Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-08-26T19:36:13.8803370Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-08-26T19:36:13.8804160Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-08-26T19:36:13.8805060Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-08-26T19:36:13.8805890Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-08-26T19:36:13.8806660Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-08-26T19:36:13.8807590Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-08-26T19:36:13.8808400Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-08-26T19:36:13.8809320Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-08-26T19:36:13.8811220Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-08-26T19:36:13.8811640Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-08-26T19:36:13.8812460Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-08-26T19:36:13.8813210Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-08-26T19:36:13.8815190Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-08-26T19:36:13.8815790Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-08-26T19:36:13.8816910Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-08-26T19:36:13.8819410Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-08-26T19:36:13.8821140Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-08-26T19:36:13.8823650Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-08-26T19:36:13.8824690Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-08-26T19:36:13.8825670Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-08-26T19:36:13.8826830Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-08-26T19:36:13.8827780Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-08-26T19:36:13.8828650Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-08-26T19:36:13.8829610Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-08-26T19:36:13.8830490Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-08-26T19:36:13.8831720Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-08-26T19:36:13.8832840Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-08-26T19:36:13.8833950Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-08-26T19:36:13.8834860Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-08-26T19:36:13.8835700Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-08-26T19:36:13.8839250Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-08-26T19:36:13.8840010Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-08-26T19:36:13.8841990Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-08-26T19:36:13.8842570Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-08-26T19:36:13.8845280Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-08-26T19:36:13.8849020Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-08-26T19:36:13.8849830Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-08-26T19:36:13.8850780Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-08-26T19:36:13.8851600Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-08-26T19:36:13.8852640Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-08-26T19:36:13.8856050Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-08-26T19:36:13.8856690Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-08-26T19:36:13.8858630Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-08-26T19:36:13.8859390Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-08-26T19:36:13.8865040Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-08-26T19:36:13.8868640Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-08-26T19:36:13.8872680Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-08-26T19:36:13.8874690Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-08-26T19:36:13.8887530Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-08-26T19:36:13.8890130Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-08-26T19:36:13.8891400Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-08-26T19:36:13.8893770Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-08-26T19:36:13.8894660Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-08-26T19:36:13.8896040Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-08-26T19:36:13.8897970Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-08-26T19:36:13.8898740Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-08-26T19:36:13.8901330Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-08-26T19:36:13.8902790Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-08-26T19:36:13.8904030Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-08-26T19:36:13.8906030Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-08-26T19:36:13.8906730Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-08-26T19:36:13.8911360Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-08-26T19:36:13.8912070Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-08-26T19:36:13.8914080Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-08-26T19:36:13.8914600Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-08-26T19:36:13.8916210Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-08-26T19:36:13.8916970Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-08-26T19:36:13.8918020Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-08-26T19:36:13.8918960Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-08-26T19:36:13.8919980Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-08-26T19:36:13.8922150Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-08-26T19:36:13.8922850Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-08-26T19:36:13.8923800Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-08-26T19:36:13.8930240Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-08-26T19:36:13.8931270Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-08-26T19:36:13.8932370Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-08-26T19:36:13.8933460Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-08-26T19:36:13.8934390Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-08-26T19:36:13.8935870Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-08-26T19:36:13.8936870Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-08-26T19:36:13.8938150Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-08-26T19:36:13.8939020Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-08-26T19:36:13.8940120Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-08-26T19:36:13.8941060Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-08-26T19:36:13.8941830Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-08-26T19:36:13.8942940Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-08-26T19:36:13.8943760Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-08-26T19:36:13.8944730Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-08-26T19:36:13.8947710Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-08-26T19:36:13.8950640Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-08-26T19:36:13.8950840Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-08-26T19:36:13.8951030Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-08-26T19:36:13.8952130Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-08-26T19:36:13.8954210Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-08-26T19:36:13.8955070Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-08-26T19:36:13.8956540Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-08-26T19:36:13.8958690Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-08-26T19:36:13.8959670Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-08-26T19:36:13.8960590Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-08-26T19:36:13.8961620Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-08-26T19:36:13.8962550Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-08-26T19:36:13.8963380Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-08-26T19:36:13.8965340Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-08-26T19:36:13.8965930Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-08-26T19:36:13.8966930Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-08-26T19:36:13.8968100Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-08-26T19:36:13.8968860Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-08-26T19:36:13.8972200Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-08-26T19:36:13.8973050Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-08-26T19:36:13.8977490Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-08-26T19:36:13.8982100Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-08-26T19:36:13.8984180Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-08-26T19:36:13.8985090Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-08-26T19:36:13.8986160Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-08-26T19:36:13.8987070Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-08-26T19:36:13.8991510Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-08-26T19:36:13.8992870Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-08-26T19:36:13.8993940Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-08-26T19:36:13.8994950Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-08-26T19:36:13.8996090Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-08-26T19:36:13.8997100Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-08-26T19:36:13.8998410Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-08-26T19:36:13.8999910Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-08-26T19:36:13.9001420Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-08-26T19:36:13.9002890Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-08-26T19:36:13.9004630Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-08-26T19:36:13.9005310Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-08-26T19:36:13.9007170Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-08-26T19:36:13.9017270Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-08-26T19:36:13.9018020Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-08-26T19:36:13.9019030Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-08-26T19:36:13.9020080Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-08-26T19:36:13.9021360Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-08-26T19:36:13.9022300Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-08-26T19:36:13.9023240Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-08-26T19:36:13.9025310Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-08-26T19:36:13.9026300Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-08-26T19:36:13.9027460Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-08-26T19:36:13.9028410Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-08-26T19:36:13.9029220Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-08-26T19:36:13.9030030Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-08-26T19:36:13.9031150Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-08-26T19:36:13.9032750Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-08-26T19:36:13.9033380Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-08-26T19:36:13.9035040Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-08-26T19:36:13.9035890Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-08-26T19:36:13.9036910Z adding 'torch/include/torch/csrc/fx/node.h' 2025-08-26T19:36:13.9038540Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-08-26T19:36:13.9045910Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-08-26T19:36:13.9046900Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-08-26T19:36:13.9047930Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-08-26T19:36:13.9050290Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-08-26T19:36:13.9052390Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-08-26T19:36:13.9053120Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-08-26T19:36:13.9054000Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-08-26T19:36:13.9054800Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-08-26T19:36:13.9055600Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-08-26T19:36:13.9056750Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-08-26T19:36:13.9057490Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-08-26T19:36:13.9058890Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-08-26T19:36:13.9059640Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-08-26T19:36:13.9061670Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-08-26T19:36:13.9062310Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-08-26T19:36:13.9063340Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-08-26T19:36:13.9064430Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-08-26T19:36:13.9065450Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-08-26T19:36:13.9066230Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-08-26T19:36:13.9068630Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-08-26T19:36:13.9069230Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-08-26T19:36:13.9070420Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-08-26T19:36:13.9072680Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-08-26T19:36:13.9073970Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-08-26T19:36:13.9075070Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-08-26T19:36:13.9079780Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-08-26T19:36:13.9085130Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-08-26T19:36:13.9086100Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-08-26T19:36:13.9088160Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-08-26T19:36:13.9089150Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-08-26T19:36:13.9091770Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-08-26T19:36:13.9092660Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-08-26T19:36:13.9093640Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-08-26T19:36:13.9094810Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-08-26T19:36:13.9096260Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-08-26T19:36:13.9097200Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-08-26T19:36:13.9098160Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-08-26T19:36:13.9100090Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-08-26T19:36:13.9101280Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-08-26T19:36:13.9105570Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-08-26T19:36:13.9106810Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-08-26T19:36:13.9108210Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-08-26T19:36:13.9109120Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-08-26T19:36:13.9110240Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-08-26T19:36:13.9111510Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h' 2025-08-26T19:36:13.9115110Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-08-26T19:36:13.9118970Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-08-26T19:36:13.9121950Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-08-26T19:36:13.9124000Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-08-26T19:36:13.9124710Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-08-26T19:36:13.9125850Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-08-26T19:36:13.9126650Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-08-26T19:36:13.9127410Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-08-26T19:36:13.9128150Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-08-26T19:36:13.9128980Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-08-26T19:36:13.9130100Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-08-26T19:36:13.9130850Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-08-26T19:36:13.9131590Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-08-26T19:36:13.9132380Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-08-26T19:36:13.9133340Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-08-26T19:36:13.9135380Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-08-26T19:36:13.9136140Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-08-26T19:36:13.9137070Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-08-26T19:36:13.9140720Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-08-26T19:36:13.9142450Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-08-26T19:36:13.9143420Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-08-26T19:36:13.9149020Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-08-26T19:36:13.9151070Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-08-26T19:36:13.9152400Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-08-26T19:36:13.9154690Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-08-26T19:36:13.9155650Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-08-26T19:36:13.9156620Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-08-26T19:36:13.9157780Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-08-26T19:36:13.9158590Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-08-26T19:36:13.9159610Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-08-26T19:36:13.9165330Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-08-26T19:36:13.9165630Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-08-26T19:36:13.9165770Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-08-26T19:36:13.9166680Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-08-26T19:36:13.9166860Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-08-26T19:36:13.9167120Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-08-26T19:36:13.9167300Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-08-26T19:36:13.9167470Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-08-26T19:36:13.9168780Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-08-26T19:36:13.9170150Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-08-26T19:36:13.9171340Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-08-26T19:36:13.9172710Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-08-26T19:36:13.9174530Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-08-26T19:36:13.9175520Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-08-26T19:36:13.9176410Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-08-26T19:36:13.9177480Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-08-26T19:36:13.9178340Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-08-26T19:36:13.9179130Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-08-26T19:36:13.9180360Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-08-26T19:36:13.9181440Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-08-26T19:36:13.9182380Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-08-26T19:36:13.9183980Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-08-26T19:36:13.9184910Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-08-26T19:36:13.9186130Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-08-26T19:36:13.9187000Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-08-26T19:36:13.9188220Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-08-26T19:36:13.9189370Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-08-26T19:36:13.9190680Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-08-26T19:36:13.9191900Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-08-26T19:36:13.9194600Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-08-26T19:36:13.9196960Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-08-26T19:36:13.9197560Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-08-26T19:36:13.9198410Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-08-26T19:36:13.9199410Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-08-26T19:36:13.9200600Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-08-26T19:36:13.9201570Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-08-26T19:36:13.9202590Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-08-26T19:36:13.9203770Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-08-26T19:36:13.9204650Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-08-26T19:36:13.9206030Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-08-26T19:36:13.9206930Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-08-26T19:36:13.9208890Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-08-26T19:36:13.9209920Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-08-26T19:36:13.9210820Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-08-26T19:36:13.9213450Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-08-26T19:36:13.9214020Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-08-26T19:36:13.9214800Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-08-26T19:36:13.9215990Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-08-26T19:36:13.9216780Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-08-26T19:36:13.9217710Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-08-26T19:36:13.9218510Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-08-26T19:36:13.9219350Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-08-26T19:36:13.9224140Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-08-26T19:36:13.9224960Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-08-26T19:36:13.9225850Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-08-26T19:36:13.9227100Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-08-26T19:36:13.9228000Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-08-26T19:36:13.9228840Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-08-26T19:36:13.9229850Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-08-26T19:36:13.9230990Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-08-26T19:36:13.9231980Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-08-26T19:36:13.9232990Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-08-26T19:36:13.9236990Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-08-26T19:36:13.9237800Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-08-26T19:36:13.9238620Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-08-26T19:36:13.9244310Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-08-26T19:36:13.9246980Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-08-26T19:36:13.9249070Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-08-26T19:36:13.9255500Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-08-26T19:36:13.9256410Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-08-26T19:36:13.9260510Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-08-26T19:36:13.9261750Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-08-26T19:36:13.9262860Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-08-26T19:36:13.9264800Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-08-26T19:36:13.9265420Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-08-26T19:36:13.9277980Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-08-26T19:36:13.9279720Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-08-26T19:36:13.9280620Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-08-26T19:36:13.9281810Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-08-26T19:36:13.9282650Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-08-26T19:36:13.9284750Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-08-26T19:36:13.9285990Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-08-26T19:36:13.9286820Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-08-26T19:36:13.9288400Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-08-26T19:36:13.9289300Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-08-26T19:36:13.9291450Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-08-26T19:36:13.9292690Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-08-26T19:36:13.9293580Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-08-26T19:36:13.9294830Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-08-26T19:36:13.9296220Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-08-26T19:36:13.9297160Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-08-26T19:36:13.9298020Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-08-26T19:36:13.9298850Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-08-26T19:36:13.9299800Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-08-26T19:36:13.9301740Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-08-26T19:36:13.9302780Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-08-26T19:36:13.9303660Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-08-26T19:36:13.9304610Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-08-26T19:36:13.9305480Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-08-26T19:36:13.9307060Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-08-26T19:36:13.9307830Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-08-26T19:36:13.9308830Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-08-26T19:36:13.9309900Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-08-26T19:36:13.9310850Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-08-26T19:36:13.9311790Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-08-26T19:36:13.9313140Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-08-26T19:36:13.9314100Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-08-26T19:36:13.9315310Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-08-26T19:36:13.9316270Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-08-26T19:36:13.9317530Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-08-26T19:36:13.9318470Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-08-26T19:36:13.9319420Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-08-26T19:36:13.9321430Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-08-26T19:36:13.9322030Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-08-26T19:36:13.9322850Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-08-26T19:36:13.9323760Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-08-26T19:36:13.9324880Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-08-26T19:36:13.9326860Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-08-26T19:36:13.9327580Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-08-26T19:36:13.9328840Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-08-26T19:36:13.9329850Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-08-26T19:36:13.9330840Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-08-26T19:36:13.9332770Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-08-26T19:36:13.9333680Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-08-26T19:36:13.9334570Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-08-26T19:36:13.9335610Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-08-26T19:36:13.9336530Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-08-26T19:36:13.9338510Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-08-26T19:36:13.9339030Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-08-26T19:36:13.9339880Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-08-26T19:36:13.9340870Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-08-26T19:36:13.9341650Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-08-26T19:36:13.9342480Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-08-26T19:36:13.9343370Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-08-26T19:36:13.9344130Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-08-26T19:36:13.9344940Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-08-26T19:36:13.9345850Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-08-26T19:36:13.9346730Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-08-26T19:36:13.9347510Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-08-26T19:36:13.9348300Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-08-26T19:36:13.9349310Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-08-26T19:36:13.9350250Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-08-26T19:36:13.9351010Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-08-26T19:36:13.9351990Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-08-26T19:36:13.9352700Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-08-26T19:36:13.9353570Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-08-26T19:36:13.9354410Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-08-26T19:36:13.9355210Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-08-26T19:36:13.9356120Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-08-26T19:36:13.9357230Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-08-26T19:36:13.9358140Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-08-26T19:36:13.9359000Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-08-26T19:36:13.9359930Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-08-26T19:36:13.9360800Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-08-26T19:36:13.9361630Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-08-26T19:36:13.9362460Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-08-26T19:36:13.9363300Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-08-26T19:36:13.9364150Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-08-26T19:36:13.9364960Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-08-26T19:36:13.9365770Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-08-26T19:36:13.9366600Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-08-26T19:36:13.9367440Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-08-26T19:36:13.9368430Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-08-26T19:36:13.9369520Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-08-26T19:36:13.9373770Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-08-26T19:36:13.9374420Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-08-26T19:36:13.9375240Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-08-26T19:36:13.9376110Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-08-26T19:36:13.9376900Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-08-26T19:36:13.9377700Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-08-26T19:36:13.9378520Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-08-26T19:36:13.9379340Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-08-26T19:36:13.9380200Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-08-26T19:36:13.9381030Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-08-26T19:36:13.9381940Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-08-26T19:36:13.9382800Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-08-26T19:36:13.9383580Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-08-26T19:36:13.9384530Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-08-26T19:36:13.9385390Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-08-26T19:36:13.9386220Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-08-26T19:36:13.9387060Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-08-26T19:36:13.9387940Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-08-26T19:36:13.9388760Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-08-26T19:36:13.9389760Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-08-26T19:36:13.9390570Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-08-26T19:36:13.9392620Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-08-26T19:36:13.9393170Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-08-26T19:36:13.9394040Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-08-26T19:36:13.9394930Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-08-26T19:36:13.9396100Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-08-26T19:36:13.9396860Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-08-26T19:36:13.9397630Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-08-26T19:36:13.9398430Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-08-26T19:36:13.9399260Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-08-26T19:36:13.9400180Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-08-26T19:36:13.9400930Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-08-26T19:36:13.9401740Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-08-26T19:36:13.9402930Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-08-26T19:36:13.9403770Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-08-26T19:36:13.9404590Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-08-26T19:36:13.9405370Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-08-26T19:36:13.9406480Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-08-26T19:36:13.9407410Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-08-26T19:36:13.9408290Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-08-26T19:36:13.9409730Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-08-26T19:36:13.9410860Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-08-26T19:36:13.9411840Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-08-26T19:36:13.9413070Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-08-26T19:36:13.9414210Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-08-26T19:36:13.9415240Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-08-26T19:36:13.9416290Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-08-26T19:36:13.9417130Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-08-26T19:36:13.9417970Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-08-26T19:36:13.9418890Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-08-26T19:36:13.9420220Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-08-26T19:36:13.9421400Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-08-26T19:36:13.9422250Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-08-26T19:36:13.9423860Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-08-26T19:36:13.9424580Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-08-26T19:36:13.9425370Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-08-26T19:36:13.9426140Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-08-26T19:36:13.9426980Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-08-26T19:36:13.9428140Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-08-26T19:36:13.9428920Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-08-26T19:36:13.9429940Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-08-26T19:36:13.9430840Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-08-26T19:36:13.9431660Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-08-26T19:36:13.9432500Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-08-26T19:36:13.9433270Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-08-26T19:36:13.9434230Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-08-26T19:36:13.9434980Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-08-26T19:36:13.9435820Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-08-26T19:36:13.9436570Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-08-26T19:36:13.9438490Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-08-26T19:36:13.9438910Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-08-26T19:36:13.9440070Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-08-26T19:36:13.9440840Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-08-26T19:36:13.9442060Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-08-26T19:36:13.9443120Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-08-26T19:36:13.9444250Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-08-26T19:36:13.9445330Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-08-26T19:36:13.9446210Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-08-26T19:36:13.9448300Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-08-26T19:36:13.9449110Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-08-26T19:36:13.9450120Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-08-26T19:36:13.9456280Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-08-26T19:36:13.9457120Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-08-26T19:36:13.9457990Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-08-26T19:36:13.9459150Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-08-26T19:36:13.9461260Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-08-26T19:36:13.9461930Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-08-26T19:36:13.9462740Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-08-26T19:36:13.9463920Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-08-26T19:36:13.9465010Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-08-26T19:36:13.9466050Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-08-26T19:36:13.9468180Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-08-26T19:36:13.9477730Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-08-26T19:36:13.9479120Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-08-26T19:36:13.9480060Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-08-26T19:36:13.9481380Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-08-26T19:36:13.9482410Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-08-26T19:36:13.9484010Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-08-26T19:36:13.9485750Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-08-26T19:36:13.9488080Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-08-26T19:36:13.9488740Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-08-26T19:36:13.9489590Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-08-26T19:36:13.9490350Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-08-26T19:36:13.9491240Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-08-26T19:36:13.9491990Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-08-26T19:36:13.9496450Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-08-26T19:36:13.9497710Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-08-26T19:36:13.9499000Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-08-26T19:36:13.9500060Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-08-26T19:36:13.9501050Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-08-26T19:36:13.9501840Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-08-26T19:36:13.9502750Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-08-26T19:36:13.9504680Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-08-26T19:36:13.9505750Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-08-26T19:36:13.9507670Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-08-26T19:36:13.9509160Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-08-26T19:36:13.9511080Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-08-26T19:36:13.9511640Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-08-26T19:36:13.9512420Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-08-26T19:36:13.9513620Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-08-26T19:36:13.9516350Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-08-26T19:36:13.9516880Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-08-26T19:36:13.9517660Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-08-26T19:36:13.9519040Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-08-26T19:36:13.9521470Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-08-26T19:36:13.9526910Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-08-26T19:36:13.9527980Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-08-26T19:36:13.9528920Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-08-26T19:36:13.9529740Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-08-26T19:36:13.9530670Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-08-26T19:36:13.9531560Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-08-26T19:36:13.9532390Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-08-26T19:36:13.9533740Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-08-26T19:36:13.9534570Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-08-26T19:36:13.9535460Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-08-26T19:36:13.9536300Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-08-26T19:36:13.9538520Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-08-26T19:36:13.9545140Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-08-26T19:36:13.9545980Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-08-26T19:36:13.9546950Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-08-26T19:36:13.9549270Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-08-26T19:36:13.9549860Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-08-26T19:36:13.9557920Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-08-26T19:36:13.9558730Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-08-26T19:36:13.9561690Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-08-26T19:36:13.9562990Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-08-26T19:36:13.9564570Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-08-26T19:36:13.9566360Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-08-26T19:36:13.9567140Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-08-26T19:36:13.9569450Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-08-26T19:36:13.9572310Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-08-26T19:36:13.9574900Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-08-26T19:36:13.9575670Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-08-26T19:36:13.9576930Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-08-26T19:36:13.9577740Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-08-26T19:36:13.9578950Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-08-26T19:36:13.9579870Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-08-26T19:36:13.9580680Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-08-26T19:36:13.9581530Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-08-26T19:36:13.9582410Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-08-26T19:36:13.9583630Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-08-26T19:36:13.9595940Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-08-26T19:36:13.9596990Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-08-26T19:36:13.9598930Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-08-26T19:36:13.9600370Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-08-26T19:36:13.9602710Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-08-26T19:36:13.9603450Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-08-26T19:36:13.9604520Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-08-26T19:36:13.9605450Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-08-26T19:36:13.9606470Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-08-26T19:36:13.9607370Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-08-26T19:36:13.9609700Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-08-26T19:36:13.9612160Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-08-26T19:36:13.9613410Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-08-26T19:36:13.9614490Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-08-26T19:36:13.9616400Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-08-26T19:36:13.9618440Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-08-26T19:36:13.9619180Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-08-26T19:36:13.9620040Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-08-26T19:36:13.9622290Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-08-26T19:36:13.9623190Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-08-26T19:36:13.9625570Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-08-26T19:36:13.9626380Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-08-26T19:36:13.9629420Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-08-26T19:36:13.9630470Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-08-26T19:36:13.9631340Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-08-26T19:36:13.9632540Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-08-26T19:36:13.9633720Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-08-26T19:36:13.9635310Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-08-26T19:36:13.9637030Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-08-26T19:36:13.9638780Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-08-26T19:36:13.9639530Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-08-26T19:36:13.9643830Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-08-26T19:36:13.9644670Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-08-26T19:36:13.9645690Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-08-26T19:36:13.9646910Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-08-26T19:36:13.9650180Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-08-26T19:36:13.9650900Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-08-26T19:36:13.9651830Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-08-26T19:36:13.9655110Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-08-26T19:36:13.9656250Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-08-26T19:36:13.9657310Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-08-26T19:36:13.9662530Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-08-26T19:36:13.9663220Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-08-26T19:36:13.9664130Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-08-26T19:36:13.9667450Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-08-26T19:36:13.9669510Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-08-26T19:36:13.9672440Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-08-26T19:36:13.9676870Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-08-26T19:36:13.9679000Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-08-26T19:36:13.9679610Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-08-26T19:36:13.9681170Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-08-26T19:36:13.9682010Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-08-26T19:36:13.9683030Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-08-26T19:36:13.9684440Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-08-26T19:36:13.9685290Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-08-26T19:36:13.9686350Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-08-26T19:36:13.9687180Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-08-26T19:36:13.9687970Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-08-26T19:36:13.9688940Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-08-26T19:36:13.9690040Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-08-26T19:36:13.9690890Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-08-26T19:36:13.9691700Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-08-26T19:36:13.9692720Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-08-26T19:36:13.9693840Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-08-26T19:36:13.9694710Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-08-26T19:36:13.9696610Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-08-26T19:36:13.9697540Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-08-26T19:36:13.9699470Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-08-26T19:36:13.9700320Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-08-26T19:36:13.9794550Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-08-26T19:36:13.9795700Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-08-26T19:36:13.9796870Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-08-26T19:36:13.9798020Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-08-26T19:36:13.9800230Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-08-26T19:36:13.9801230Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-08-26T19:36:13.9803630Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-08-26T19:36:13.9804830Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-08-26T19:36:13.9805820Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-08-26T19:36:13.9806780Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-08-26T19:36:13.9807770Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-08-26T19:36:13.9811270Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-08-26T19:36:13.9813410Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-08-26T19:36:13.9814290Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-08-26T19:36:13.9815260Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-08-26T19:36:13.9816340Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-08-26T19:36:13.9818760Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-08-26T19:36:13.9821350Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-08-26T19:36:13.9822170Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-08-26T19:36:13.9823380Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-08-26T19:36:13.9824240Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-08-26T19:36:13.9825390Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-08-26T19:36:13.9826340Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-08-26T19:36:13.9827540Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-08-26T19:36:13.9829200Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-08-26T19:36:13.9830160Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-08-26T19:36:13.9831020Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-08-26T19:36:13.9853790Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-08-26T19:36:13.9858020Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-08-26T19:36:13.9859170Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-08-26T19:36:13.9860260Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-08-26T19:36:13.9861140Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-08-26T19:36:13.9862290Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-08-26T19:36:13.9863440Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-08-26T19:36:13.9864530Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-08-26T19:36:13.9865400Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-08-26T19:36:13.9866300Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-08-26T19:36:13.9867230Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-08-26T19:36:13.9868160Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-08-26T19:36:13.9869620Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-08-26T19:36:13.9870890Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-08-26T19:36:13.9871770Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-08-26T19:36:13.9873070Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-08-26T19:36:13.9874010Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-08-26T19:36:13.9875380Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-08-26T19:36:13.9877900Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-08-26T19:36:13.9878910Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-08-26T19:36:13.9879750Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-08-26T19:36:13.9880900Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-08-26T19:36:13.9882100Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-08-26T19:36:13.9883330Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-08-26T19:36:13.9884420Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-08-26T19:36:13.9885700Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-08-26T19:36:13.9886470Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-08-26T19:36:13.9887360Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-08-26T19:36:13.9888590Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-08-26T19:36:13.9893120Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-08-26T19:36:13.9894140Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-08-26T19:36:13.9896190Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-08-26T19:36:13.9897550Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-08-26T19:36:13.9898670Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-08-26T19:36:13.9899680Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-08-26T19:36:13.9901010Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-08-26T19:36:13.9902450Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-08-26T19:36:13.9903220Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-08-26T19:36:13.9905290Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-08-26T19:36:13.9907670Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-08-26T19:36:13.9908580Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-08-26T19:36:13.9909440Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-08-26T19:36:13.9910660Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-08-26T19:36:13.9911500Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-08-26T19:36:13.9912470Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-08-26T19:36:13.9913670Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-08-26T19:36:13.9914470Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-08-26T19:36:13.9915280Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-08-26T19:36:13.9916300Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-08-26T19:36:13.9917480Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-08-26T19:36:13.9918850Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-08-26T19:36:13.9919950Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-08-26T19:36:13.9922260Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-08-26T19:36:13.9922960Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-08-26T19:36:13.9924610Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-08-26T19:36:13.9925650Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-08-26T19:36:13.9926940Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-08-26T19:36:13.9929770Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-08-26T19:36:13.9930890Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-08-26T19:36:13.9933530Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-08-26T19:36:13.9934760Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-08-26T19:36:13.9935870Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-08-26T19:36:13.9937220Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-08-26T19:36:13.9938160Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-08-26T19:36:13.9939110Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-08-26T19:36:13.9940220Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-08-26T19:36:13.9941600Z adding 'torch/include/torch/csrc/stable/accelerator.h' 2025-08-26T19:36:13.9943750Z adding 'torch/include/torch/csrc/stable/library.h' 2025-08-26T19:36:13.9944800Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-08-26T19:36:13.9947750Z adding 'torch/include/torch/csrc/stable/stableivalue_conversions.h' 2025-08-26T19:36:13.9948230Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-08-26T19:36:13.9949120Z adding 'torch/include/torch/csrc/stable/tensor_inl.h' 2025-08-26T19:36:13.9951050Z adding 'torch/include/torch/csrc/stable/tensor_struct.h' 2025-08-26T19:36:13.9952000Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-08-26T19:36:13.9953860Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-08-26T19:36:13.9954400Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-08-26T19:36:13.9955160Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-08-26T19:36:13.9956300Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-08-26T19:36:13.9957330Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-08-26T19:36:13.9970900Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-08-26T19:36:13.9972000Z adding 'torch/include/torch/csrc/utils/init.h' 2025-08-26T19:36:13.9972860Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-08-26T19:36:13.9973640Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-08-26T19:36:13.9974520Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-08-26T19:36:13.9975620Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-08-26T19:36:13.9976420Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-08-26T19:36:13.9979200Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-08-26T19:36:13.9979850Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-08-26T19:36:13.9980650Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-08-26T19:36:13.9988360Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-08-26T19:36:13.9989240Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-08-26T19:36:13.9990120Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-08-26T19:36:13.9992050Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-08-26T19:36:13.9992800Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-08-26T19:36:13.9994380Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-08-26T19:36:13.9995680Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-08-26T19:36:13.9996420Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-08-26T19:36:13.9998400Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-08-26T19:36:13.9999080Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-08-26T19:36:13.9999920Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-08-26T19:36:14.0007250Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-08-26T19:36:14.0008420Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-08-26T19:36:14.0009410Z adding 'torch/include/torch/csrc/utils/six.h' 2025-08-26T19:36:14.0010170Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-08-26T19:36:14.0011040Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-08-26T19:36:14.0011780Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-08-26T19:36:14.0012950Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-08-26T19:36:14.0013690Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-08-26T19:36:14.0014430Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-08-26T19:36:14.0015270Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-08-26T19:36:14.0016420Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-08-26T19:36:14.0017320Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-08-26T19:36:14.0018100Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-08-26T19:36:14.0018960Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-08-26T19:36:14.0021060Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-08-26T19:36:14.0023110Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-08-26T19:36:14.0023740Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-08-26T19:36:14.0024920Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-08-26T19:36:14.0025700Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-08-26T19:36:14.0026790Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-08-26T19:36:14.0027590Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-08-26T19:36:14.0028430Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-08-26T19:36:14.0030630Z adding 'torch/include/torch/headeronly/core/ScalarType.h' 2025-08-26T19:36:14.0031850Z adding 'torch/include/torch/headeronly/cpu/vec/intrinsics.h' 2025-08-26T19:36:14.0032830Z adding 'torch/include/torch/headeronly/cpu/vec/vec_half.h' 2025-08-26T19:36:14.0035000Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h' 2025-08-26T19:36:14.0035650Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h' 2025-08-26T19:36:14.0037800Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-08-26T19:36:14.0041940Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-08-26T19:36:14.0042640Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-08-26T19:36:14.0045510Z adding 'torch/include/torch/headeronly/util/BFloat16.h' 2025-08-26T19:36:14.0046640Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-08-26T19:36:14.0047610Z adding 'torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h' 2025-08-26T19:36:14.0051770Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fn.h' 2025-08-26T19:36:14.0054540Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fnuz.h' 2025-08-26T19:36:14.0057250Z adding 'torch/include/torch/headeronly/util/Float8_e5m2.h' 2025-08-26T19:36:14.0059750Z adding 'torch/include/torch/headeronly/util/Float8_e5m2fnuz.h' 2025-08-26T19:36:14.0066880Z adding 'torch/include/torch/headeronly/util/Float8_e8m0fnu.h' 2025-08-26T19:36:14.0067150Z adding 'torch/include/torch/headeronly/util/Float8_fnuz_cvt.h' 2025-08-26T19:36:14.0067240Z adding 'torch/include/torch/headeronly/util/Half.h' 2025-08-26T19:36:14.0068850Z adding 'torch/include/torch/headeronly/util/TypeSafeSignMath.h' 2025-08-26T19:36:14.0069670Z adding 'torch/include/torch/headeronly/util/bit_cast.h' 2025-08-26T19:36:14.0070620Z adding 'torch/include/torch/headeronly/util/bits.h' 2025-08-26T19:36:14.0074250Z adding 'torch/include/torch/headeronly/util/complex.h' 2025-08-26T19:36:14.0074980Z adding 'torch/include/torch/headeronly/util/floating_point_utils.h' 2025-08-26T19:36:14.0075790Z adding 'torch/include/torch/headeronly/util/qint32.h' 2025-08-26T19:36:14.0076660Z adding 'torch/include/torch/headeronly/util/qint8.h' 2025-08-26T19:36:14.0077480Z adding 'torch/include/torch/headeronly/util/quint2x4.h' 2025-08-26T19:36:14.0078260Z adding 'torch/include/torch/headeronly/util/quint4x2.h' 2025-08-26T19:36:14.0079060Z adding 'torch/include/torch/headeronly/util/quint8.h' 2025-08-26T19:36:14.0080010Z adding 'torch/include/torch/headeronly/util/shim_utils.h' 2025-08-26T19:36:14.0083060Z adding 'torch/jit/__init__.py' 2025-08-26T19:36:14.0084240Z adding 'torch/jit/_async.py' 2025-08-26T19:36:14.0085120Z adding 'torch/jit/_await.py' 2025-08-26T19:36:14.0087250Z adding 'torch/jit/_builtins.py' 2025-08-26T19:36:14.0089500Z adding 'torch/jit/_check.py' 2025-08-26T19:36:14.0091560Z adding 'torch/jit/_dataclass_impls.py' 2025-08-26T19:36:14.0092000Z adding 'torch/jit/_decomposition_utils.py' 2025-08-26T19:36:14.0093590Z adding 'torch/jit/_decompositions.py' 2025-08-26T19:36:14.0096050Z adding 'torch/jit/_freeze.py' 2025-08-26T19:36:14.0097770Z adding 'torch/jit/_fuser.py' 2025-08-26T19:36:14.0098510Z adding 'torch/jit/_ir_utils.py' 2025-08-26T19:36:14.0099300Z adding 'torch/jit/_logging.py' 2025-08-26T19:36:14.0101560Z adding 'torch/jit/_monkeytype_config.py' 2025-08-26T19:36:14.0102240Z adding 'torch/jit/_pickle.py' 2025-08-26T19:36:14.0111890Z adding 'torch/jit/_recursive.py' 2025-08-26T19:36:14.0126550Z adding 'torch/jit/_script.py' 2025-08-26T19:36:14.0128970Z adding 'torch/jit/_script.pyi' 2025-08-26T19:36:14.0131340Z adding 'torch/jit/_serialization.py' 2025-08-26T19:36:14.0140320Z adding 'torch/jit/_shape_functions.py' 2025-08-26T19:36:14.0141610Z adding 'torch/jit/_state.py' 2025-08-26T19:36:14.0153280Z adding 'torch/jit/_trace.py' 2025-08-26T19:36:14.0157870Z adding 'torch/jit/annotations.py' 2025-08-26T19:36:14.0167210Z adding 'torch/jit/frontend.py' 2025-08-26T19:36:14.0168180Z adding 'torch/jit/generate_bytecode.py' 2025-08-26T19:36:14.0169230Z adding 'torch/jit/quantized.py' 2025-08-26T19:36:14.0171870Z adding 'torch/jit/supported_ops.py' 2025-08-26T19:36:14.0172780Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-08-26T19:36:14.0173800Z adding 'torch/jit/_passes/__init__.py' 2025-08-26T19:36:14.0174860Z adding 'torch/jit/_passes/_property_propagation.py' 2025-08-26T19:36:14.0177120Z adding 'torch/jit/mobile/__init__.py' 2025-08-26T19:36:14.0448230Z adding 'torch/lib/libc10.dylib' 2025-08-26T19:36:14.0662870Z adding 'torch/lib/libomp.dylib' 2025-08-26T19:36:14.0675250Z adding 'torch/lib/libshm.dylib' 2025-08-26T19:36:14.0677770Z adding 'torch/lib/libtorch.dylib' 2025-08-26T19:36:17.6760190Z adding 'torch/lib/libtorch_cpu.dylib' 2025-08-26T19:36:17.7555500Z adding 'torch/lib/libtorch_global_deps.dylib' 2025-08-26T19:36:18.3007240Z adding 'torch/lib/libtorch_python.dylib' 2025-08-26T19:36:18.3116930Z adding 'torch/lib/libshm/alloc_info.h' 2025-08-26T19:36:18.3118010Z adding 'torch/lib/libshm/err.h' 2025-08-26T19:36:18.3119150Z adding 'torch/lib/libshm/libshm.h' 2025-08-26T19:36:18.3121910Z adding 'torch/lib/libshm/socket.h' 2025-08-26T19:36:18.3123170Z adding 'torch/lib/libshm_windows/libshm.h' 2025-08-26T19:36:18.3144610Z adding 'torch/linalg/__init__.py' 2025-08-26T19:36:18.3146700Z adding 'torch/masked/__init__.py' 2025-08-26T19:36:18.3150520Z adding 'torch/masked/_docs.py' 2025-08-26T19:36:18.3163630Z adding 'torch/masked/_ops.py' 2025-08-26T19:36:18.3164970Z adding 'torch/masked/maskedtensor/__init__.py' 2025-08-26T19:36:18.3168520Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-08-26T19:36:18.3171480Z adding 'torch/masked/maskedtensor/binary.py' 2025-08-26T19:36:18.3174460Z adding 'torch/masked/maskedtensor/core.py' 2025-08-26T19:36:18.3175180Z adding 'torch/masked/maskedtensor/creation.py' 2025-08-26T19:36:18.3176380Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-08-26T19:36:18.3178390Z adding 'torch/masked/maskedtensor/reductions.py' 2025-08-26T19:36:18.3179450Z adding 'torch/masked/maskedtensor/unary.py' 2025-08-26T19:36:18.3180700Z adding 'torch/monitor/__init__.py' 2025-08-26T19:36:18.3183220Z adding 'torch/mps/__init__.py' 2025-08-26T19:36:18.3184030Z adding 'torch/mps/event.py' 2025-08-26T19:36:18.3185230Z adding 'torch/mps/profiler.py' 2025-08-26T19:36:18.3188780Z adding 'torch/mtia/__init__.py' 2025-08-26T19:36:18.3189780Z adding 'torch/mtia/_utils.py' 2025-08-26T19:36:18.3190860Z adding 'torch/mtia/memory.py' 2025-08-26T19:36:18.3192830Z adding 'torch/multiprocessing/__init__.py' 2025-08-26T19:36:18.3193430Z adding 'torch/multiprocessing/_atfork.py' 2025-08-26T19:36:18.3194670Z adding 'torch/multiprocessing/pool.py' 2025-08-26T19:36:18.3195750Z adding 'torch/multiprocessing/queue.py' 2025-08-26T19:36:18.3200860Z adding 'torch/multiprocessing/reductions.py' 2025-08-26T19:36:18.3204540Z adding 'torch/multiprocessing/spawn.py' 2025-08-26T19:36:18.3209590Z adding 'torch/nested/__init__.py' 2025-08-26T19:36:18.3210480Z adding 'torch/nested/_internal/__init__.py' 2025-08-26T19:36:18.3211720Z adding 'torch/nested/_internal/nested_int.py' 2025-08-26T19:36:18.3217080Z adding 'torch/nested/_internal/nested_tensor.py' 2025-08-26T19:36:18.3235080Z adding 'torch/nested/_internal/ops.py' 2025-08-26T19:36:18.3242780Z adding 'torch/nested/_internal/sdpa.py' 2025-08-26T19:36:18.3244560Z adding 'torch/nn/__init__.py' 2025-08-26T19:36:18.3245670Z adding 'torch/nn/_reduction.py' 2025-08-26T19:36:18.3246770Z adding 'torch/nn/common_types.py' 2025-08-26T19:36:18.3248020Z adding 'torch/nn/cpp.py' 2025-08-26T19:36:18.3291700Z adding 'torch/nn/functional.py' 2025-08-26T19:36:18.3296530Z adding 'torch/nn/functional.pyi' 2025-08-26T19:36:18.3297980Z adding 'torch/nn/grad.py' 2025-08-26T19:36:18.3302820Z adding 'torch/nn/init.py' 2025-08-26T19:36:18.3305820Z adding 'torch/nn/parameter.py' 2025-08-26T19:36:18.3306610Z adding 'torch/nn/parameter.pyi' 2025-08-26T19:36:18.3309180Z adding 'torch/nn/attention/__init__.py' 2025-08-26T19:36:18.3310050Z adding 'torch/nn/attention/_utils.py' 2025-08-26T19:36:18.3313340Z adding 'torch/nn/attention/bias.py' 2025-08-26T19:36:18.3327450Z adding 'torch/nn/attention/flex_attention.py' 2025-08-26T19:36:18.3328590Z adding 'torch/nn/attention/experimental/__init__.py' 2025-08-26T19:36:18.3331640Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-08-26T19:36:18.3332330Z adding 'torch/nn/backends/__init__.py' 2025-08-26T19:36:18.3333120Z adding 'torch/nn/backends/thnn.py' 2025-08-26T19:36:18.3334220Z adding 'torch/nn/intrinsic/__init__.py' 2025-08-26T19:36:18.3335650Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-08-26T19:36:18.3336500Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-08-26T19:36:18.3337420Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-08-26T19:36:18.3338520Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-08-26T19:36:18.3339640Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-08-26T19:36:18.3340510Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-08-26T19:36:18.3341350Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-08-26T19:36:18.3342390Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-08-26T19:36:18.3343590Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-08-26T19:36:18.3344660Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-08-26T19:36:18.3345420Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-08-26T19:36:18.3346420Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-08-26T19:36:18.3347380Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-08-26T19:36:18.3348150Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-08-26T19:36:18.3348900Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-08-26T19:36:18.3351330Z adding 'torch/nn/modules/__init__.py' 2025-08-26T19:36:18.3354230Z adding 'torch/nn/modules/_functions.py' 2025-08-26T19:36:18.3364360Z adding 'torch/nn/modules/activation.py' 2025-08-26T19:36:18.3367510Z adding 'torch/nn/modules/adaptive.py' 2025-08-26T19:36:18.3373100Z adding 'torch/nn/modules/batchnorm.py' 2025-08-26T19:36:18.3374280Z adding 'torch/nn/modules/channelshuffle.py' 2025-08-26T19:36:18.3381330Z adding 'torch/nn/modules/container.py' 2025-08-26T19:36:18.3391320Z adding 'torch/nn/modules/conv.py' 2025-08-26T19:36:18.3392690Z adding 'torch/nn/modules/distance.py' 2025-08-26T19:36:18.3395210Z adding 'torch/nn/modules/dropout.py' 2025-08-26T19:36:18.3396610Z adding 'torch/nn/modules/flatten.py' 2025-08-26T19:36:18.3399400Z adding 'torch/nn/modules/fold.py' 2025-08-26T19:36:18.3402200Z adding 'torch/nn/modules/instancenorm.py' 2025-08-26T19:36:18.3405220Z adding 'torch/nn/modules/lazy.py' 2025-08-26T19:36:18.3407680Z adding 'torch/nn/modules/linear.py' 2025-08-26T19:36:18.3423680Z adding 'torch/nn/modules/loss.py' 2025-08-26T19:36:18.3448650Z adding 'torch/nn/modules/module.py' 2025-08-26T19:36:18.3452270Z adding 'torch/nn/modules/normalization.py' 2025-08-26T19:36:18.3455470Z adding 'torch/nn/modules/padding.py' 2025-08-26T19:36:18.3456680Z adding 'torch/nn/modules/pixelshuffle.py' 2025-08-26T19:36:18.3464200Z adding 'torch/nn/modules/pooling.py' 2025-08-26T19:36:18.3475630Z adding 'torch/nn/modules/rnn.py' 2025-08-26T19:36:18.3480030Z adding 'torch/nn/modules/sparse.py' 2025-08-26T19:36:18.3488160Z adding 'torch/nn/modules/transformer.py' 2025-08-26T19:36:18.3490980Z adding 'torch/nn/modules/upsampling.py' 2025-08-26T19:36:18.3492080Z adding 'torch/nn/modules/utils.py' 2025-08-26T19:36:18.3493290Z adding 'torch/nn/parallel/__init__.py' 2025-08-26T19:36:18.3495130Z adding 'torch/nn/parallel/_functions.py' 2025-08-26T19:36:18.3497830Z adding 'torch/nn/parallel/comm.py' 2025-08-26T19:36:18.3500690Z adding 'torch/nn/parallel/data_parallel.py' 2025-08-26T19:36:18.3526060Z adding 'torch/nn/parallel/distributed.py' 2025-08-26T19:36:18.3528180Z adding 'torch/nn/parallel/parallel_apply.py' 2025-08-26T19:36:18.3530360Z adding 'torch/nn/parallel/replicate.py' 2025-08-26T19:36:18.3531760Z adding 'torch/nn/parallel/scatter_gather.py' 2025-08-26T19:36:18.3532950Z adding 'torch/nn/qat/__init__.py' 2025-08-26T19:36:18.3534070Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-08-26T19:36:18.3535310Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-08-26T19:36:18.3536220Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-08-26T19:36:18.3537330Z adding 'torch/nn/qat/modules/__init__.py' 2025-08-26T19:36:18.3538180Z adding 'torch/nn/qat/modules/conv.py' 2025-08-26T19:36:18.3539190Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-08-26T19:36:18.3540020Z adding 'torch/nn/qat/modules/linear.py' 2025-08-26T19:36:18.3540990Z adding 'torch/nn/quantizable/__init__.py' 2025-08-26T19:36:18.3542030Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-08-26T19:36:18.3543080Z adding 'torch/nn/quantizable/modules/activation.py' 2025-08-26T19:36:18.3543890Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-08-26T19:36:18.3545020Z adding 'torch/nn/quantized/__init__.py' 2025-08-26T19:36:18.3545860Z adding 'torch/nn/quantized/functional.py' 2025-08-26T19:36:18.3547100Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-08-26T19:36:18.3548350Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-08-26T19:36:18.3549240Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-08-26T19:36:18.3550060Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-08-26T19:36:18.3551080Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-08-26T19:36:18.3551920Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-08-26T19:36:18.3552750Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-08-26T19:36:18.3553670Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-08-26T19:36:18.3555060Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-08-26T19:36:18.3555930Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-08-26T19:36:18.3556800Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-08-26T19:36:18.3557720Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-08-26T19:36:18.3559710Z adding 'torch/nn/quantized/modules/__init__.py' 2025-08-26T19:36:18.3560340Z adding 'torch/nn/quantized/modules/activation.py' 2025-08-26T19:36:18.3561260Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-08-26T19:36:18.3562150Z adding 'torch/nn/quantized/modules/conv.py' 2025-08-26T19:36:18.3563230Z adding 'torch/nn/quantized/modules/dropout.py' 2025-08-26T19:36:18.3564110Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-08-26T19:36:18.3564930Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-08-26T19:36:18.3565700Z adding 'torch/nn/quantized/modules/linear.py' 2025-08-26T19:36:18.3566770Z adding 'torch/nn/quantized/modules/normalization.py' 2025-08-26T19:36:18.3567680Z adding 'torch/nn/quantized/modules/rnn.py' 2025-08-26T19:36:18.3568390Z adding 'torch/nn/quantized/modules/utils.py' 2025-08-26T19:36:18.3569660Z adding 'torch/nn/utils/__init__.py' 2025-08-26T19:36:18.3570920Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-08-26T19:36:18.3573870Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-08-26T19:36:18.3575370Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-08-26T19:36:18.3578110Z adding 'torch/nn/utils/clip_grad.py' 2025-08-26T19:36:18.3579460Z adding 'torch/nn/utils/convert_parameters.py' 2025-08-26T19:36:18.3581440Z adding 'torch/nn/utils/fusion.py' 2025-08-26T19:36:18.3582420Z adding 'torch/nn/utils/init.py' 2025-08-26T19:36:18.3584410Z adding 'torch/nn/utils/memory_format.py' 2025-08-26T19:36:18.3590340Z adding 'torch/nn/utils/parametrizations.py' 2025-08-26T19:36:18.3598050Z adding 'torch/nn/utils/parametrize.py' 2025-08-26T19:36:18.3608520Z adding 'torch/nn/utils/prune.py' 2025-08-26T19:36:18.3613720Z adding 'torch/nn/utils/rnn.py' 2025-08-26T19:36:18.3617240Z adding 'torch/nn/utils/spectral_norm.py' 2025-08-26T19:36:18.3619990Z adding 'torch/nn/utils/stateless.py' 2025-08-26T19:36:18.3622080Z adding 'torch/nn/utils/weight_norm.py' 2025-08-26T19:36:18.3623090Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-08-26T19:36:18.3624360Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-08-26T19:36:18.3627310Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-08-26T19:36:18.3628540Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-08-26T19:36:18.3630670Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-08-26T19:36:18.3632330Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-08-26T19:36:18.3633630Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-08-26T19:36:18.3635190Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-08-26T19:36:18.3636450Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-08-26T19:36:18.3637540Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-08-26T19:36:18.3638440Z adding 'torch/numa/__init__.py' 2025-08-26T19:36:18.3642540Z adding 'torch/numa/binding.py' 2025-08-26T19:36:18.3646900Z adding 'torch/onnx/__init__.py' 2025-08-26T19:36:18.3647620Z adding 'torch/onnx/_constants.py' 2025-08-26T19:36:18.3648550Z adding 'torch/onnx/_experimental.py' 2025-08-26T19:36:18.3649670Z adding 'torch/onnx/_flags.py' 2025-08-26T19:36:18.3650840Z adding 'torch/onnx/_globals.py' 2025-08-26T19:36:18.3653930Z adding 'torch/onnx/_type_utils.py' 2025-08-26T19:36:18.3654960Z adding 'torch/onnx/errors.py' 2025-08-26T19:36:18.3656070Z adding 'torch/onnx/operators.py' 2025-08-26T19:36:18.3673020Z adding 'torch/onnx/symbolic_helper.py' 2025-08-26T19:36:18.3679130Z adding 'torch/onnx/symbolic_opset10.py' 2025-08-26T19:36:18.3689340Z adding 'torch/onnx/symbolic_opset11.py' 2025-08-26T19:36:18.3692470Z adding 'torch/onnx/symbolic_opset12.py' 2025-08-26T19:36:18.3699470Z adding 'torch/onnx/symbolic_opset13.py' 2025-08-26T19:36:18.3702230Z adding 'torch/onnx/symbolic_opset14.py' 2025-08-26T19:36:18.3703230Z adding 'torch/onnx/symbolic_opset15.py' 2025-08-26T19:36:18.3705530Z adding 'torch/onnx/symbolic_opset16.py' 2025-08-26T19:36:18.3707750Z adding 'torch/onnx/symbolic_opset17.py' 2025-08-26T19:36:18.3709510Z adding 'torch/onnx/symbolic_opset18.py' 2025-08-26T19:36:18.3710300Z adding 'torch/onnx/symbolic_opset19.py' 2025-08-26T19:36:18.3711600Z adding 'torch/onnx/symbolic_opset20.py' 2025-08-26T19:36:18.3712650Z adding 'torch/onnx/symbolic_opset7.py' 2025-08-26T19:36:18.3715840Z adding 'torch/onnx/symbolic_opset8.py' 2025-08-26T19:36:18.3758590Z adding 'torch/onnx/symbolic_opset9.py' 2025-08-26T19:36:18.3777120Z adding 'torch/onnx/utils.py' 2025-08-26T19:36:18.3792340Z adding 'torch/onnx/verification.py' 2025-08-26T19:36:18.3793790Z adding 'torch/onnx/_internal/__init__.py' 2025-08-26T19:36:18.3794860Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-08-26T19:36:18.3798260Z adding 'torch/onnx/_internal/jit_utils.py' 2025-08-26T19:36:18.3800760Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-08-26T19:36:18.3803320Z adding 'torch/onnx/_internal/registration.py' 2025-08-26T19:36:18.3804480Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-08-26T19:36:18.3807130Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-08-26T19:36:18.3813600Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-08-26T19:36:18.3815840Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-08-26T19:36:18.3817970Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-08-26T19:36:18.3818570Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-08-26T19:36:18.3833580Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-08-26T19:36:18.3835340Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-08-26T19:36:18.3838700Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-08-26T19:36:18.3841800Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-08-26T19:36:18.3842670Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-08-26T19:36:18.3843540Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-08-26T19:36:18.3844640Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-08-26T19:36:18.3846650Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-08-26T19:36:18.3847680Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-08-26T19:36:18.3851940Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-08-26T19:36:18.3854790Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-08-26T19:36:18.3856380Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-08-26T19:36:18.3861270Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-08-26T19:36:18.3862140Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-08-26T19:36:18.3863580Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-08-26T19:36:18.3864560Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-08-26T19:36:18.3867940Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-08-26T19:36:18.3868800Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-08-26T19:36:18.3869890Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-08-26T19:36:18.3871120Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-08-26T19:36:18.3872430Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-08-26T19:36:18.3877940Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-08-26T19:36:18.3878280Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-08-26T19:36:18.3878570Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-08-26T19:36:18.3879240Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-08-26T19:36:18.3880200Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-08-26T19:36:18.3881120Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-08-26T19:36:18.3883660Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-08-26T19:36:18.3885440Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-08-26T19:36:18.3886340Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-08-26T19:36:18.3895680Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-08-26T19:36:18.3900270Z adding 'torch/onnx/ops/__init__.py' 2025-08-26T19:36:18.3901060Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-08-26T19:36:18.3904600Z adding 'torch/onnx/ops/_impl.py' 2025-08-26T19:36:18.3906830Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-08-26T19:36:18.3908120Z adding 'torch/optim/__init__.py' 2025-08-26T19:36:18.3913940Z adding 'torch/optim/_adafactor.py' 2025-08-26T19:36:18.3915310Z adding 'torch/optim/_functional.py' 2025-08-26T19:36:18.3918680Z adding 'torch/optim/_muon.py' 2025-08-26T19:36:18.3922040Z adding 'torch/optim/adadelta.py' 2025-08-26T19:36:18.3926360Z adding 'torch/optim/adagrad.py' 2025-08-26T19:36:18.3933530Z adding 'torch/optim/adam.py' 2025-08-26T19:36:18.3937340Z adding 'torch/optim/adamax.py' 2025-08-26T19:36:18.3939360Z adding 'torch/optim/adamw.py' 2025-08-26T19:36:18.3942810Z adding 'torch/optim/asgd.py' 2025-08-26T19:36:18.3946790Z adding 'torch/optim/lbfgs.py' 2025-08-26T19:36:18.3961140Z adding 'torch/optim/lr_scheduler.py' 2025-08-26T19:36:18.3966240Z adding 'torch/optim/nadam.py' 2025-08-26T19:36:18.3976590Z adding 'torch/optim/optimizer.py' 2025-08-26T19:36:18.3981590Z adding 'torch/optim/radam.py' 2025-08-26T19:36:18.3985500Z adding 'torch/optim/rmsprop.py' 2025-08-26T19:36:18.3989140Z adding 'torch/optim/rprop.py' 2025-08-26T19:36:18.3993080Z adding 'torch/optim/sgd.py' 2025-08-26T19:36:18.3995580Z adding 'torch/optim/sparse_adam.py' 2025-08-26T19:36:18.3999600Z adding 'torch/optim/swa_utils.py' 2025-08-26T19:36:18.4000670Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-08-26T19:36:18.4001500Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-08-26T19:36:18.4002930Z adding 'torch/package/__init__.py' 2025-08-26T19:36:18.4004760Z adding 'torch/package/_digraph.py' 2025-08-26T19:36:18.4005680Z adding 'torch/package/_directory_reader.py' 2025-08-26T19:36:18.4006960Z adding 'torch/package/_importlib.py' 2025-08-26T19:36:18.4008240Z adding 'torch/package/_mangling.py' 2025-08-26T19:36:18.4009460Z adding 'torch/package/_mock.py' 2025-08-26T19:36:18.4011420Z adding 'torch/package/_package_pickler.py' 2025-08-26T19:36:18.4012120Z adding 'torch/package/_package_unpickler.py' 2025-08-26T19:36:18.4014100Z adding 'torch/package/_stdlib.py' 2025-08-26T19:36:18.4015410Z adding 'torch/package/file_structure_representation.py' 2025-08-26T19:36:18.4016710Z adding 'torch/package/find_file_dependencies.py' 2025-08-26T19:36:18.4018010Z adding 'torch/package/glob_group.py' 2025-08-26T19:36:18.4020940Z adding 'torch/package/importer.py' 2025-08-26T19:36:18.4031370Z adding 'torch/package/package_exporter.py' 2025-08-26T19:36:18.4038850Z adding 'torch/package/package_importer.py' 2025-08-26T19:36:18.4040020Z adding 'torch/package/analyze/__init__.py' 2025-08-26T19:36:18.4041070Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-08-26T19:36:18.4041870Z adding 'torch/package/analyze/is_from_package.py' 2025-08-26T19:36:18.4043030Z adding 'torch/package/analyze/trace_dependencies.py' 2025-08-26T19:36:18.4044850Z adding 'torch/profiler/__init__.py' 2025-08-26T19:36:18.4055080Z adding 'torch/profiler/_memory_profiler.py' 2025-08-26T19:36:18.4059860Z adding 'torch/profiler/_pattern_matcher.py' 2025-08-26T19:36:18.4063380Z adding 'torch/profiler/_utils.py' 2025-08-26T19:36:18.4064240Z adding 'torch/profiler/itt.py' 2025-08-26T19:36:18.4073370Z adding 'torch/profiler/profiler.py' 2025-08-26T19:36:18.4074220Z adding 'torch/profiler/python_tracer.py' 2025-08-26T19:36:18.4076210Z adding 'torch/quantization/__init__.py' 2025-08-26T19:36:18.4076920Z adding 'torch/quantization/_numeric_suite.py' 2025-08-26T19:36:18.4077780Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-08-26T19:36:18.4079280Z adding 'torch/quantization/_quantized_conversions.py' 2025-08-26T19:36:18.4080160Z adding 'torch/quantization/fake_quantize.py' 2025-08-26T19:36:18.4081200Z adding 'torch/quantization/fuse_modules.py' 2025-08-26T19:36:18.4082070Z adding 'torch/quantization/fuser_method_mappings.py' 2025-08-26T19:36:18.4082950Z adding 'torch/quantization/observer.py' 2025-08-26T19:36:18.4083800Z adding 'torch/quantization/qconfig.py' 2025-08-26T19:36:18.4084820Z adding 'torch/quantization/quant_type.py' 2025-08-26T19:36:18.4085750Z adding 'torch/quantization/quantization_mappings.py' 2025-08-26T19:36:18.4086560Z adding 'torch/quantization/quantize.py' 2025-08-26T19:36:18.4087410Z adding 'torch/quantization/quantize_fx.py' 2025-08-26T19:36:18.4088440Z adding 'torch/quantization/quantize_jit.py' 2025-08-26T19:36:18.4089260Z adding 'torch/quantization/stubs.py' 2025-08-26T19:36:18.4090130Z adding 'torch/quantization/utils.py' 2025-08-26T19:36:18.4091340Z adding 'torch/quantization/fx/__init__.py' 2025-08-26T19:36:18.4092520Z adding 'torch/quantization/fx/_equalize.py' 2025-08-26T19:36:18.4093350Z adding 'torch/quantization/fx/convert.py' 2025-08-26T19:36:18.4094160Z adding 'torch/quantization/fx/fuse.py' 2025-08-26T19:36:18.4094940Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-08-26T19:36:18.4095970Z adding 'torch/quantization/fx/graph_module.py' 2025-08-26T19:36:18.4096800Z adding 'torch/quantization/fx/match_utils.py' 2025-08-26T19:36:18.4097690Z adding 'torch/quantization/fx/pattern_utils.py' 2025-08-26T19:36:18.4098450Z adding 'torch/quantization/fx/prepare.py' 2025-08-26T19:36:18.4099610Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-08-26T19:36:18.4100420Z adding 'torch/quantization/fx/quantization_types.py' 2025-08-26T19:36:18.4101210Z adding 'torch/quantization/fx/utils.py' 2025-08-26T19:36:18.4103200Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-08-26T19:36:18.4104980Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-08-26T19:36:18.4105820Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-08-26T19:36:18.4107380Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-08-26T19:36:18.4114970Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-08-26T19:36:18.4116310Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-08-26T19:36:18.4117550Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-08-26T19:36:18.4119070Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-08-26T19:36:18.4120540Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-08-26T19:36:18.4121730Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-08-26T19:36:18.4123160Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-08-26T19:36:18.4142180Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-08-26T19:36:18.4143800Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-08-26T19:36:18.4146000Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-08-26T19:36:18.4147170Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-08-26T19:36:18.4150270Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-08-26T19:36:18.4152790Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-08-26T19:36:18.4155270Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-08-26T19:36:18.4158160Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-08-26T19:36:18.4159360Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-08-26T19:36:18.4160550Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-08-26T19:36:18.4161590Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-08-26T19:36:18.4162430Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-08-26T19:36:18.4163950Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-08-26T19:36:18.4168470Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-08-26T19:36:18.4169270Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-08-26T19:36:18.4171280Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-08-26T19:36:18.4172110Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-08-26T19:36:18.4173020Z adding 'torch/signal/__init__.py' 2025-08-26T19:36:18.4174070Z adding 'torch/signal/windows/__init__.py' 2025-08-26T19:36:18.4177870Z adding 'torch/signal/windows/windows.py' 2025-08-26T19:36:18.4183620Z adding 'torch/sparse/__init__.py' 2025-08-26T19:36:18.4187010Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-08-26T19:36:18.4188510Z adding 'torch/sparse/_semi_structured_ops.py' 2025-08-26T19:36:18.4204050Z adding 'torch/sparse/_triton_ops.py' 2025-08-26T19:36:18.4283520Z adding 'torch/sparse/_triton_ops_meta.py' 2025-08-26T19:36:18.4290800Z adding 'torch/sparse/semi_structured.py' 2025-08-26T19:36:18.4296120Z adding 'torch/special/__init__.py' 2025-08-26T19:36:18.4297160Z adding 'torch/testing/__init__.py' 2025-08-26T19:36:18.4310310Z adding 'torch/testing/_comparison.py' 2025-08-26T19:36:18.4313560Z adding 'torch/testing/_creation.py' 2025-08-26T19:36:18.4314760Z adding 'torch/testing/_utils.py' 2025-08-26T19:36:18.4316260Z adding 'torch/testing/_internal/__init__.py' 2025-08-26T19:36:18.4320500Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-08-26T19:36:18.4323380Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-08-26T19:36:18.4325490Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-08-26T19:36:18.4328560Z adding 'torch/testing/_internal/common_cuda.py' 2025-08-26T19:36:18.4344560Z adding 'torch/testing/_internal/common_device_type.py' 2025-08-26T19:36:18.4345990Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-08-26T19:36:18.4360970Z adding 'torch/testing/_internal/common_distributed.py' 2025-08-26T19:36:18.4362740Z adding 'torch/testing/_internal/common_dtype.py' 2025-08-26T19:36:18.4373850Z adding 'torch/testing/_internal/common_fsdp.py' 2025-08-26T19:36:18.4377440Z adding 'torch/testing/_internal/common_jit.py' 2025-08-26T19:36:18.4530600Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-08-26T19:36:18.4537040Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-08-26T19:36:18.4558110Z adding 'torch/testing/_internal/common_modules.py' 2025-08-26T19:36:18.4563210Z adding 'torch/testing/_internal/common_mps.py' 2025-08-26T19:36:18.4584910Z adding 'torch/testing/_internal/common_nn.py' 2025-08-26T19:36:18.4596130Z adding 'torch/testing/_internal/common_optimizers.py' 2025-08-26T19:36:18.4598880Z adding 'torch/testing/_internal/common_pruning.py' 2025-08-26T19:36:18.4618160Z adding 'torch/testing/_internal/common_quantization.py' 2025-08-26T19:36:18.4622900Z adding 'torch/testing/_internal/common_quantized.py' 2025-08-26T19:36:18.4625800Z adding 'torch/testing/_internal/common_subclass.py' 2025-08-26T19:36:18.4681110Z adding 'torch/testing/_internal/common_utils.py' 2025-08-26T19:36:18.4687430Z adding 'torch/testing/_internal/composite_compliance.py' 2025-08-26T19:36:18.4691200Z adding 'torch/testing/_internal/custom_op_db.py' 2025-08-26T19:36:18.4692600Z adding 'torch/testing/_internal/custom_tensor.py' 2025-08-26T19:36:18.4694940Z adding 'torch/testing/_internal/dist_utils.py' 2025-08-26T19:36:18.4696360Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-08-26T19:36:18.4697600Z adding 'torch/testing/_internal/fake_config_module.py' 2025-08-26T19:36:18.4698460Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-08-26T19:36:18.4699320Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-08-26T19:36:18.4701710Z adding 'torch/testing/_internal/hop_db.py' 2025-08-26T19:36:18.4705090Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-08-26T19:36:18.4707830Z adding 'torch/testing/_internal/inductor_utils.py' 2025-08-26T19:36:18.4713970Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-08-26T19:36:18.4720740Z adding 'torch/testing/_internal/jit_utils.py' 2025-08-26T19:36:18.4722980Z adding 'torch/testing/_internal/logging_tensor.py' 2025-08-26T19:36:18.4725080Z adding 'torch/testing/_internal/logging_utils.py' 2025-08-26T19:36:18.4725970Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-08-26T19:36:18.4726800Z adding 'torch/testing/_internal/static_module.py' 2025-08-26T19:36:18.4727930Z adding 'torch/testing/_internal/subclasses.py' 2025-08-26T19:36:18.4729530Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-08-26T19:36:18.4734120Z adding 'torch/testing/_internal/triton_utils.py' 2025-08-26T19:36:18.4735350Z adding 'torch/testing/_internal/two_tensor.py' 2025-08-26T19:36:18.4736700Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-08-26T19:36:18.4737640Z adding 'torch/testing/_internal/data/__init__.py' 2025-08-26T19:36:18.4738660Z adding 'torch/testing/_internal/data/network1.py' 2025-08-26T19:36:18.4739460Z adding 'torch/testing/_internal/data/network2.py' 2025-08-26T19:36:18.4740590Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-08-26T19:36:18.4742730Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-08-26T19:36:18.4744830Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-08-26T19:36:18.4749540Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-08-26T19:36:18.4813660Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-08-26T19:36:18.4816890Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-08-26T19:36:18.4817650Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-08-26T19:36:18.4821720Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-08-26T19:36:18.4824020Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-08-26T19:36:18.4824960Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-08-26T19:36:18.4825910Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-08-26T19:36:18.4827850Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-08-26T19:36:18.4829230Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-08-26T19:36:18.4830260Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-08-26T19:36:18.4831190Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-08-26T19:36:18.4836390Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-08-26T19:36:18.4837400Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-08-26T19:36:18.4838330Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-08-26T19:36:18.4842430Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-08-26T19:36:18.4843250Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-08-26T19:36:18.4860550Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-08-26T19:36:18.4863400Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-08-26T19:36:18.4865940Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-08-26T19:36:18.4866920Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-08-26T19:36:18.4868300Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-08-26T19:36:18.4905390Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-08-26T19:36:18.4907570Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-08-26T19:36:18.4908630Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-08-26T19:36:18.4910230Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-08-26T19:36:18.4912960Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-08-26T19:36:18.4913580Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-08-26T19:36:18.4915190Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-08-26T19:36:18.4923600Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-08-26T19:36:18.4925750Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-08-26T19:36:18.4926720Z adding 'torch/testing/_internal/generated/__init__.py' 2025-08-26T19:36:18.4959610Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-08-26T19:36:18.4963050Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-08-26T19:36:18.4989290Z adding 'torch/testing/_internal/opinfo/core.py' 2025-08-26T19:36:18.4991670Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-08-26T19:36:18.4994360Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-08-26T19:36:18.4995490Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-08-26T19:36:18.5000930Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-08-26T19:36:18.5004120Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-08-26T19:36:18.5016380Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-08-26T19:36:18.5027420Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-08-26T19:36:18.5030110Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-08-26T19:36:18.5035220Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-08-26T19:36:18.5038630Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-08-26T19:36:18.5039610Z adding 'torch/testing/_internal/optests/__init__.py' 2025-08-26T19:36:18.5041960Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-08-26T19:36:18.5043740Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-08-26T19:36:18.5044390Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-08-26T19:36:18.5051490Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-08-26T19:36:18.5052990Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-08-26T19:36:18.5054050Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-08-26T19:36:18.5054850Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-08-26T19:36:18.5055680Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-08-26T19:36:18.5058300Z adding 'torch/utils/__init__.py' 2025-08-26T19:36:18.5059470Z adding 'torch/utils/_appending_byte_serializer.py' 2025-08-26T19:36:18.5061460Z adding 'torch/utils/_backport_slots.py' 2025-08-26T19:36:18.5067670Z adding 'torch/utils/_config_module.py' 2025-08-26T19:36:18.5068790Z adding 'torch/utils/_config_typing.pyi' 2025-08-26T19:36:18.5071560Z adding 'torch/utils/_content_store.py' 2025-08-26T19:36:18.5073130Z adding 'torch/utils/_contextlib.py' 2025-08-26T19:36:18.5074190Z adding 'torch/utils/_cpp_embed_headers.py' 2025-08-26T19:36:18.5075500Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-08-26T19:36:18.5082540Z adding 'torch/utils/_cxx_pytree.py' 2025-08-26T19:36:18.5083860Z adding 'torch/utils/_device.py' 2025-08-26T19:36:18.5084880Z adding 'torch/utils/_dtype_abbrs.py' 2025-08-26T19:36:18.5085800Z adding 'torch/utils/_exposed_in.py' 2025-08-26T19:36:18.5086820Z adding 'torch/utils/_filelock.py' 2025-08-26T19:36:18.5088030Z adding 'torch/utils/_foreach_utils.py' 2025-08-26T19:36:18.5089230Z adding 'torch/utils/_functools.py' 2025-08-26T19:36:18.5091420Z adding 'torch/utils/_get_clean_triton.py' 2025-08-26T19:36:18.5091980Z adding 'torch/utils/_helion.py' 2025-08-26T19:36:18.5092940Z adding 'torch/utils/_import_utils.py' 2025-08-26T19:36:18.5093990Z adding 'torch/utils/_mode_utils.py' 2025-08-26T19:36:18.5095970Z adding 'torch/utils/_ordered_set.py' 2025-08-26T19:36:18.5102410Z adding 'torch/utils/_python_dispatch.py' 2025-08-26T19:36:18.5116480Z adding 'torch/utils/_pytree.py' 2025-08-26T19:36:18.5118650Z adding 'torch/utils/_stats.py' 2025-08-26T19:36:18.5119470Z adding 'torch/utils/_thunk.py' 2025-08-26T19:36:18.5122580Z adding 'torch/utils/_traceback.py' 2025-08-26T19:36:18.5123770Z adding 'torch/utils/_triton.py' 2025-08-26T19:36:18.5124730Z adding 'torch/utils/_typing_utils.py' 2025-08-26T19:36:18.5126070Z adding 'torch/utils/_zip.py' 2025-08-26T19:36:18.5130510Z adding 'torch/utils/backend_registration.py' 2025-08-26T19:36:18.5135070Z adding 'torch/utils/bundled_inputs.py' 2025-08-26T19:36:18.5151510Z adding 'torch/utils/checkpoint.py' 2025-08-26T19:36:18.5158210Z adding 'torch/utils/collect_env.py' 2025-08-26T19:36:18.5159010Z adding 'torch/utils/cpp_backtrace.py' 2025-08-26T19:36:18.5187510Z adding 'torch/utils/cpp_extension.py' 2025-08-26T19:36:18.5188840Z adding 'torch/utils/deterministic.py' 2025-08-26T19:36:18.5191150Z adding 'torch/utils/dlpack.py' 2025-08-26T19:36:18.5192050Z adding 'torch/utils/file_baton.py' 2025-08-26T19:36:18.5198820Z adding 'torch/utils/flop_counter.py' 2025-08-26T19:36:18.5201440Z adding 'torch/utils/hooks.py' 2025-08-26T19:36:18.5202840Z adding 'torch/utils/mkldnn.py' 2025-08-26T19:36:18.5204890Z adding 'torch/utils/mobile_optimizer.py' 2025-08-26T19:36:18.5205440Z adding 'torch/utils/model_zoo.py' 2025-08-26T19:36:18.5207440Z adding 'torch/utils/module_tracker.py' 2025-08-26T19:36:18.5208670Z adding 'torch/utils/show_pickle.py' 2025-08-26T19:36:18.5210880Z adding 'torch/utils/throughput_benchmark.py' 2025-08-26T19:36:18.5213620Z adding 'torch/utils/weak.py' 2025-08-26T19:36:18.5214860Z adding 'torch/utils/_strobelight/__init__.py' 2025-08-26T19:36:18.5217590Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-08-26T19:36:18.5218350Z adding 'torch/utils/_sympy/__init__.py' 2025-08-26T19:36:18.5229540Z adding 'torch/utils/_sympy/functions.py' 2025-08-26T19:36:18.5231900Z adding 'torch/utils/_sympy/interp.py' 2025-08-26T19:36:18.5234060Z adding 'torch/utils/_sympy/numbers.py' 2025-08-26T19:36:18.5237430Z adding 'torch/utils/_sympy/printers.py' 2025-08-26T19:36:18.5239970Z adding 'torch/utils/_sympy/reference.py' 2025-08-26T19:36:18.5240900Z adding 'torch/utils/_sympy/singleton_int.py' 2025-08-26T19:36:18.5247850Z adding 'torch/utils/_sympy/solve.py' 2025-08-26T19:36:18.5248140Z adding 'torch/utils/_sympy/symbol.py' 2025-08-26T19:36:18.5251740Z adding 'torch/utils/_sympy/value_ranges.py' 2025-08-26T19:36:18.5252840Z adding 'torch/utils/backcompat/__init__.py' 2025-08-26T19:36:18.5253980Z adding 'torch/utils/benchmark/__init__.py' 2025-08-26T19:36:18.5255080Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-08-26T19:36:18.5256360Z adding 'torch/utils/benchmark/examples/compare.py' 2025-08-26T19:36:18.5257580Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-08-26T19:36:18.5259170Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-08-26T19:36:18.5260070Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-08-26T19:36:18.5261630Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-08-26T19:36:18.5262580Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-08-26T19:36:18.5263810Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-08-26T19:36:18.5265170Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-08-26T19:36:18.5266370Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-08-26T19:36:18.5267600Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-08-26T19:36:18.5268760Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-08-26T19:36:18.5269790Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-08-26T19:36:18.5270730Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-08-26T19:36:18.5274270Z adding 'torch/utils/benchmark/utils/common.py' 2025-08-26T19:36:18.5277380Z adding 'torch/utils/benchmark/utils/compare.py' 2025-08-26T19:36:18.5279480Z adding 'torch/utils/benchmark/utils/compile.py' 2025-08-26T19:36:18.5280990Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-08-26T19:36:18.5285310Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-08-26T19:36:18.5286840Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-08-26T19:36:18.5287830Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-08-26T19:36:18.5292790Z adding 'torch/utils/benchmark/utils/timer.py' 2025-08-26T19:36:18.5293690Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-08-26T19:36:18.5295810Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-08-26T19:36:18.5296450Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-08-26T19:36:18.5297520Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-08-26T19:36:18.5305540Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-08-26T19:36:18.5340080Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-08-26T19:36:18.5342910Z adding 'torch/utils/bottleneck/__init__.py' 2025-08-26T19:36:18.5345010Z adding 'torch/utils/bottleneck/__main__.py' 2025-08-26T19:36:18.5346160Z adding 'torch/utils/data/__init__.py' 2025-08-26T19:36:18.5347060Z adding 'torch/utils/data/backward_compatibility.py' 2025-08-26T19:36:18.5365770Z adding 'torch/utils/data/dataloader.py' 2025-08-26T19:36:18.5370140Z adding 'torch/utils/data/dataset.py' 2025-08-26T19:36:18.5371940Z adding 'torch/utils/data/distributed.py' 2025-08-26T19:36:18.5373700Z adding 'torch/utils/data/graph.py' 2025-08-26T19:36:18.5375580Z adding 'torch/utils/data/graph_settings.py' 2025-08-26T19:36:18.5378520Z adding 'torch/utils/data/sampler.py' 2025-08-26T19:36:18.5379760Z adding 'torch/utils/data/_utils/__init__.py' 2025-08-26T19:36:18.5383170Z adding 'torch/utils/data/_utils/collate.py' 2025-08-26T19:36:18.5384040Z adding 'torch/utils/data/_utils/fetch.py' 2025-08-26T19:36:18.5385470Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-08-26T19:36:18.5386760Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-08-26T19:36:18.5390300Z adding 'torch/utils/data/_utils/worker.py' 2025-08-26T19:36:18.5391220Z adding 'torch/utils/data/datapipes/__init__.py' 2025-08-26T19:36:18.5393330Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-08-26T19:36:18.5396130Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-08-26T19:36:18.5399890Z adding 'torch/utils/data/datapipes/_typing.py' 2025-08-26T19:36:18.5403070Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-08-26T19:36:18.5408970Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-08-26T19:36:18.5411880Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-08-26T19:36:18.5412940Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-08-26T19:36:18.5414100Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-08-26T19:36:18.5417160Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-08-26T19:36:18.5418300Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-08-26T19:36:18.5419190Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-08-26T19:36:18.5420450Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-08-26T19:36:18.5423090Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-08-26T19:36:18.5424890Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-08-26T19:36:18.5429770Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-08-26T19:36:18.5430820Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-08-26T19:36:18.5432110Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-08-26T19:36:18.5435000Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-08-26T19:36:18.5436000Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-08-26T19:36:18.5437340Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-08-26T19:36:18.5438580Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-08-26T19:36:18.5439640Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-08-26T19:36:18.5440750Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-08-26T19:36:18.5441890Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-08-26T19:36:18.5442960Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-08-26T19:36:18.5444500Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-08-26T19:36:18.5445810Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-08-26T19:36:18.5447000Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-08-26T19:36:18.5448090Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-08-26T19:36:18.5449130Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-08-26T19:36:18.5452530Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-08-26T19:36:18.5455270Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-08-26T19:36:18.5456450Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-08-26T19:36:18.5457450Z adding 'torch/utils/hipify/__init__.py' 2025-08-26T19:36:18.5458510Z adding 'torch/utils/hipify/constants.py' 2025-08-26T19:36:18.5500190Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-08-26T19:36:18.5512170Z adding 'torch/utils/hipify/hipify_python.py' 2025-08-26T19:36:18.5512930Z adding 'torch/utils/hipify/version.py' 2025-08-26T19:36:18.5513890Z adding 'torch/utils/jit/__init__.py' 2025-08-26T19:36:18.5515430Z adding 'torch/utils/jit/log_extract.py' 2025-08-26T19:36:18.5519680Z adding 'torch/utils/model_dump/__init__.py' 2025-08-26T19:36:18.5520280Z adding 'torch/utils/model_dump/__main__.py' 2025-08-26T19:36:18.5524340Z adding 'torch/utils/model_dump/code.js' 2025-08-26T19:36:18.5525210Z adding 'torch/utils/model_dump/htm.mjs' 2025-08-26T19:36:18.5528210Z adding 'torch/utils/model_dump/preact.mjs' 2025-08-26T19:36:18.5528830Z adding 'torch/utils/model_dump/skeleton.html' 2025-08-26T19:36:18.5529750Z adding 'torch/utils/serialization/__init__.py' 2025-08-26T19:36:18.5530630Z adding 'torch/utils/serialization/config.py' 2025-08-26T19:36:18.5531760Z adding 'torch/utils/tensorboard/__init__.py' 2025-08-26T19:36:18.5532690Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-08-26T19:36:18.5533990Z adding 'torch/utils/tensorboard/_embedding.py' 2025-08-26T19:36:18.5535090Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-08-26T19:36:18.5536150Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-08-26T19:36:18.5539840Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-08-26T19:36:18.5541120Z adding 'torch/utils/tensorboard/_utils.py' 2025-08-26T19:36:18.5548640Z adding 'torch/utils/tensorboard/summary.py' 2025-08-26T19:36:18.5556780Z adding 'torch/utils/tensorboard/writer.py' 2025-08-26T19:36:18.5557700Z adding 'torch/utils/viz/__init__.py' 2025-08-26T19:36:18.5561760Z adding 'torch/utils/viz/_cycles.py' 2025-08-26T19:36:18.5565860Z adding 'torch/xpu/__init__.py' 2025-08-26T19:36:18.5566660Z adding 'torch/xpu/_gpu_trace.py' 2025-08-26T19:36:18.5567670Z adding 'torch/xpu/_utils.py' 2025-08-26T19:36:18.5569720Z adding 'torch/xpu/memory.py' 2025-08-26T19:36:18.5570870Z adding 'torch/xpu/random.py' 2025-08-26T19:36:18.5572850Z adding 'torch/xpu/streams.py' 2025-08-26T19:36:18.5575550Z adding 'torchgen/__init__.py' 2025-08-26T19:36:18.5576580Z adding 'torchgen/code_template.py' 2025-08-26T19:36:18.5577920Z adding 'torchgen/context.py' 2025-08-26T19:36:18.5600640Z adding 'torchgen/gen.py' 2025-08-26T19:36:18.5606650Z adding 'torchgen/gen_aoti_c_shim.py' 2025-08-26T19:36:18.5611360Z adding 'torchgen/gen_backend_stubs.py' 2025-08-26T19:36:18.5619040Z adding 'torchgen/gen_functionalization_type.py' 2025-08-26T19:36:18.5623960Z adding 'torchgen/gen_lazy_tensor.py' 2025-08-26T19:36:18.5625080Z adding 'torchgen/gen_schema_utils.py' 2025-08-26T19:36:18.5627410Z adding 'torchgen/gen_vmap_plumbing.py' 2025-08-26T19:36:18.5628200Z adding 'torchgen/local.py' 2025-08-26T19:36:18.5654270Z adding 'torchgen/model.py' 2025-08-26T19:36:18.5661340Z adding 'torchgen/native_function_generation.py' 2025-08-26T19:36:18.5665790Z adding 'torchgen/utils.py' 2025-08-26T19:36:18.5666610Z adding 'torchgen/yaml_utils.py' 2025-08-26T19:36:18.5667790Z adding 'torchgen/aoti/__init__.py' 2025-08-26T19:36:18.5669770Z adding 'torchgen/aoti/fallback_ops.py' 2025-08-26T19:36:18.5670510Z adding 'torchgen/api/__init__.py' 2025-08-26T19:36:18.5679150Z adding 'torchgen/api/autograd.py' 2025-08-26T19:36:18.5683010Z adding 'torchgen/api/cpp.py' 2025-08-26T19:36:18.5684250Z adding 'torchgen/api/dispatcher.py' 2025-08-26T19:36:18.5686540Z adding 'torchgen/api/functionalization.py' 2025-08-26T19:36:18.5690480Z adding 'torchgen/api/lazy.py' 2025-08-26T19:36:18.5691150Z adding 'torchgen/api/meta.py' 2025-08-26T19:36:18.5693100Z adding 'torchgen/api/native.py' 2025-08-26T19:36:18.5705610Z adding 'torchgen/api/python.py' 2025-08-26T19:36:18.5707710Z adding 'torchgen/api/structured.py' 2025-08-26T19:36:18.5711320Z adding 'torchgen/api/translate.py' 2025-08-26T19:36:18.5713080Z adding 'torchgen/api/ufunc.py' 2025-08-26T19:36:18.5715410Z adding 'torchgen/api/unboxing.py' 2025-08-26T19:36:18.5716230Z adding 'torchgen/api/types/__init__.py' 2025-08-26T19:36:18.5719710Z adding 'torchgen/api/types/signatures.py' 2025-08-26T19:36:18.5721470Z adding 'torchgen/api/types/types.py' 2025-08-26T19:36:18.5723570Z adding 'torchgen/api/types/types_base.py' 2025-08-26T19:36:18.5724540Z adding 'torchgen/dest/__init__.py' 2025-08-26T19:36:18.5730500Z adding 'torchgen/dest/lazy_ir.py' 2025-08-26T19:36:18.5731450Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-08-26T19:36:18.5732680Z adding 'torchgen/dest/native_functions.py' 2025-08-26T19:36:18.5741050Z adding 'torchgen/dest/register_dispatch_key.py' 2025-08-26T19:36:18.5744940Z adding 'torchgen/dest/ufunc.py' 2025-08-26T19:36:18.5745810Z adding 'torchgen/operator_versions/__init__.py' 2025-08-26T19:36:18.5748820Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-08-26T19:36:18.5749510Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-08-26T19:36:18.5823310Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-08-26T19:36:18.5827900Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-08-26T19:36:18.5830180Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-08-26T19:36:18.5831300Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-08-26T19:36:18.5832460Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-08-26T19:36:18.5833720Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-08-26T19:36:18.5834800Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-08-26T19:36:18.5835740Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-08-26T19:36:18.5836680Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-08-26T19:36:18.5837580Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-08-26T19:36:18.5838630Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-08-26T19:36:18.5840070Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-08-26T19:36:18.5841660Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-08-26T19:36:18.5842540Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-08-26T19:36:18.5843410Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-08-26T19:36:18.5844410Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-08-26T19:36:18.5845330Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-08-26T19:36:18.5846350Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-08-26T19:36:18.5847250Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-08-26T19:36:18.5848110Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-08-26T19:36:18.5848950Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-08-26T19:36:18.5849800Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-08-26T19:36:18.5851140Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-08-26T19:36:18.5852430Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-08-26T19:36:18.5853340Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-08-26T19:36:18.5854270Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-08-26T19:36:18.5855380Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-08-26T19:36:18.5856280Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-08-26T19:36:18.5857330Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-08-26T19:36:18.5858710Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-08-26T19:36:18.5859650Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-08-26T19:36:18.5860490Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-08-26T19:36:18.5867470Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-08-26T19:36:18.5868530Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-08-26T19:36:18.5869460Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-08-26T19:36:18.5870360Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-08-26T19:36:18.5871270Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-08-26T19:36:18.5872180Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-08-26T19:36:18.5873160Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-08-26T19:36:18.5874110Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-08-26T19:36:18.5874850Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-08-26T19:36:18.5876060Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-08-26T19:36:18.5876900Z adding 'torchgen/packaged/autograd/README.md' 2025-08-26T19:36:18.5877590Z adding 'torchgen/packaged/autograd/__init__.py' 2025-08-26T19:36:18.5878440Z adding 'torchgen/packaged/autograd/build.bzl' 2025-08-26T19:36:18.5879320Z adding 'torchgen/packaged/autograd/context.py' 2025-08-26T19:36:18.5880630Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-08-26T19:36:18.5910200Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-08-26T19:36:18.5912770Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-08-26T19:36:18.5914030Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-08-26T19:36:18.5920710Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-08-26T19:36:18.5925700Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-08-26T19:36:18.5935340Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-08-26T19:36:18.5939760Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-08-26T19:36:18.5941170Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-08-26T19:36:18.5957750Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-08-26T19:36:18.5960990Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-08-26T19:36:18.5969370Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-08-26T19:36:18.5970980Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-08-26T19:36:18.5971980Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-08-26T19:36:18.5973090Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-08-26T19:36:18.5974060Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-08-26T19:36:18.5975190Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-08-26T19:36:18.5976210Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-08-26T19:36:18.5977010Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-08-26T19:36:18.5977930Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-08-26T19:36:18.5978750Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-08-26T19:36:18.5979630Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-08-26T19:36:18.5980730Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-08-26T19:36:18.5981700Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-08-26T19:36:18.5982580Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-08-26T19:36:18.5983610Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-08-26T19:36:18.5984630Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-08-26T19:36:18.5985880Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-08-26T19:36:18.5986890Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-08-26T19:36:18.5987710Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-08-26T19:36:18.5988740Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-08-26T19:36:18.5989780Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-08-26T19:36:18.5991020Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-08-26T19:36:18.5998330Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-08-26T19:36:18.5999730Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-08-26T19:36:18.6000760Z adding 'torchgen/selective_build/__init__.py' 2025-08-26T19:36:18.6002910Z adding 'torchgen/selective_build/operator.py' 2025-08-26T19:36:18.6005670Z adding 'torchgen/selective_build/selector.py' 2025-08-26T19:36:18.6006420Z adding 'torchgen/static_runtime/__init__.py' 2025-08-26T19:36:18.6008760Z adding 'torchgen/static_runtime/config.py' 2025-08-26T19:36:18.6010580Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-08-26T19:36:18.6015420Z adding 'torchgen/static_runtime/generator.py' 2025-08-26T19:36:18.6088930Z adding 'torch-2.9.0a0+git262640f.dist-info/LICENSE' 2025-08-26T19:36:18.6097690Z adding 'torch-2.9.0a0+git262640f.dist-info/METADATA' 2025-08-26T19:36:18.6103000Z adding 'torch-2.9.0a0+git262640f.dist-info/NOTICE' 2025-08-26T19:36:18.6103460Z adding 'torch-2.9.0a0+git262640f.dist-info/WHEEL' 2025-08-26T19:36:18.6104080Z adding 'torch-2.9.0a0+git262640f.dist-info/entry_points.txt' 2025-08-26T19:36:18.6104620Z adding 'torch-2.9.0a0+git262640f.dist-info/top_level.txt' 2025-08-26T19:36:18.6488460Z adding 'torch-2.9.0a0+git262640f.dist-info/RECORD' 2025-08-26T19:36:18.6850040Z removing build/bdist.macosx-14.0-arm64/wheel 2025-08-26T19:36:19.1878050Z + which sccache 2025-08-26T19:36:19.1900160Z + print_sccache_stats 2025-08-26T19:36:19.1900340Z + echo 'PyTorch Build Statistics' 2025-08-26T19:36:19.1900530Z + sccache --show-stats 2025-08-26T19:36:19.1900680Z PyTorch Build Statistics 2025-08-26T19:36:19.1932920Z Compile requests 5283 2025-08-26T19:36:19.1933150Z Compile requests executed 4908 2025-08-26T19:36:19.1933350Z Cache hits 4885 2025-08-26T19:36:19.1933530Z Cache hits (C/C++) 4885 2025-08-26T19:36:19.1933710Z Cache misses 1 2025-08-26T19:36:19.1933890Z Cache misses (C/C++) 1 2025-08-26T19:36:19.1934070Z Cache timeouts 0 2025-08-26T19:36:19.1934490Z Cache read errors 0 2025-08-26T19:36:19.1934700Z Forced recaches 0 2025-08-26T19:36:19.1934880Z Cache write errors 0 2025-08-26T19:36:19.1935070Z Compilation failures 2 2025-08-26T19:36:19.1935250Z Cache errors 20 2025-08-26T19:36:19.1935430Z Cache errors (C/C++) 20 2025-08-26T19:36:19.1935620Z Non-cacheable compilations 0 2025-08-26T19:36:19.1935810Z Non-cacheable calls 283 2025-08-26T19:36:19.1936000Z Non-compilation calls 92 2025-08-26T19:36:19.1936210Z Unsupported compiler calls 0 2025-08-26T19:36:19.1936400Z Average cache write 0.032 s 2025-08-26T19:36:19.1936610Z Average compiler 0.710 s 2025-08-26T19:36:19.1936810Z Average cache read hit 0.000 s 2025-08-26T19:36:19.1937000Z Failed distributed compilations 0 2025-08-26T19:36:19.1937140Z 2025-08-26T19:36:19.1942390Z Non-cacheable reasons: 2025-08-26T19:36:19.1942590Z unknown source language 271 2025-08-26T19:36:19.1942790Z @ 6 2025-08-26T19:36:19.1942970Z multiple input files 6 2025-08-26T19:36:19.1943100Z 2025-08-26T19:36:19.1943260Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-08-26T19:36:19.1943550Z Version (client) 0.4.1 2025-08-26T19:36:19.1943730Z + [[ -n 48944189734 ]] 2025-08-26T19:36:19.1943900Z + sccache --show-stats --stats-format json 2025-08-26T19:36:19.1944090Z + jq .stats 2025-08-26T19:36:19.2489310Z + python tools/stats/export_test_times.py 2025-08-26T19:36:19.4717870Z Exporting test times from test-infra 2025-08-26T19:36:19.4718520Z 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-08-26T19:36:19.4719550Z 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-08-26T19:36:19.4779000Z + assert_git_not_dirty 2025-08-26T19:36:19.4779180Z + [[ macos-py3-arm64 != *rocm* ]] 2025-08-26T19:36:19.4779360Z + [[ macos-py3-arm64 != *xla* ]] 2025-08-26T19:36:19.4784940Z ++ git status --porcelain 2025-08-26T19:36:19.4786180Z ++ grep -v '?? third_party' 2025-08-26T19:36:20.1531590Z ++ true 2025-08-26T19:36:20.1532640Z + git_status= 2025-08-26T19:36:20.1532850Z + [[ -n '' ]] 2025-08-26T19:36:20.1533410Z + rm -rfv /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK 2025-08-26T19:36:20.1557070Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang 2025-08-26T19:36:20.1557470Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK/clang++ 2025-08-26T19:36:20.1557830Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.1g96IUawMK 2025-08-26T19:36:20.1589100Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-08-26T19:36:20.1589650Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-08-26T19:36:20.1856870Z shell: /bin/bash -e {0} 2025-08-26T19:36:20.1857020Z env: 2025-08-26T19:36:20.1857140Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:36:20.1857320Z SCCACHE_USE_GHA: false 2025-08-26T19:36:20.1857530Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:36:20.1857800Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:36:20.1858000Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:36:20.1858150Z ##[endgroup] 2025-08-26T19:36:20.2136940Z adding: dist/ (stored 0%) 2025-08-26T19:36:21.6346180Z adding: dist/torch-2.9.0a0+git262640f-cp312-cp312-macosx_11_0_arm64.whl (deflated 3%) 2025-08-26T19:36:21.6470240Z adding: build/.ninja_log (deflated 89%) 2025-08-26T19:36:21.6943250Z adding: build/compile_commands.json (deflated 98%) 2025-08-26T19:36:21.6943520Z adding: .additional_ci_files/ (stored 0%) 2025-08-26T19:36:21.7045210Z adding: .additional_ci_files/test-times.json (deflated 66%) 2025-08-26T19:36:21.7446590Z adding: .additional_ci_files/test-class-times.json (deflated 64%) 2025-08-26T19:36:21.7603820Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-08-26T19:36:21.7604110Z with: 2025-08-26T19:36:21.7604250Z name: macos-py3-arm64 2025-08-26T19:36:21.7604410Z retention-days: 14 2025-08-26T19:36:21.7604570Z if-no-files-found: error 2025-08-26T19:36:21.7604760Z path: artifacts.zip 2025-08-26T19:36:21.7604920Z compression-level: 6 2025-08-26T19:36:21.7605060Z overwrite: false 2025-08-26T19:36:21.7605230Z include-hidden-files: false 2025-08-26T19:36:21.7605390Z env: 2025-08-26T19:36:21.7605530Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:36:21.7605710Z SCCACHE_USE_GHA: false 2025-08-26T19:36:21.7605940Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:36:21.7606220Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:36:21.7606440Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:36:21.7606620Z ##[endgroup] 2025-08-26T19:36:21.8968310Z With the provided path, there will be 1 file uploaded 2025-08-26T19:36:21.8970770Z Artifact name is valid! 2025-08-26T19:36:21.8971030Z Root directory input is valid! 2025-08-26T19:36:21.9738960Z Beginning upload of artifact content to blob storage 2025-08-26T19:36:22.3182290Z Uploaded bytes 8388608 2025-08-26T19:36:22.4434990Z Uploaded bytes 16777216 2025-08-26T19:36:22.5841500Z Uploaded bytes 25165824 2025-08-26T19:36:22.7466730Z Uploaded bytes 33554432 2025-08-26T19:36:22.9149040Z Uploaded bytes 41943040 2025-08-26T19:36:23.0813740Z Uploaded bytes 50331648 2025-08-26T19:36:23.2403010Z Uploaded bytes 58720256 2025-08-26T19:36:23.4807020Z Uploaded bytes 67108864 2025-08-26T19:36:23.5853180Z Uploaded bytes 69713866 2025-08-26T19:36:23.6146720Z Finished uploading artifact content to blob storage! 2025-08-26T19:36:23.6153200Z SHA256 digest of uploaded artifact zip is be637182a73eca89923bb4fb9fca6e4f7398ab5128ebfd72f7f69a5e49d15b46 2025-08-26T19:36:23.6157450Z Finalizing artifact upload 2025-08-26T19:36:23.7259360Z Artifact macos-py3-arm64.zip successfully finalized. Artifact ID 3857099557 2025-08-26T19:36:23.7262900Z Artifact macos-py3-arm64 has been successfully uploaded! Final size is 69713866 bytes. Artifact ID is 3857099557 2025-08-26T19:36:23.7306090Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/17248463647/artifacts/3857099557 2025-08-26T19:36:23.7538200Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-08-26T19:36:23.7539120Z with: 2025-08-26T19:36:23.7539690Z name: sccache-stats-macos-py3-arm64-runattempt1-48944189734 2025-08-26T19:36:23.7540460Z retention-days: 14 2025-08-26T19:36:23.7540930Z if-no-files-found: warn 2025-08-26T19:36:23.7541550Z path: sccache-stats-*.json 2025-08-26T19:36:23.7542120Z compression-level: 6 2025-08-26T19:36:23.7542620Z overwrite: false 2025-08-26T19:36:23.7543240Z include-hidden-files: false 2025-08-26T19:36:23.7543820Z env: 2025-08-26T19:36:23.7544270Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:36:23.7544840Z SCCACHE_USE_GHA: false 2025-08-26T19:36:23.7545580Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:36:23.7546510Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:36:23.7547230Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:36:23.7547750Z ##[endgroup] 2025-08-26T19:36:23.9079530Z With the provided path, there will be 1 file uploaded 2025-08-26T19:36:23.9081510Z Artifact name is valid! 2025-08-26T19:36:23.9082000Z Root directory input is valid! 2025-08-26T19:36:23.9848240Z Beginning upload of artifact content to blob storage 2025-08-26T19:36:24.0590080Z Uploaded bytes 525 2025-08-26T19:36:24.0815120Z Finished uploading artifact content to blob storage! 2025-08-26T19:36:24.0817160Z SHA256 digest of uploaded artifact zip is 7a28e658354cf7a97139b4f143a88dc30b09d1313cda14a6a570edb1e78ae34a 2025-08-26T19:36:24.0818270Z Finalizing artifact upload 2025-08-26T19:36:24.1910760Z Artifact sccache-stats-macos-py3-arm64-runattempt1-48944189734.zip successfully finalized. Artifact ID 3857099609 2025-08-26T19:36:24.1912720Z Artifact sccache-stats-macos-py3-arm64-runattempt1-48944189734 has been successfully uploaded! Final size is 525 bytes. Artifact ID is 3857099609 2025-08-26T19:36:24.1935540Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/17248463647/artifacts/3857099609 2025-08-26T19:36:24.2111980Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-08-26T19:36:24.2112670Z with: 2025-08-26T19:36:24.2113030Z minimum-available-space-in-gb: 6 2025-08-26T19:36:24.2113500Z env: 2025-08-26T19:36:24.2113880Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:36:24.2114360Z SCCACHE_USE_GHA: false 2025-08-26T19:36:24.2114970Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:36:24.2115740Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:36:24.2116320Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:36:24.2116810Z ##[endgroup] 2025-08-26T19:36:24.2142100Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-08-26T19:36:24.2143080Z echo "Print the available disk space for manual inspection" 2025-08-26T19:36:24.2143840Z df -h 2025-08-26T19:36:24.2144190Z  2025-08-26T19:36:24.2144570Z function check_disk_space() { 2025-08-26T19:36:24.2145090Z  set +e 2025-08-26T19:36:24.2145470Z  2025-08-26T19:36:24.2145900Z  # Set the minimum requirement space to 6GB 2025-08-26T19:36:24.2146740Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-08-26T19:36:24.2147450Z  2025-08-26T19:36:24.2147900Z  # Use KB to avoid floating point warning like 3.1GB 2025-08-26T19:36:24.2148630Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-08-26T19:36:24.2149370Z  do 2025-08-26T19:36:24.2149780Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-08-26T19:36:24.2166910Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-08-26T19:36:24.2167370Z  2025-08-26T19:36:24.2167680Z  if [ "${MOUNT}" = "/" ]; then 2025-08-26T19:36:24.2168230Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-08-26T19:36:24.2169380Z  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-08-26T19:36:24.2170340Z  else 2025-08-26T19:36:24.2170900Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-08-26T19:36:24.2171510Z  fi 2025-08-26T19:36:24.2171770Z  fi 2025-08-26T19:36:24.2172020Z  done 2025-08-26T19:36:24.2172310Z  2025-08-26T19:36:24.2172710Z  set -e 2025-08-26T19:36:24.2172980Z } 2025-08-26T19:36:24.2173240Z  2025-08-26T19:36:24.2173530Z RESULT=$(check_disk_space) 2025-08-26T19:36:24.2173940Z echo "${RESULT}" 2025-08-26T19:36:24.2174270Z  2025-08-26T19:36:24.2174690Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-08-26T19:36:24.2175770Z  # 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-08-26T19:36:24.2176790Z  # https://github.com/pytorch/pytorch/issues/85440 2025-08-26T19:36:24.2177540Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-08-26T19:36:24.2178600Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-08-26T19:36:24.2179570Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-08-26T19:36:24.2180100Z  2025-08-26T19:36:24.2180460Z  # Clean up crash reports on the runner 2025-08-26T19:36:24.2181100Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-08-26T19:36:24.2181730Z  2025-08-26T19:36:24.2182110Z  # Also try to clean up torch.hub caching directory 2025-08-26T19:36:24.2182680Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-08-26T19:36:24.2183100Z  2025-08-26T19:36:24.2183880Z  # Purge conda 2025-08-26T19:36:24.2184270Z  conda clean -p -t -y || true 2025-08-26T19:36:24.2184700Z  # and pip cache 2025-08-26T19:36:24.2185080Z  pip cache purge || true 2025-08-26T19:36:24.2185450Z  2025-08-26T19:36:24.2185890Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-08-26T19:36:24.2186450Z  # Re-run the check 2025-08-26T19:36:24.2186850Z  RESULT=$(check_disk_space) 2025-08-26T19:36:24.2187230Z  echo "${RESULT}" 2025-08-26T19:36:24.2187580Z fi 2025-08-26T19:36:24.2187860Z  2025-08-26T19:36:24.2188150Z if [[ "${RESULT}" == *Failure* ]]; then 2025-08-26T19:36:24.2188570Z  df -h 2025-08-26T19:36:24.2188830Z  2025-08-26T19:36:24.2189710Z  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-08-26T19:36:24.2190720Z  exit 1 2025-08-26T19:36:24.2191020Z fi 2025-08-26T19:36:24.2222930Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:36:24.2223400Z env: 2025-08-26T19:36:24.2223710Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-08-26T19:36:24.2224140Z SCCACHE_USE_GHA: false 2025-08-26T19:36:24.2224670Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:36:24.2225300Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-08-26T19:36:24.2225890Z SCCACHE_S3_KEY_PREFIX: trunk 2025-08-26T19:36:24.2226290Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-08-26T19:36:24.2226670Z ##[endgroup] 2025-08-26T19:36:24.2460920Z Print the available disk space for manual inspection 2025-08-26T19:36:24.2491620Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-08-26T19:36:24.2492110Z /dev/disk5s2s1 256Gi 9.5Gi 187Gi 5% 404k 2.0G 0% / 2025-08-26T19:36:24.2492560Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-08-26T19:36:24.2493000Z /dev/disk5s5 256Gi 1.0Gi 187Gi 1% 1 2.0G 0% /System/Volumes/VM 2025-08-26T19:36:24.2493480Z /dev/disk5s3 256Gi 5.7Gi 187Gi 3% 1.0k 2.0G 0% /System/Volumes/Preboot 2025-08-26T19:36:24.2493980Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-08-26T19:36:24.2494480Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-08-26T19:36:24.2495230Z /dev/disk1s3 500Mi 904Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-08-26T19:36:24.2495710Z /dev/disk5s1 256Gi 52Gi 187Gi 22% 1.3M 2.0G 0% /System/Volumes/Data 2025-08-26T19:36:24.2496190Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-08-26T19:36:24.2496700Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-6AYRoo 2025-08-26T19:36:24.2883480Z Success: There is 195614012KB free space left in / for macOS, continue 2025-08-26T19:36:24.2914000Z Post job cleanup. 2025-08-26T19:36:24.3253000Z Removing virtual environment at /Users/ec2-user/runner/_work/_temp/venv-3.12-1756236735 2025-08-26T19:36:27.0971130Z Post job cleanup. 2025-08-26T19:36:27.1006690Z Post job cleanup. 2025-08-26T19:36:27.1697880Z [command]/usr/bin/git version 2025-08-26T19:36:27.1763420Z git version 2.39.3 (Apple Git-146) 2025-08-26T19:36:27.1781930Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/92d527b3-0093-4e13-ac46-f0a2da260224/.gitconfig' 2025-08-26T19:36:27.1787370Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/92d527b3-0093-4e13-ac46-f0a2da260224' before making global git config changes 2025-08-26T19:36:27.1788010Z Adding repository directory to the temporary git global config as a safe directory 2025-08-26T19:36:27.1790840Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-08-26T19:36:27.1858980Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-08-26T19:36:27.1917320Z [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-08-26T19:36:27.2449490Z Entering 'android/libs/fbjni' 2025-08-26T19:36:27.2566490Z Entering 'third_party/FP16' 2025-08-26T19:36:27.2664500Z Entering 'third_party/FXdiv' 2025-08-26T19:36:27.2763670Z Entering 'third_party/NNPACK' 2025-08-26T19:36:27.2859960Z Entering 'third_party/NVTX' 2025-08-26T19:36:27.2957130Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:36:27.3055330Z Entering 'third_party/XNNPACK' 2025-08-26T19:36:27.3160590Z Entering 'third_party/aiter' 2025-08-26T19:36:27.3262220Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:36:27.3367730Z Entering 'third_party/benchmark' 2025-08-26T19:36:27.3474570Z Entering 'third_party/composable_kernel' 2025-08-26T19:36:27.3581560Z Entering 'third_party/cpp-httplib' 2025-08-26T19:36:27.3683110Z Entering 'third_party/cpuinfo' 2025-08-26T19:36:27.3781250Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:36:27.3878300Z Entering 'third_party/cutlass' 2025-08-26T19:36:27.3979150Z Entering 'third_party/fbgemm' 2025-08-26T19:36:27.4077190Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:36:27.4174370Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:36:27.4272680Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:36:27.4369920Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:36:27.4470250Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:36:27.4566710Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:36:27.4663250Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:36:27.4761970Z Entering 'third_party/flash-attention' 2025-08-26T19:36:27.4859290Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:36:27.4957360Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:36:27.5058900Z Entering 'third_party/flatbuffers' 2025-08-26T19:36:27.5157100Z Entering 'third_party/fmt' 2025-08-26T19:36:27.5253830Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:36:27.5349160Z Entering 'third_party/gloo' 2025-08-26T19:36:27.5444910Z Entering 'third_party/googletest' 2025-08-26T19:36:27.5541010Z Entering 'third_party/ideep' 2025-08-26T19:36:27.5635820Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:36:27.5736680Z Entering 'third_party/ittapi' 2025-08-26T19:36:27.5834270Z Entering 'third_party/kineto' 2025-08-26T19:36:27.5929740Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:36:27.6025170Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:36:27.6122510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:36:27.6219770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:36:27.6315850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:36:27.6411630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:36:27.6511250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:36:27.6608050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:36:27.6705200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:36:27.6801690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:36:27.6899840Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:36:27.6996930Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:36:27.7099090Z Entering 'third_party/kleidiai' 2025-08-26T19:36:27.7200720Z Entering 'third_party/mimalloc' 2025-08-26T19:36:27.7300770Z Entering 'third_party/nlohmann' 2025-08-26T19:36:27.7398890Z Entering 'third_party/onnx' 2025-08-26T19:36:27.7500440Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:36:27.7600290Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:36:27.7695940Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:36:27.7793630Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:36:27.7891950Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:36:27.7991940Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:36:27.8091950Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:36:27.8190400Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:36:27.8288790Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:36:27.8386190Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:36:27.8485770Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:36:27.8587130Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:36:27.8694500Z Entering 'third_party/pocketfft' 2025-08-26T19:36:27.8795400Z Entering 'third_party/protobuf' 2025-08-26T19:36:27.8894590Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:36:27.8993150Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:36:27.9092660Z Entering 'third_party/psimd' 2025-08-26T19:36:27.9192040Z Entering 'third_party/pthreadpool' 2025-08-26T19:36:27.9291060Z Entering 'third_party/pybind11' 2025-08-26T19:36:27.9390320Z Entering 'third_party/python-peachpy' 2025-08-26T19:36:27.9488230Z Entering 'third_party/sleef' 2025-08-26T19:36:27.9586540Z Entering 'third_party/tensorpipe' 2025-08-26T19:36:27.9683360Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:36:27.9781670Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:36:27.9880230Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:36:27.9978590Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:36:28.0075390Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:36:28.0188850Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-26T19:36:28.0243870Z http.https://github.com/.extraheader 2025-08-26T19:36:28.0250670Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-08-26T19:36:28.0331320Z [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-08-26T19:36:28.0817020Z Entering 'android/libs/fbjni' 2025-08-26T19:36:28.0885120Z http.https://github.com/.extraheader 2025-08-26T19:36:28.0968300Z Entering 'third_party/FP16' 2025-08-26T19:36:28.1034550Z http.https://github.com/.extraheader 2025-08-26T19:36:28.1100020Z Entering 'third_party/FXdiv' 2025-08-26T19:36:28.1166330Z http.https://github.com/.extraheader 2025-08-26T19:36:28.1238380Z Entering 'third_party/NNPACK' 2025-08-26T19:36:28.1304780Z http.https://github.com/.extraheader 2025-08-26T19:36:28.1399050Z Entering 'third_party/NVTX' 2025-08-26T19:36:28.1464680Z http.https://github.com/.extraheader 2025-08-26T19:36:28.1530500Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-26T19:36:28.1596910Z http.https://github.com/.extraheader 2025-08-26T19:36:28.1661470Z Entering 'third_party/XNNPACK' 2025-08-26T19:36:28.1728000Z http.https://github.com/.extraheader 2025-08-26T19:36:28.1797650Z Entering 'third_party/aiter' 2025-08-26T19:36:28.1865210Z http.https://github.com/.extraheader 2025-08-26T19:36:28.1929600Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-26T19:36:28.1995540Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2065760Z Entering 'third_party/benchmark' 2025-08-26T19:36:28.2133300Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2210850Z Entering 'third_party/composable_kernel' 2025-08-26T19:36:28.2276680Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2344940Z Entering 'third_party/cpp-httplib' 2025-08-26T19:36:28.2411500Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2476400Z Entering 'third_party/cpuinfo' 2025-08-26T19:36:28.2542120Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2607030Z Entering 'third_party/cudnn_frontend' 2025-08-26T19:36:28.2670830Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2734390Z Entering 'third_party/cutlass' 2025-08-26T19:36:28.2797740Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2863350Z Entering 'third_party/fbgemm' 2025-08-26T19:36:28.2928020Z http.https://github.com/.extraheader 2025-08-26T19:36:28.2991170Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-26T19:36:28.3054730Z http.https://github.com/.extraheader 2025-08-26T19:36:28.3130390Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-26T19:36:28.3193930Z http.https://github.com/.extraheader 2025-08-26T19:36:28.3259900Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-26T19:36:28.3324940Z http.https://github.com/.extraheader 2025-08-26T19:36:28.3395780Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-26T19:36:28.3459720Z http.https://github.com/.extraheader 2025-08-26T19:36:28.3532960Z Entering 'third_party/fbgemm/external/googletest' 2025-08-26T19:36:28.3597580Z http.https://github.com/.extraheader 2025-08-26T19:36:28.3667430Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-26T19:36:28.3730990Z http.https://github.com/.extraheader 2025-08-26T19:36:28.3800530Z Entering 'third_party/fbgemm/external/json' 2025-08-26T19:36:28.3864200Z http.https://github.com/.extraheader 2025-08-26T19:36:28.3936270Z Entering 'third_party/flash-attention' 2025-08-26T19:36:28.4001300Z http.https://github.com/.extraheader 2025-08-26T19:36:28.4072590Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-26T19:36:28.4129880Z http.https://github.com/.extraheader 2025-08-26T19:36:28.4196080Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-26T19:36:28.4259550Z http.https://github.com/.extraheader 2025-08-26T19:36:28.4328350Z Entering 'third_party/flatbuffers' 2025-08-26T19:36:28.4394070Z http.https://github.com/.extraheader 2025-08-26T19:36:28.4464820Z Entering 'third_party/fmt' 2025-08-26T19:36:28.4528760Z http.https://github.com/.extraheader 2025-08-26T19:36:28.4599510Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-26T19:36:28.4663800Z http.https://github.com/.extraheader 2025-08-26T19:36:28.4740660Z Entering 'third_party/gloo' 2025-08-26T19:36:28.4805210Z http.https://github.com/.extraheader 2025-08-26T19:36:28.4876020Z Entering 'third_party/googletest' 2025-08-26T19:36:28.4940380Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5022990Z Entering 'third_party/ideep' 2025-08-26T19:36:28.5087500Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5149860Z Entering 'third_party/ideep/mkl-dnn' 2025-08-26T19:36:28.5214210Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5281500Z Entering 'third_party/ittapi' 2025-08-26T19:36:28.5347160Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5410970Z Entering 'third_party/kineto' 2025-08-26T19:36:28.5475020Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5538080Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-26T19:36:28.5601820Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5664650Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-26T19:36:28.5728030Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5792820Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-26T19:36:28.5856530Z http.https://github.com/.extraheader 2025-08-26T19:36:28.5920760Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-26T19:36:28.5984920Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6049880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-26T19:36:28.6113990Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6177950Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-26T19:36:28.6243290Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6310240Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-26T19:36:28.6374750Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6439420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-26T19:36:28.6503630Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6574630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-26T19:36:28.6639200Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6703510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-26T19:36:28.6766950Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6832700Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-26T19:36:28.6896290Z http.https://github.com/.extraheader 2025-08-26T19:36:28.6960630Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-26T19:36:28.7024610Z http.https://github.com/.extraheader 2025-08-26T19:36:28.7090170Z Entering 'third_party/kleidiai' 2025-08-26T19:36:28.7155010Z http.https://github.com/.extraheader 2025-08-26T19:36:28.7219780Z Entering 'third_party/mimalloc' 2025-08-26T19:36:28.7284170Z http.https://github.com/.extraheader 2025-08-26T19:36:28.7349070Z Entering 'third_party/nlohmann' 2025-08-26T19:36:28.7413210Z http.https://github.com/.extraheader 2025-08-26T19:36:28.7478050Z Entering 'third_party/onnx' 2025-08-26T19:36:28.7543050Z http.https://github.com/.extraheader 2025-08-26T19:36:28.7617300Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-26T19:36:28.7682730Z http.https://github.com/.extraheader 2025-08-26T19:36:28.7748130Z Entering 'third_party/opentelemetry-cpp' 2025-08-26T19:36:28.7812820Z http.https://github.com/.extraheader 2025-08-26T19:36:28.7876340Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-26T19:36:28.7939800Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8004380Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-26T19:36:28.8069120Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8133360Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-26T19:36:28.8197820Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8262100Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-26T19:36:28.8325750Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8390730Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-26T19:36:28.8455180Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8519790Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-26T19:36:28.8584200Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8647740Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-26T19:36:28.8712120Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8781180Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-26T19:36:28.8845060Z http.https://github.com/.extraheader 2025-08-26T19:36:28.8909780Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-26T19:36:28.8974150Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9040310Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-26T19:36:28.9104920Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9178090Z Entering 'third_party/pocketfft' 2025-08-26T19:36:28.9244880Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9308600Z Entering 'third_party/protobuf' 2025-08-26T19:36:28.9373530Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9436980Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-26T19:36:28.9501010Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9564040Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-26T19:36:28.9627760Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9695460Z Entering 'third_party/psimd' 2025-08-26T19:36:28.9762560Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9828040Z Entering 'third_party/pthreadpool' 2025-08-26T19:36:28.9895080Z http.https://github.com/.extraheader 2025-08-26T19:36:28.9960400Z Entering 'third_party/pybind11' 2025-08-26T19:36:29.0026740Z http.https://github.com/.extraheader 2025-08-26T19:36:29.0093090Z Entering 'third_party/python-peachpy' 2025-08-26T19:36:29.0159100Z http.https://github.com/.extraheader 2025-08-26T19:36:29.0231290Z Entering 'third_party/sleef' 2025-08-26T19:36:29.0297720Z http.https://github.com/.extraheader 2025-08-26T19:36:29.0370010Z Entering 'third_party/tensorpipe' 2025-08-26T19:36:29.0436220Z http.https://github.com/.extraheader 2025-08-26T19:36:29.0506990Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-26T19:36:29.0572440Z http.https://github.com/.extraheader 2025-08-26T19:36:29.0637610Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-26T19:36:29.0704220Z http.https://github.com/.extraheader 2025-08-26T19:36:29.0769260Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-26T19:36:29.0834600Z http.https://github.com/.extraheader 2025-08-26T19:36:29.0907420Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-26T19:36:29.0973700Z http.https://github.com/.extraheader 2025-08-26T19:36:29.1045780Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-26T19:36:29.1111170Z http.https://github.com/.extraheader 2025-08-26T19:36:29.1235340Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-26T19:36:29.1299830Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2025-08-26T19:36:29.1311780Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-08-26T19:36:29.1312000Z ##[endgroup] 2025-08-26T19:36:29.1546160Z + df -h 2025-08-26T19:36:29.1564790Z + ls -t /var/log/post_job 2025-08-26T19:36:29.1565190Z + awk 'NR>100' 2025-08-26T19:36:29.1567000Z + xargs rm -fv 2025-08-26T19:36:29.1576310Z + Checking if runner needs to be terminated...ok 2025-08-26T19:36:29.1576560Z + Outputting disk space 2025-08-26T19:36:29.1576850Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-08-26T19:36:29.1577210Z /dev/disk5s2s1 256Gi 9.5Gi 187Gi 5% 404k 2.0G 0% / 2025-08-26T19:36:29.1577670Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-08-26T19:36:29.1578080Z /dev/disk5s5 256Gi 1.0Gi 187Gi 1% 1 2.0G 0% /System/Volumes/VM 2025-08-26T19:36:29.1578500Z /dev/disk5s3 256Gi 5.7Gi 187Gi 3% 1.0k 2.0G 0% /System/Volumes/Preboot 2025-08-26T19:36:29.1578860Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-08-26T19:36:29.1579220Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-08-26T19:36:29.1579600Z /dev/disk1s3 500Mi 904Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-08-26T19:36:29.1579950Z /dev/disk5s1 256Gi 51Gi 187Gi 22% 1.3M 2.0G 0% /System/Volumes/Data 2025-08-26T19:36:29.1580310Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-08-26T19:36:29.1580690Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-6AYRoo 2025-08-26T19:36:29.1581010Z + Cleaning up old logs (Keep the latest 100) 2025-08-26T19:36:29.2904680Z + Restoring SSH key to be the skeleton key 2025-08-26T19:36:29.2996320Z Evaluate and set job outputs 2025-08-26T19:36:29.2999450Z Set output 'build-outcome' 2025-08-26T19:36:29.3001100Z Set output 'test-matrix' 2025-08-26T19:36:29.3001560Z Cleaning up orphan processes 2025-08-26T19:36:29.5655080Z Terminate orphan process: pid (13296) (sccache)